Skip to content

Commit ec52893

Browse files
committed
update
1 parent 4be10cf commit ec52893

File tree

2 files changed

+26
-0
lines changed

2 files changed

+26
-0
lines changed

src/gen/model-decoders/index.ts

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff 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+
21412155
decoders.WSEvent = (input?: Record<string, any>) => {
21422156
const typeMappings: TypeMapping = {
21432157
created_at: { type: 'DatetimeType', isSingle: true },

src/gen/models/index.ts

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4379,21 +4379,33 @@ export interface LimitInfo {
43794379
}
43804380

43814381
export 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

43874391
export 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

43934401
export 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

43994411
export interface ListBlockListResponse {

0 commit comments

Comments
 (0)