File tree Expand file tree Collapse file tree 2 files changed +26
-0
lines changed
Expand file tree Collapse file tree 2 files changed +26
-0
lines changed Original file line number Diff line number Diff line change @@ -2138,6 +2138,20 @@ decoders.UserResponseCommonFields = (input?: Record<string, any>) => {
21382138 return decode ( typeMappings , input ) ;
21392139} ;
21402140
2141+ decoders . VideoReactionOverTimeResponse = ( input ?: Record < string , any > ) => {
2142+ const typeMappings : TypeMapping = {
2143+ by_minute : { type : 'CountByMinuteResponse' , isSingle : false } ,
2144+ } ;
2145+ return decode ( typeMappings , input ) ;
2146+ } ;
2147+
2148+ decoders . VideoReactionsResponse = ( input ?: Record < string , any > ) => {
2149+ const typeMappings : TypeMapping = {
2150+ count_over_time : { type : 'VideoReactionOverTimeResponse' , isSingle : true } ,
2151+ } ;
2152+ return decode ( typeMappings , input ) ;
2153+ } ;
2154+
21412155decoders . WSEvent = ( input ?: Record < string , any > ) => {
21422156 const typeMappings : TypeMapping = {
21432157 created_at : { type : 'DatetimeType' , isSingle : true } ,
Original file line number Diff line number Diff line change @@ -4379,21 +4379,33 @@ export interface LimitInfo {
43794379}
43804380
43814381export interface LimitsSettings {
4382+ max_participants_exclude_roles : string [ ] ;
4383+
43824384 max_duration_seconds ?: number ;
43834385
43844386 max_participants ?: number ;
4387+
4388+ max_participants_exclude_owner ?: boolean ;
43854389}
43864390
43874391export interface LimitsSettingsRequest {
43884392 max_duration_seconds ?: number ;
43894393
43904394 max_participants ?: number ;
4395+
4396+ max_participants_exclude_owner ?: boolean ;
4397+
4398+ max_participants_exclude_roles ?: string [ ] ;
43914399}
43924400
43934401export interface LimitsSettingsResponse {
4402+ max_participants_exclude_roles : string [ ] ;
4403+
43944404 max_duration_seconds ?: number ;
43954405
43964406 max_participants ?: number ;
4407+
4408+ max_participants_exclude_owner ?: boolean ;
43974409}
43984410
43994411export interface ListBlockListResponse {
You can’t perform that action at this time.
0 commit comments