Skip to content

Commit ec9464f

Browse files
authored
feat: add DeleteFeedTaskID in DeleteFeedResponse (#146)
1 parent 399dcdc commit ec9464f

File tree

1 file changed

+34
-22
lines changed

1 file changed

+34
-22
lines changed

src/gen/models/index.ts

Lines changed: 34 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -4507,6 +4507,8 @@ export interface DeleteFeedGroupResponse {
45074507
}
45084508

45094509
export interface DeleteFeedResponse {
4510+
delete_feed_task_id: string;
4511+
45104512
duration: string;
45114513
}
45124514

@@ -5455,30 +5457,24 @@ export interface FeedViewResponse {
54555457
ranking?: RankingConfig;
54565458
}
54575459

5458-
export interface FeedsEventPreferences {
5459-
comments?: string;
5460-
5461-
mentions?: string;
5462-
5463-
new_followers?: string;
5460+
export interface FeedsModerationTemplateConfig {
5461+
config_key: string;
54645462

5465-
reactions?: string;
5463+
data_types: Record<string, string>;
54665464
}
54675465

5468-
export interface FeedsEventPreferencesInput {
5469-
comments?: 'all' | 'none';
5466+
export interface FeedsPreferences {
5467+
comment?: string;
54705468

5471-
mentions?: 'all' | 'none';
5469+
comment_reaction?: string;
54725470

5473-
new_followers?: 'all' | 'none';
5471+
follow?: string;
54745472

5475-
reactions?: 'all' | 'none';
5476-
}
5473+
mention?: string;
54775474

5478-
export interface FeedsModerationTemplateConfig {
5479-
config_key: string;
5475+
reaction?: string;
54805476

5481-
data_types: Record<string, string>;
5477+
custom_activity_types?: Record<string, string>;
54825478
}
54835479

54845480
export interface FeedsReactionResponse {
@@ -8678,9 +8674,9 @@ export interface PushConfig {
86788674
}
86798675

86808676
export interface PushNotificationConfig {
8681-
enabled?: boolean;
8677+
enable_push?: boolean;
86828678

8683-
activity_types?: 'follow' | 'comment' | 'reaction' | 'comment_reaction';
8679+
push_types?: string[];
86848680
}
86858681

86868682
export interface PushNotificationFields {
@@ -8720,7 +8716,7 @@ export interface PushPreferenceInput {
87208716

87218717
user_id?: string;
87228718

8723-
feeds_events?: FeedsEventPreferencesInput;
8719+
feeds_preferences?: FeedsPreferences;
87248720
}
87258721

87268722
export interface PushPreferences {
@@ -8732,7 +8728,7 @@ export interface PushPreferences {
87328728

87338729
feeds_level?: string;
87348730

8735-
feeds_events?: FeedsEventPreferences;
8731+
feeds_preferences?: FeedsPreferences;
87368732
}
87378733

87388734
export interface PushProvider {
@@ -10549,6 +10545,8 @@ export interface STTEgressConfig {
1054910545
translation_languages?: string[];
1055010546

1055110547
external_storage?: ExternalStorage;
10548+
10549+
speech_segment_config?: SpeechSegmentConfig;
1055210550
}
1055310551

1055410552
export interface ScreensharingSettings {
@@ -10977,6 +10975,12 @@ export interface SortParamRequest {
1097710975
field?: string;
1097810976
}
1097910977

10978+
export interface SpeechSegmentConfig {
10979+
max_speech_caption_ms?: number;
10980+
10981+
silence_duration_ms?: number;
10982+
}
10983+
1098010984
export interface StartCampaignRequest {
1098110985
scheduled_for?: Date;
1098210986

@@ -11034,6 +11038,8 @@ export interface StartClosedCaptionsRequest {
1103411038
| 'et'
1103511039
| 'sl'
1103611040
| 'sk';
11041+
11042+
speech_segment_config?: SpeechSegmentConfig;
1103711043
}
1103811044

1103911045
export interface StartClosedCaptionsResponse {
@@ -11552,11 +11558,11 @@ export interface TranscriptionSettings {
1155211558
| 'sk';
1155311559

1155411560
mode: 'available' | 'disabled' | 'auto-on';
11561+
11562+
speech_segment_config?: SpeechSegmentConfig;
1155511563
}
1155611564

1155711565
export interface TranscriptionSettingsRequest {
11558-
mode: 'available' | 'disabled' | 'auto-on';
11559-
1156011566
closed_caption_mode?: 'available' | 'disabled' | 'auto-on';
1156111567

1156211568
language?:
@@ -11597,6 +11603,10 @@ export interface TranscriptionSettingsRequest {
1159711603
| 'et'
1159811604
| 'sl'
1159911605
| 'sk';
11606+
11607+
mode?: 'available' | 'disabled' | 'auto-on';
11608+
11609+
speech_segment_config?: SpeechSegmentConfig;
1160011610
}
1160111611

1160211612
export interface TranscriptionSettingsResponse {
@@ -11642,6 +11652,8 @@ export interface TranscriptionSettingsResponse {
1164211652
| 'sk';
1164311653

1164411654
mode: 'available' | 'disabled' | 'auto-on';
11655+
11656+
speech_segment_config?: SpeechSegmentConfig;
1164511657
}
1164611658

1164711659
export interface TranslateMessageRequest {

0 commit comments

Comments
 (0)