Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
56 changes: 34 additions & 22 deletions src/gen/models/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4508,6 +4508,8 @@ export interface DeleteFeedGroupResponse {

export interface DeleteFeedResponse {
duration: string;

task_id: string;
}

export interface DeleteFeedUserDataResponse {
Expand Down Expand Up @@ -5455,30 +5457,24 @@ export interface FeedViewResponse {
ranking?: RankingConfig;
}

export interface FeedsEventPreferences {
comments?: string;

mentions?: string;

new_followers?: string;
export interface FeedsModerationTemplateConfig {
config_key: string;

reactions?: string;
data_types: Record<string, string>;
}

export interface FeedsEventPreferencesInput {
comments?: 'all' | 'none';
export interface FeedsPreferences {
comment?: string;

mentions?: 'all' | 'none';
comment_reaction?: string;

new_followers?: 'all' | 'none';
follow?: string;

reactions?: 'all' | 'none';
}
mention?: string;

export interface FeedsModerationTemplateConfig {
config_key: string;
reaction?: string;

data_types: Record<string, string>;
custom_activity_types?: Record<string, string>;
}

export interface FeedsReactionResponse {
Expand Down Expand Up @@ -8678,9 +8674,9 @@ export interface PushConfig {
}

export interface PushNotificationConfig {
enabled?: boolean;
enable_push?: boolean;

activity_types?: 'follow' | 'comment' | 'reaction' | 'comment_reaction';
push_types?: string[];
}

export interface PushNotificationFields {
Expand Down Expand Up @@ -8720,7 +8716,7 @@ export interface PushPreferenceInput {

user_id?: string;

feeds_events?: FeedsEventPreferencesInput;
feeds_preferences?: FeedsPreferences;
}

export interface PushPreferences {
Expand All @@ -8732,7 +8728,7 @@ export interface PushPreferences {

feeds_level?: string;

feeds_events?: FeedsEventPreferences;
feeds_preferences?: FeedsPreferences;
}

export interface PushProvider {
Expand Down Expand Up @@ -10549,6 +10545,8 @@ export interface STTEgressConfig {
translation_languages?: string[];

external_storage?: ExternalStorage;

speech_segment_config?: SpeechSegmentConfig;
}

export interface ScreensharingSettings {
Expand Down Expand Up @@ -10977,6 +10975,12 @@ export interface SortParamRequest {
field?: string;
}

export interface SpeechSegmentConfig {
max_speech_caption_ms?: number;

silence_duration_ms?: number;
}

export interface StartCampaignRequest {
scheduled_for?: Date;

Expand Down Expand Up @@ -11034,6 +11038,8 @@ export interface StartClosedCaptionsRequest {
| 'et'
| 'sl'
| 'sk';

speech_segment_config?: SpeechSegmentConfig;
}

export interface StartClosedCaptionsResponse {
Expand Down Expand Up @@ -11552,11 +11558,11 @@ export interface TranscriptionSettings {
| 'sk';

mode: 'available' | 'disabled' | 'auto-on';

speech_segment_config?: SpeechSegmentConfig;
}

export interface TranscriptionSettingsRequest {
mode: 'available' | 'disabled' | 'auto-on';

closed_caption_mode?: 'available' | 'disabled' | 'auto-on';

language?:
Expand Down Expand Up @@ -11597,6 +11603,10 @@ export interface TranscriptionSettingsRequest {
| 'et'
| 'sl'
| 'sk';

mode?: 'available' | 'disabled' | 'auto-on';

speech_segment_config?: SpeechSegmentConfig;
}

export interface TranscriptionSettingsResponse {
Expand Down Expand Up @@ -11642,6 +11652,8 @@ export interface TranscriptionSettingsResponse {
| 'sk';

mode: 'available' | 'disabled' | 'auto-on';

speech_segment_config?: SpeechSegmentConfig;
}

export interface TranslateMessageRequest {
Expand Down