@stream-io/node-sdk 0.7.12 → 0.7.14
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.cjs.js +130 -25
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.es.mjs +130 -25
- package/dist/index.es.mjs.map +1 -1
- package/dist/src/StreamClient.d.ts +2 -4
- package/dist/src/gen/chat/ChannelApi.d.ts +5 -5
- package/dist/src/gen/chat/ChatApi.d.ts +7 -13
- package/dist/src/gen/feeds/FeedsApi.d.ts +9 -1
- package/dist/src/gen/models/index.d.ts +257 -295
- package/dist/src/gen/video/VideoApi.d.ts +28 -1
- package/dist/src/types.d.ts +0 -1
- package/dist/src/utils/rate-limit.d.ts +0 -1
- package/package.json +1 -1
- package/src/gen/chat/ChannelApi.ts +20 -16
- package/src/gen/chat/ChatApi.ts +19 -28
- package/src/gen/common/CommonApi.ts +4 -0
- package/src/gen/feeds/FeedsApi.ts +54 -0
- package/src/gen/model-decoders/decoders.ts +46 -4
- package/src/gen/models/index.ts +492 -562
- package/src/gen/moderation/ModerationApi.ts +1 -0
- package/src/gen/video/VideoApi.ts +111 -0
package/src/gen/models/index.ts
CHANGED
|
@@ -156,30 +156,6 @@ export interface Action {
|
|
|
156
156
|
value?: string;
|
|
157
157
|
}
|
|
158
158
|
|
|
159
|
-
export interface ActionLog {
|
|
160
|
-
created_at: Date;
|
|
161
|
-
|
|
162
|
-
id: string;
|
|
163
|
-
|
|
164
|
-
reason: string;
|
|
165
|
-
|
|
166
|
-
reporter_type: string;
|
|
167
|
-
|
|
168
|
-
review_queue_item_id: string;
|
|
169
|
-
|
|
170
|
-
target_user_id: string;
|
|
171
|
-
|
|
172
|
-
type: string;
|
|
173
|
-
|
|
174
|
-
custom: Record<string, any>;
|
|
175
|
-
|
|
176
|
-
review_queue_item?: ReviewQueueItem;
|
|
177
|
-
|
|
178
|
-
target_user?: User;
|
|
179
|
-
|
|
180
|
-
user?: User;
|
|
181
|
-
}
|
|
182
|
-
|
|
183
159
|
export interface ActionLogResponse {
|
|
184
160
|
created_at: Date;
|
|
185
161
|
|
|
@@ -193,6 +169,8 @@ export interface ActionLogResponse {
|
|
|
193
169
|
|
|
194
170
|
user_id: string;
|
|
195
171
|
|
|
172
|
+
ai_providers: string[];
|
|
173
|
+
|
|
196
174
|
custom: Record<string, any>;
|
|
197
175
|
|
|
198
176
|
review_queue_item?: ReviewQueueItemResponse;
|
|
@@ -599,25 +577,31 @@ export interface ActivityResponse {
|
|
|
599
577
|
}
|
|
600
578
|
|
|
601
579
|
export interface ActivitySelectorConfig {
|
|
580
|
+
type:
|
|
581
|
+
| 'popular'
|
|
582
|
+
| 'proximity'
|
|
583
|
+
| 'following'
|
|
584
|
+
| 'current_feed'
|
|
585
|
+
| 'query'
|
|
586
|
+
| 'interest';
|
|
587
|
+
|
|
602
588
|
cutoff_time?: string;
|
|
603
589
|
|
|
604
590
|
min_popularity?: number;
|
|
605
591
|
|
|
606
|
-
|
|
607
|
-
|
|
608
|
-
sort?: SortParam[];
|
|
592
|
+
sort?: SortParamRequest[];
|
|
609
593
|
|
|
610
594
|
filter?: Record<string, any>;
|
|
611
595
|
}
|
|
612
596
|
|
|
613
597
|
export interface ActivitySelectorConfigResponse {
|
|
598
|
+
type: string;
|
|
599
|
+
|
|
614
600
|
cutoff_time?: Date;
|
|
615
601
|
|
|
616
602
|
min_popularity?: number;
|
|
617
603
|
|
|
618
|
-
|
|
619
|
-
|
|
620
|
-
sort?: SortParam[];
|
|
604
|
+
sort?: SortParamRequest[];
|
|
621
605
|
|
|
622
606
|
filter?: Record<string, any>;
|
|
623
607
|
}
|
|
@@ -743,12 +727,12 @@ export interface AddCommentReactionResponse {
|
|
|
743
727
|
}
|
|
744
728
|
|
|
745
729
|
export interface AddCommentRequest {
|
|
746
|
-
comment: string;
|
|
747
|
-
|
|
748
730
|
object_id: string;
|
|
749
731
|
|
|
750
732
|
object_type: string;
|
|
751
733
|
|
|
734
|
+
comment?: string;
|
|
735
|
+
|
|
752
736
|
create_notification_activity?: boolean;
|
|
753
737
|
|
|
754
738
|
parent_id?: string;
|
|
@@ -827,9 +811,9 @@ export interface AggregatedActivityResponse {
|
|
|
827
811
|
|
|
828
812
|
user_count_truncated: boolean;
|
|
829
813
|
|
|
830
|
-
is_watched?: boolean;
|
|
831
|
-
|
|
832
814
|
activities: ActivityResponse[];
|
|
815
|
+
|
|
816
|
+
is_watched?: boolean;
|
|
833
817
|
}
|
|
834
818
|
|
|
835
819
|
export interface AggregationConfig {
|
|
@@ -843,6 +827,8 @@ export interface AnyEvent {
|
|
|
843
827
|
}
|
|
844
828
|
|
|
845
829
|
export interface AppResponseFields {
|
|
830
|
+
allow_multi_user_devices: boolean;
|
|
831
|
+
|
|
846
832
|
async_url_enrich_enabled: boolean;
|
|
847
833
|
|
|
848
834
|
auto_translation_enabled: boolean;
|
|
@@ -861,8 +847,12 @@ export interface AppResponseFields {
|
|
|
861
847
|
|
|
862
848
|
guest_user_creation_disabled: boolean;
|
|
863
849
|
|
|
850
|
+
id: number;
|
|
851
|
+
|
|
864
852
|
image_moderation_enabled: boolean;
|
|
865
853
|
|
|
854
|
+
max_aggregated_activities_length: number;
|
|
855
|
+
|
|
866
856
|
moderation_bulk_submit_action_enabled: boolean;
|
|
867
857
|
|
|
868
858
|
moderation_enabled: boolean;
|
|
@@ -881,6 +871,8 @@ export interface AppResponseFields {
|
|
|
881
871
|
|
|
882
872
|
permission_version: string;
|
|
883
873
|
|
|
874
|
+
placement: string;
|
|
875
|
+
|
|
884
876
|
reminders_interval: number;
|
|
885
877
|
|
|
886
878
|
sns_key: string;
|
|
@@ -1093,6 +1085,8 @@ export interface AudioSettings {
|
|
|
1093
1085
|
|
|
1094
1086
|
default_device: 'speaker' | 'earpiece';
|
|
1095
1087
|
|
|
1088
|
+
hifi_audio_enabled: boolean;
|
|
1089
|
+
|
|
1096
1090
|
mic_default_on: boolean;
|
|
1097
1091
|
|
|
1098
1092
|
opus_dtx_enabled: boolean;
|
|
@@ -1101,8 +1095,6 @@ export interface AudioSettings {
|
|
|
1101
1095
|
|
|
1102
1096
|
speaker_default_on: boolean;
|
|
1103
1097
|
|
|
1104
|
-
hifi_audio_enabled?: boolean;
|
|
1105
|
-
|
|
1106
1098
|
noise_cancellation?: NoiseCancellationSettings;
|
|
1107
1099
|
}
|
|
1108
1100
|
|
|
@@ -1129,6 +1121,8 @@ export interface AudioSettingsResponse {
|
|
|
1129
1121
|
|
|
1130
1122
|
default_device: 'speaker' | 'earpiece';
|
|
1131
1123
|
|
|
1124
|
+
hifi_audio_enabled: boolean;
|
|
1125
|
+
|
|
1132
1126
|
mic_default_on: boolean;
|
|
1133
1127
|
|
|
1134
1128
|
opus_dtx_enabled: boolean;
|
|
@@ -1137,8 +1131,6 @@ export interface AudioSettingsResponse {
|
|
|
1137
1131
|
|
|
1138
1132
|
speaker_default_on: boolean;
|
|
1139
1133
|
|
|
1140
|
-
hifi_audio_enabled?: boolean;
|
|
1141
|
-
|
|
1142
1134
|
noise_cancellation?: NoiseCancellationSettings;
|
|
1143
1135
|
}
|
|
1144
1136
|
|
|
@@ -1321,6 +1313,10 @@ export interface BlockListOptions {
|
|
|
1321
1313
|
}
|
|
1322
1314
|
|
|
1323
1315
|
export interface BlockListResponse {
|
|
1316
|
+
is_leet_check_enabled: boolean;
|
|
1317
|
+
|
|
1318
|
+
is_plural_check_enabled: boolean;
|
|
1319
|
+
|
|
1324
1320
|
name: string;
|
|
1325
1321
|
|
|
1326
1322
|
type: string;
|
|
@@ -1573,70 +1569,6 @@ export interface BulkImageModerationResponse {
|
|
|
1573
1569
|
task_id: string;
|
|
1574
1570
|
}
|
|
1575
1571
|
|
|
1576
|
-
export interface Call {
|
|
1577
|
-
app_pk: number;
|
|
1578
|
-
|
|
1579
|
-
backstage: boolean;
|
|
1580
|
-
|
|
1581
|
-
channel_cid: string;
|
|
1582
|
-
|
|
1583
|
-
cid: string;
|
|
1584
|
-
|
|
1585
|
-
created_at: Date;
|
|
1586
|
-
|
|
1587
|
-
created_by_user_id: string;
|
|
1588
|
-
|
|
1589
|
-
current_session_id: string;
|
|
1590
|
-
|
|
1591
|
-
id: string;
|
|
1592
|
-
|
|
1593
|
-
last_session_id: string;
|
|
1594
|
-
|
|
1595
|
-
team: string;
|
|
1596
|
-
|
|
1597
|
-
thumbnail_url: string;
|
|
1598
|
-
|
|
1599
|
-
type: string;
|
|
1600
|
-
|
|
1601
|
-
updated_at: Date;
|
|
1602
|
-
|
|
1603
|
-
blocked_user_i_ds: string[];
|
|
1604
|
-
|
|
1605
|
-
blocked_users: User[];
|
|
1606
|
-
|
|
1607
|
-
egresses: CallEgress[];
|
|
1608
|
-
|
|
1609
|
-
members: CallMember[];
|
|
1610
|
-
|
|
1611
|
-
custom: Record<string, any>;
|
|
1612
|
-
|
|
1613
|
-
deleted_at?: Date;
|
|
1614
|
-
|
|
1615
|
-
egress_updated_at?: Date;
|
|
1616
|
-
|
|
1617
|
-
ended_at?: Date;
|
|
1618
|
-
|
|
1619
|
-
join_ahead_time_seconds?: number;
|
|
1620
|
-
|
|
1621
|
-
last_heartbeat_at?: Date;
|
|
1622
|
-
|
|
1623
|
-
member_count?: number;
|
|
1624
|
-
|
|
1625
|
-
starts_at?: Date;
|
|
1626
|
-
|
|
1627
|
-
call_type?: CallType;
|
|
1628
|
-
|
|
1629
|
-
created_by?: User;
|
|
1630
|
-
|
|
1631
|
-
member_lookup?: MemberLookup;
|
|
1632
|
-
|
|
1633
|
-
session?: CallSession;
|
|
1634
|
-
|
|
1635
|
-
settings?: CallSettings;
|
|
1636
|
-
|
|
1637
|
-
settings_overrides?: CallSettings;
|
|
1638
|
-
}
|
|
1639
|
-
|
|
1640
1572
|
export interface CallAcceptedEvent {
|
|
1641
1573
|
call_cid: string;
|
|
1642
1574
|
|
|
@@ -1723,30 +1655,6 @@ export interface CallDurationReportResponse {
|
|
|
1723
1655
|
daily: DailyAggregateCallDurationReportResponse[];
|
|
1724
1656
|
}
|
|
1725
1657
|
|
|
1726
|
-
export interface CallEgress {
|
|
1727
|
-
app_pk: number;
|
|
1728
|
-
|
|
1729
|
-
call_id: string;
|
|
1730
|
-
|
|
1731
|
-
call_type: string;
|
|
1732
|
-
|
|
1733
|
-
egress_id: string;
|
|
1734
|
-
|
|
1735
|
-
egress_type: string;
|
|
1736
|
-
|
|
1737
|
-
instance_ip: string;
|
|
1738
|
-
|
|
1739
|
-
started_at: Date;
|
|
1740
|
-
|
|
1741
|
-
state: string;
|
|
1742
|
-
|
|
1743
|
-
updated_at: Date;
|
|
1744
|
-
|
|
1745
|
-
stopped_at?: Date;
|
|
1746
|
-
|
|
1747
|
-
config?: EgressTaskConfig;
|
|
1748
|
-
}
|
|
1749
|
-
|
|
1750
1658
|
export interface CallEndedEvent {
|
|
1751
1659
|
call_cid: string;
|
|
1752
1660
|
|
|
@@ -1863,22 +1771,6 @@ export interface CallLiveStartedEvent {
|
|
|
1863
1771
|
type: string;
|
|
1864
1772
|
}
|
|
1865
1773
|
|
|
1866
|
-
export interface CallMember {
|
|
1867
|
-
created_at: Date;
|
|
1868
|
-
|
|
1869
|
-
role: string;
|
|
1870
|
-
|
|
1871
|
-
updated_at: Date;
|
|
1872
|
-
|
|
1873
|
-
user_id: string;
|
|
1874
|
-
|
|
1875
|
-
custom: Record<string, any>;
|
|
1876
|
-
|
|
1877
|
-
deleted_at?: Date;
|
|
1878
|
-
|
|
1879
|
-
user?: User;
|
|
1880
|
-
}
|
|
1881
|
-
|
|
1882
1774
|
export interface CallMemberAddedEvent {
|
|
1883
1775
|
call_cid: string;
|
|
1884
1776
|
|
|
@@ -1989,50 +1881,6 @@ export interface CallNotificationEvent {
|
|
|
1989
1881
|
type: string;
|
|
1990
1882
|
}
|
|
1991
1883
|
|
|
1992
|
-
export interface CallParticipant {
|
|
1993
|
-
banned: boolean;
|
|
1994
|
-
|
|
1995
|
-
id: string;
|
|
1996
|
-
|
|
1997
|
-
joined_at: Date;
|
|
1998
|
-
|
|
1999
|
-
online: boolean;
|
|
2000
|
-
|
|
2001
|
-
role: string;
|
|
2002
|
-
|
|
2003
|
-
user_session_id: string;
|
|
2004
|
-
|
|
2005
|
-
custom: Record<string, any>;
|
|
2006
|
-
|
|
2007
|
-
teams_role: Record<string, string>;
|
|
2008
|
-
|
|
2009
|
-
avg_response_time?: number;
|
|
2010
|
-
|
|
2011
|
-
ban_expires?: Date;
|
|
2012
|
-
|
|
2013
|
-
created_at?: Date;
|
|
2014
|
-
|
|
2015
|
-
deactivated_at?: Date;
|
|
2016
|
-
|
|
2017
|
-
deleted_at?: Date;
|
|
2018
|
-
|
|
2019
|
-
invisible?: boolean;
|
|
2020
|
-
|
|
2021
|
-
language?: string;
|
|
2022
|
-
|
|
2023
|
-
last_active?: Date;
|
|
2024
|
-
|
|
2025
|
-
last_engaged_at?: Date;
|
|
2026
|
-
|
|
2027
|
-
revoke_tokens_issued_before?: Date;
|
|
2028
|
-
|
|
2029
|
-
updated_at?: Date;
|
|
2030
|
-
|
|
2031
|
-
teams?: string[];
|
|
2032
|
-
|
|
2033
|
-
privacy_settings?: PrivacySettings;
|
|
2034
|
-
}
|
|
2035
|
-
|
|
2036
1884
|
export interface CallParticipantCountReport {
|
|
2037
1885
|
histogram: ReportByHistogramBucket[];
|
|
2038
1886
|
}
|
|
@@ -2051,6 +1899,16 @@ export interface CallParticipantResponse {
|
|
|
2051
1899
|
user: UserResponse;
|
|
2052
1900
|
}
|
|
2053
1901
|
|
|
1902
|
+
export interface CallParticipantTimeline {
|
|
1903
|
+
severity: string;
|
|
1904
|
+
|
|
1905
|
+
timestamp: Date;
|
|
1906
|
+
|
|
1907
|
+
type: string;
|
|
1908
|
+
|
|
1909
|
+
data: Record<string, any>;
|
|
1910
|
+
}
|
|
1911
|
+
|
|
2054
1912
|
export interface CallReactionEvent {
|
|
2055
1913
|
call_cid: string;
|
|
2056
1914
|
|
|
@@ -2255,50 +2113,6 @@ export interface CallRtmpBroadcastStoppedEvent {
|
|
|
2255
2113
|
type: string;
|
|
2256
2114
|
}
|
|
2257
2115
|
|
|
2258
|
-
export interface CallSession {
|
|
2259
|
-
anonymous_participant_count: number;
|
|
2260
|
-
|
|
2261
|
-
app_pk: number;
|
|
2262
|
-
|
|
2263
|
-
call_id: string;
|
|
2264
|
-
|
|
2265
|
-
call_type: string;
|
|
2266
|
-
|
|
2267
|
-
created_at: Date;
|
|
2268
|
-
|
|
2269
|
-
session_id: string;
|
|
2270
|
-
|
|
2271
|
-
active_sf_us: SFUIDLastSeen[];
|
|
2272
|
-
|
|
2273
|
-
participants: CallParticipant[];
|
|
2274
|
-
|
|
2275
|
-
sfui_ds: string[];
|
|
2276
|
-
|
|
2277
|
-
accepted_by: Record<string, Date>;
|
|
2278
|
-
|
|
2279
|
-
missed_by: Record<string, Date>;
|
|
2280
|
-
|
|
2281
|
-
participants_count_by_role: Record<string, number>;
|
|
2282
|
-
|
|
2283
|
-
rejected_by: Record<string, Date>;
|
|
2284
|
-
|
|
2285
|
-
user_permission_overrides: Record<string, Record<string, boolean>>;
|
|
2286
|
-
|
|
2287
|
-
deleted_at?: Date;
|
|
2288
|
-
|
|
2289
|
-
ended_at?: Date;
|
|
2290
|
-
|
|
2291
|
-
live_ended_at?: Date;
|
|
2292
|
-
|
|
2293
|
-
live_started_at?: Date;
|
|
2294
|
-
|
|
2295
|
-
ring_at?: Date;
|
|
2296
|
-
|
|
2297
|
-
started_at?: Date;
|
|
2298
|
-
|
|
2299
|
-
timer_ends_at?: Date;
|
|
2300
|
-
}
|
|
2301
|
-
|
|
2302
2116
|
export interface CallSessionEndedEvent {
|
|
2303
2117
|
call_cid: string;
|
|
2304
2118
|
|
|
@@ -2489,6 +2303,46 @@ export interface CallStateResponseFields {
|
|
|
2489
2303
|
call: CallResponse;
|
|
2490
2304
|
}
|
|
2491
2305
|
|
|
2306
|
+
export interface CallStatsParticipant {
|
|
2307
|
+
user_id: string;
|
|
2308
|
+
|
|
2309
|
+
sessions: CallStatsParticipantSession[];
|
|
2310
|
+
|
|
2311
|
+
latest_activity_at?: Date;
|
|
2312
|
+
|
|
2313
|
+
name?: string;
|
|
2314
|
+
|
|
2315
|
+
roles?: string[];
|
|
2316
|
+
}
|
|
2317
|
+
|
|
2318
|
+
export interface CallStatsParticipantCounts {
|
|
2319
|
+
live_sessions: number;
|
|
2320
|
+
|
|
2321
|
+
participants: number;
|
|
2322
|
+
|
|
2323
|
+
publishers: number;
|
|
2324
|
+
|
|
2325
|
+
sessions: number;
|
|
2326
|
+
}
|
|
2327
|
+
|
|
2328
|
+
export interface CallStatsParticipantSession {
|
|
2329
|
+
is_live: boolean;
|
|
2330
|
+
|
|
2331
|
+
user_session_id: string;
|
|
2332
|
+
|
|
2333
|
+
published_tracks: PublishedTrackFlags;
|
|
2334
|
+
|
|
2335
|
+
cq_score?: number;
|
|
2336
|
+
|
|
2337
|
+
ended_at?: Date;
|
|
2338
|
+
|
|
2339
|
+
publisher_type?: string;
|
|
2340
|
+
|
|
2341
|
+
started_at?: Date;
|
|
2342
|
+
|
|
2343
|
+
unified_session_id?: string;
|
|
2344
|
+
}
|
|
2345
|
+
|
|
2492
2346
|
export interface CallStatsReportReadyEvent {
|
|
2493
2347
|
call_cid: string;
|
|
2494
2348
|
|
|
@@ -2848,6 +2702,8 @@ export interface ChannelConfig {
|
|
|
2848
2702
|
|
|
2849
2703
|
custom_events: boolean;
|
|
2850
2704
|
|
|
2705
|
+
delivery_events: boolean;
|
|
2706
|
+
|
|
2851
2707
|
mark_messages_pending: boolean;
|
|
2852
2708
|
|
|
2853
2709
|
max_message_length: number;
|
|
@@ -2916,6 +2772,8 @@ export interface ChannelConfigWithInfo {
|
|
|
2916
2772
|
|
|
2917
2773
|
custom_events: boolean;
|
|
2918
2774
|
|
|
2775
|
+
delivery_events: boolean;
|
|
2776
|
+
|
|
2919
2777
|
mark_messages_pending: boolean;
|
|
2920
2778
|
|
|
2921
2779
|
max_message_length: number;
|
|
@@ -3130,6 +2988,8 @@ export interface ChannelMemberLookup {
|
|
|
3130
2988
|
|
|
3131
2989
|
banned: boolean;
|
|
3132
2990
|
|
|
2991
|
+
blocked: boolean;
|
|
2992
|
+
|
|
3133
2993
|
hidden: boolean;
|
|
3134
2994
|
|
|
3135
2995
|
pinned: boolean;
|
|
@@ -3177,6 +3037,7 @@ export const ChannelOwnCapability = {
|
|
|
3177
3037
|
DELETE_ANY_MESSAGE: 'delete-any-message',
|
|
3178
3038
|
DELETE_CHANNEL: 'delete-channel',
|
|
3179
3039
|
DELETE_OWN_MESSAGE: 'delete-own-message',
|
|
3040
|
+
DELIVERY_EVENTS: 'delivery-events',
|
|
3180
3041
|
FLAG_MESSAGE: 'flag-message',
|
|
3181
3042
|
FREEZE_CHANNEL: 'freeze-channel',
|
|
3182
3043
|
JOIN_CHANNEL: 'join-channel',
|
|
@@ -3293,8 +3154,6 @@ export interface ChannelStateResponse {
|
|
|
3293
3154
|
|
|
3294
3155
|
active_live_locations?: SharedLocationResponseData[];
|
|
3295
3156
|
|
|
3296
|
-
deleted_messages?: string[];
|
|
3297
|
-
|
|
3298
3157
|
pending_messages?: PendingMessageResponse[];
|
|
3299
3158
|
|
|
3300
3159
|
read?: ReadStateResponse[];
|
|
@@ -3327,8 +3186,6 @@ export interface ChannelStateResponseFields {
|
|
|
3327
3186
|
|
|
3328
3187
|
active_live_locations?: SharedLocationResponseData[];
|
|
3329
3188
|
|
|
3330
|
-
deleted_messages?: string[];
|
|
3331
|
-
|
|
3332
3189
|
pending_messages?: PendingMessageResponse[];
|
|
3333
3190
|
|
|
3334
3191
|
read?: ReadStateResponse[];
|
|
@@ -3373,6 +3230,8 @@ export interface ChannelTypeConfig {
|
|
|
3373
3230
|
|
|
3374
3231
|
custom_events: boolean;
|
|
3375
3232
|
|
|
3233
|
+
delivery_events: boolean;
|
|
3234
|
+
|
|
3376
3235
|
mark_messages_pending: boolean;
|
|
3377
3236
|
|
|
3378
3237
|
max_message_length: number;
|
|
@@ -3833,12 +3692,6 @@ export interface CommentUpdatedEvent {
|
|
|
3833
3692
|
|
|
3834
3693
|
export interface CommitMessageRequest {}
|
|
3835
3694
|
|
|
3836
|
-
export interface CompositeAppSettings {
|
|
3837
|
-
json_encoded_settings?: string;
|
|
3838
|
-
|
|
3839
|
-
url?: string;
|
|
3840
|
-
}
|
|
3841
|
-
|
|
3842
3695
|
export interface ConfigOverrides {
|
|
3843
3696
|
commands: string[];
|
|
3844
3697
|
|
|
@@ -3920,6 +3773,10 @@ export interface CreateBlockListRequest {
|
|
|
3920
3773
|
|
|
3921
3774
|
words: string[];
|
|
3922
3775
|
|
|
3776
|
+
is_leet_check_enabled?: boolean;
|
|
3777
|
+
|
|
3778
|
+
is_plural_check_enabled?: boolean;
|
|
3779
|
+
|
|
3923
3780
|
team?: string;
|
|
3924
3781
|
|
|
3925
3782
|
type?: 'regex' | 'domain' | 'domain_allowlist' | 'email' | 'word';
|
|
@@ -3976,8 +3833,12 @@ export interface CreateChannelTypeRequest {
|
|
|
3976
3833
|
|
|
3977
3834
|
connect_events?: boolean;
|
|
3978
3835
|
|
|
3836
|
+
count_messages?: boolean;
|
|
3837
|
+
|
|
3979
3838
|
custom_events?: boolean;
|
|
3980
3839
|
|
|
3840
|
+
delivery_events?: boolean;
|
|
3841
|
+
|
|
3981
3842
|
mark_messages_pending?: boolean;
|
|
3982
3843
|
|
|
3983
3844
|
message_retention?: 'infinite' | 'numeric';
|
|
@@ -4034,6 +3895,8 @@ export interface CreateChannelTypeResponse {
|
|
|
4034
3895
|
|
|
4035
3896
|
custom_events: boolean;
|
|
4036
3897
|
|
|
3898
|
+
delivery_events: boolean;
|
|
3899
|
+
|
|
4037
3900
|
duration: string;
|
|
4038
3901
|
|
|
4039
3902
|
mark_messages_pending: boolean;
|
|
@@ -4500,6 +4363,8 @@ export interface DeleteActivityReactionResponse {
|
|
|
4500
4363
|
|
|
4501
4364
|
export interface DeleteActivityRequest {
|
|
4502
4365
|
hard_delete?: boolean;
|
|
4366
|
+
|
|
4367
|
+
reason?: string;
|
|
4503
4368
|
}
|
|
4504
4369
|
|
|
4505
4370
|
export interface DeleteActivityResponse {
|
|
@@ -4608,6 +4473,8 @@ export interface DeleteFeedViewResponse {
|
|
|
4608
4473
|
|
|
4609
4474
|
export interface DeleteMessageRequest {
|
|
4610
4475
|
hard_delete?: boolean;
|
|
4476
|
+
|
|
4477
|
+
reason?: string;
|
|
4611
4478
|
}
|
|
4612
4479
|
|
|
4613
4480
|
export interface DeleteMessageResponse {
|
|
@@ -4630,6 +4497,8 @@ export interface DeleteModerationTemplateResponse {
|
|
|
4630
4497
|
|
|
4631
4498
|
export interface DeleteReactionRequest {
|
|
4632
4499
|
hard_delete?: boolean;
|
|
4500
|
+
|
|
4501
|
+
reason?: string;
|
|
4633
4502
|
}
|
|
4634
4503
|
|
|
4635
4504
|
export interface DeleteReactionResponse {
|
|
@@ -4664,6 +4533,8 @@ export interface DeleteUserRequest {
|
|
|
4664
4533
|
hard_delete?: boolean;
|
|
4665
4534
|
|
|
4666
4535
|
mark_messages_deleted?: boolean;
|
|
4536
|
+
|
|
4537
|
+
reason?: string;
|
|
4667
4538
|
}
|
|
4668
4539
|
|
|
4669
4540
|
export interface DeleteUsersRequest {
|
|
@@ -4690,6 +4561,14 @@ export interface DeleteUsersResponse {
|
|
|
4690
4561
|
task_id: string;
|
|
4691
4562
|
}
|
|
4692
4563
|
|
|
4564
|
+
export interface DeliveryReceipts {
|
|
4565
|
+
enabled: boolean;
|
|
4566
|
+
}
|
|
4567
|
+
|
|
4568
|
+
export interface DeliveryReceiptsResponse {
|
|
4569
|
+
enabled?: boolean;
|
|
4570
|
+
}
|
|
4571
|
+
|
|
4693
4572
|
export interface Device {
|
|
4694
4573
|
created_at: Date;
|
|
4695
4574
|
|
|
@@ -4832,24 +4711,6 @@ export interface EgressResponse {
|
|
|
4832
4711
|
hls?: EgressHLSResponse;
|
|
4833
4712
|
}
|
|
4834
4713
|
|
|
4835
|
-
export interface EgressTaskConfig {
|
|
4836
|
-
egress_user?: EgressUser;
|
|
4837
|
-
|
|
4838
|
-
frame_recording_egress_config?: FrameRecordingEgressConfig;
|
|
4839
|
-
|
|
4840
|
-
hls_egress_config?: HLSEgressConfig;
|
|
4841
|
-
|
|
4842
|
-
recording_egress_config?: RecordingEgressConfig;
|
|
4843
|
-
|
|
4844
|
-
rtmp_egress_config?: RTMPEgressConfig;
|
|
4845
|
-
|
|
4846
|
-
stt_egress_config?: STTEgressConfig;
|
|
4847
|
-
}
|
|
4848
|
-
|
|
4849
|
-
export interface EgressUser {
|
|
4850
|
-
token?: string;
|
|
4851
|
-
}
|
|
4852
|
-
|
|
4853
4714
|
export interface EndCallRequest {}
|
|
4854
4715
|
|
|
4855
4716
|
export interface EndCallResponse {
|
|
@@ -4910,50 +4771,6 @@ export interface EnrichedReaction {
|
|
|
4910
4771
|
user?: Data;
|
|
4911
4772
|
}
|
|
4912
4773
|
|
|
4913
|
-
export interface EntityCreator {
|
|
4914
|
-
ban_count: number;
|
|
4915
|
-
|
|
4916
|
-
banned: boolean;
|
|
4917
|
-
|
|
4918
|
-
deleted_content_count: number;
|
|
4919
|
-
|
|
4920
|
-
id: string;
|
|
4921
|
-
|
|
4922
|
-
online: boolean;
|
|
4923
|
-
|
|
4924
|
-
role: string;
|
|
4925
|
-
|
|
4926
|
-
custom: Record<string, any>;
|
|
4927
|
-
|
|
4928
|
-
teams_role: Record<string, string>;
|
|
4929
|
-
|
|
4930
|
-
avg_response_time?: number;
|
|
4931
|
-
|
|
4932
|
-
ban_expires?: Date;
|
|
4933
|
-
|
|
4934
|
-
created_at?: Date;
|
|
4935
|
-
|
|
4936
|
-
deactivated_at?: Date;
|
|
4937
|
-
|
|
4938
|
-
deleted_at?: Date;
|
|
4939
|
-
|
|
4940
|
-
invisible?: boolean;
|
|
4941
|
-
|
|
4942
|
-
language?: string;
|
|
4943
|
-
|
|
4944
|
-
last_active?: Date;
|
|
4945
|
-
|
|
4946
|
-
last_engaged_at?: Date;
|
|
4947
|
-
|
|
4948
|
-
revoke_tokens_issued_before?: Date;
|
|
4949
|
-
|
|
4950
|
-
updated_at?: Date;
|
|
4951
|
-
|
|
4952
|
-
teams?: string[];
|
|
4953
|
-
|
|
4954
|
-
privacy_settings?: PrivacySettings;
|
|
4955
|
-
}
|
|
4956
|
-
|
|
4957
4774
|
export interface EntityCreatorResponse {
|
|
4958
4775
|
ban_count: number;
|
|
4959
4776
|
|
|
@@ -5138,34 +4955,6 @@ export interface ExportUsersResponse {
|
|
|
5138
4955
|
task_id: string;
|
|
5139
4956
|
}
|
|
5140
4957
|
|
|
5141
|
-
export interface ExternalStorage {
|
|
5142
|
-
abs_account_name?: string;
|
|
5143
|
-
|
|
5144
|
-
abs_client_id?: string;
|
|
5145
|
-
|
|
5146
|
-
abs_client_secret?: string;
|
|
5147
|
-
|
|
5148
|
-
abs_tenant_id?: string;
|
|
5149
|
-
|
|
5150
|
-
bucket?: string;
|
|
5151
|
-
|
|
5152
|
-
gcs_credentials?: string;
|
|
5153
|
-
|
|
5154
|
-
path?: string;
|
|
5155
|
-
|
|
5156
|
-
s3_api_key?: string;
|
|
5157
|
-
|
|
5158
|
-
s3_custom_endpoint?: string;
|
|
5159
|
-
|
|
5160
|
-
s3_region?: string;
|
|
5161
|
-
|
|
5162
|
-
s3_secret_key?: string;
|
|
5163
|
-
|
|
5164
|
-
storage_name?: string;
|
|
5165
|
-
|
|
5166
|
-
storage_type?: number;
|
|
5167
|
-
}
|
|
5168
|
-
|
|
5169
4958
|
export interface ExternalStorageResponse {
|
|
5170
4959
|
bucket: string;
|
|
5171
4960
|
|
|
@@ -5291,13 +5080,13 @@ export interface FeedGroupResponse {
|
|
|
5291
5080
|
|
|
5292
5081
|
updated_at: Date;
|
|
5293
5082
|
|
|
5294
|
-
deleted_at?: Date;
|
|
5295
|
-
|
|
5296
5083
|
default_visibility?: string;
|
|
5297
5084
|
|
|
5085
|
+
deleted_at?: Date;
|
|
5086
|
+
|
|
5298
5087
|
activity_processors?: ActivityProcessorConfig[];
|
|
5299
5088
|
|
|
5300
|
-
activity_selectors?:
|
|
5089
|
+
activity_selectors?: ActivitySelectorConfigResponse[];
|
|
5301
5090
|
|
|
5302
5091
|
aggregation?: AggregationConfig;
|
|
5303
5092
|
|
|
@@ -5541,10 +5330,10 @@ export interface FeedViewResponse {
|
|
|
5541
5330
|
}
|
|
5542
5331
|
|
|
5543
5332
|
export interface FeedVisibilityResponse {
|
|
5544
|
-
description: string;
|
|
5545
|
-
|
|
5546
5333
|
name: string;
|
|
5547
5334
|
|
|
5335
|
+
permissions: Permission[];
|
|
5336
|
+
|
|
5548
5337
|
grants: Record<string, string[]>;
|
|
5549
5338
|
}
|
|
5550
5339
|
|
|
@@ -5854,16 +5643,6 @@ export interface FrameRecordSettings {
|
|
|
5854
5643
|
quality?: string;
|
|
5855
5644
|
}
|
|
5856
5645
|
|
|
5857
|
-
export interface FrameRecordingEgressConfig {
|
|
5858
|
-
capture_interval_in_seconds?: number;
|
|
5859
|
-
|
|
5860
|
-
storage_name?: string;
|
|
5861
|
-
|
|
5862
|
-
external_storage?: ExternalStorage;
|
|
5863
|
-
|
|
5864
|
-
quality?: Quality;
|
|
5865
|
-
}
|
|
5866
|
-
|
|
5867
5646
|
export interface FrameRecordingResponse {
|
|
5868
5647
|
status: string;
|
|
5869
5648
|
}
|
|
@@ -6028,6 +5807,28 @@ export interface GetCallResponse {
|
|
|
6028
5807
|
call: CallResponse;
|
|
6029
5808
|
}
|
|
6030
5809
|
|
|
5810
|
+
export interface GetCallSessionParticipantStatsDetailsResponse {
|
|
5811
|
+
call_id: string;
|
|
5812
|
+
|
|
5813
|
+
call_session_id: string;
|
|
5814
|
+
|
|
5815
|
+
call_type: string;
|
|
5816
|
+
|
|
5817
|
+
duration: string;
|
|
5818
|
+
|
|
5819
|
+
user_id: string;
|
|
5820
|
+
|
|
5821
|
+
user_session_id: string;
|
|
5822
|
+
|
|
5823
|
+
publisher?: ParticipantSeriesPublisherStats;
|
|
5824
|
+
|
|
5825
|
+
subscriber?: ParticipantSeriesSubscriberStats;
|
|
5826
|
+
|
|
5827
|
+
timeframe?: ParticipantSeriesTimeframe;
|
|
5828
|
+
|
|
5829
|
+
user?: ParticipantSeriesUserStats;
|
|
5830
|
+
}
|
|
5831
|
+
|
|
6031
5832
|
export interface GetCallTypeResponse {
|
|
6032
5833
|
created_at: Date;
|
|
6033
5834
|
|
|
@@ -6067,6 +5868,8 @@ export interface GetChannelTypeResponse {
|
|
|
6067
5868
|
|
|
6068
5869
|
custom_events: boolean;
|
|
6069
5870
|
|
|
5871
|
+
delivery_events: boolean;
|
|
5872
|
+
|
|
6070
5873
|
duration: string;
|
|
6071
5874
|
|
|
6072
5875
|
mark_messages_pending: boolean;
|
|
@@ -6212,6 +6015,18 @@ export interface GetFeedVisibilityResponse {
|
|
|
6212
6015
|
feed_visibility: FeedVisibilityResponse;
|
|
6213
6016
|
}
|
|
6214
6017
|
|
|
6018
|
+
export interface GetFeedsRateLimitsResponse {
|
|
6019
|
+
duration: string;
|
|
6020
|
+
|
|
6021
|
+
android?: Record<string, LimitInfo>;
|
|
6022
|
+
|
|
6023
|
+
ios?: Record<string, LimitInfo>;
|
|
6024
|
+
|
|
6025
|
+
server_side?: Record<string, LimitInfo>;
|
|
6026
|
+
|
|
6027
|
+
web?: Record<string, LimitInfo>;
|
|
6028
|
+
}
|
|
6029
|
+
|
|
6215
6030
|
export interface GetFollowSuggestionsResponse {
|
|
6216
6031
|
duration: string;
|
|
6217
6032
|
|
|
@@ -6525,16 +6340,6 @@ export interface GroupedStatsResponse {
|
|
|
6525
6340
|
unique: number;
|
|
6526
6341
|
}
|
|
6527
6342
|
|
|
6528
|
-
export interface HLSEgressConfig {
|
|
6529
|
-
playlist_url?: string;
|
|
6530
|
-
|
|
6531
|
-
start_unix_nano?: number;
|
|
6532
|
-
|
|
6533
|
-
qualities?: Quality[];
|
|
6534
|
-
|
|
6535
|
-
composite_app_settings?: CompositeAppSettings;
|
|
6536
|
-
}
|
|
6537
|
-
|
|
6538
6343
|
export interface HLSSettings {
|
|
6539
6344
|
auto_on: boolean;
|
|
6540
6345
|
|
|
@@ -6747,16 +6552,46 @@ export interface IngressSettingsResponse {
|
|
|
6747
6552
|
video_encoding_options?: Record<string, IngressVideoEncodingResponse>;
|
|
6748
6553
|
}
|
|
6749
6554
|
|
|
6555
|
+
export interface IngressSource {
|
|
6556
|
+
fps: number;
|
|
6557
|
+
|
|
6558
|
+
height: number;
|
|
6559
|
+
|
|
6560
|
+
width: number;
|
|
6561
|
+
}
|
|
6562
|
+
|
|
6563
|
+
export interface IngressSourceRequest {
|
|
6564
|
+
fps: '30' | '60';
|
|
6565
|
+
|
|
6566
|
+
height: number;
|
|
6567
|
+
|
|
6568
|
+
width: number;
|
|
6569
|
+
}
|
|
6570
|
+
|
|
6571
|
+
export interface IngressSourceResponse {
|
|
6572
|
+
fps: number;
|
|
6573
|
+
|
|
6574
|
+
height: number;
|
|
6575
|
+
|
|
6576
|
+
width: number;
|
|
6577
|
+
}
|
|
6578
|
+
|
|
6750
6579
|
export interface IngressVideoEncodingOptions {
|
|
6751
6580
|
layers: IngressVideoLayer[];
|
|
6581
|
+
|
|
6582
|
+
source?: IngressSource;
|
|
6752
6583
|
}
|
|
6753
6584
|
|
|
6754
6585
|
export interface IngressVideoEncodingOptionsRequest {
|
|
6755
6586
|
layers: IngressVideoLayerRequest[];
|
|
6587
|
+
|
|
6588
|
+
source: IngressSourceRequest;
|
|
6756
6589
|
}
|
|
6757
6590
|
|
|
6758
6591
|
export interface IngressVideoEncodingResponse {
|
|
6759
6592
|
layers: IngressVideoLayerResponse[];
|
|
6593
|
+
|
|
6594
|
+
source: IngressSourceResponse;
|
|
6760
6595
|
}
|
|
6761
6596
|
|
|
6762
6597
|
export interface IngressVideoLayer {
|
|
@@ -7110,10 +6945,6 @@ export interface MemberAddedEvent {
|
|
|
7110
6945
|
user?: User;
|
|
7111
6946
|
}
|
|
7112
6947
|
|
|
7113
|
-
export interface MemberLookup {
|
|
7114
|
-
limit: number;
|
|
7115
|
-
}
|
|
7116
|
-
|
|
7117
6948
|
export interface MemberRemovedEvent {
|
|
7118
6949
|
channel_id: string;
|
|
7119
6950
|
|
|
@@ -7450,7 +7281,29 @@ export interface MessageOptions {
|
|
|
7450
7281
|
include_thread_participants?: boolean;
|
|
7451
7282
|
}
|
|
7452
7283
|
|
|
7453
|
-
export interface MessagePaginationParams {
|
|
7284
|
+
export interface MessagePaginationParams {
|
|
7285
|
+
created_at_after?: Date;
|
|
7286
|
+
|
|
7287
|
+
created_at_after_or_equal?: Date;
|
|
7288
|
+
|
|
7289
|
+
created_at_around?: Date;
|
|
7290
|
+
|
|
7291
|
+
created_at_before?: Date;
|
|
7292
|
+
|
|
7293
|
+
created_at_before_or_equal?: Date;
|
|
7294
|
+
|
|
7295
|
+
id_around?: string;
|
|
7296
|
+
|
|
7297
|
+
id_gt?: string;
|
|
7298
|
+
|
|
7299
|
+
id_gte?: string;
|
|
7300
|
+
|
|
7301
|
+
id_lt?: string;
|
|
7302
|
+
|
|
7303
|
+
id_lte?: string;
|
|
7304
|
+
|
|
7305
|
+
limit?: number;
|
|
7306
|
+
}
|
|
7454
7307
|
|
|
7455
7308
|
export interface MessageReadEvent {
|
|
7456
7309
|
channel_id: string;
|
|
@@ -7786,6 +7639,18 @@ export interface MessageWithChannelResponse {
|
|
|
7786
7639
|
shared_location?: SharedLocationResponseData;
|
|
7787
7640
|
}
|
|
7788
7641
|
|
|
7642
|
+
export interface MetricThreshold {
|
|
7643
|
+
level: string;
|
|
7644
|
+
|
|
7645
|
+
operator: string;
|
|
7646
|
+
|
|
7647
|
+
value: number;
|
|
7648
|
+
|
|
7649
|
+
value_unit?: string;
|
|
7650
|
+
|
|
7651
|
+
window_seconds?: number;
|
|
7652
|
+
}
|
|
7653
|
+
|
|
7789
7654
|
export interface ModerationActionConfig {
|
|
7790
7655
|
action: string;
|
|
7791
7656
|
|
|
@@ -7857,15 +7722,21 @@ export interface ModerationConfig {
|
|
|
7857
7722
|
}
|
|
7858
7723
|
|
|
7859
7724
|
export interface ModerationCustomActionEvent {
|
|
7725
|
+
action_id: string;
|
|
7726
|
+
|
|
7860
7727
|
created_at: Date;
|
|
7861
7728
|
|
|
7729
|
+
custom: Record<string, any>;
|
|
7730
|
+
|
|
7731
|
+
review_queue_item: ReviewQueueItemResponse;
|
|
7732
|
+
|
|
7862
7733
|
type: string;
|
|
7863
7734
|
|
|
7864
|
-
|
|
7735
|
+
received_at?: Date;
|
|
7865
7736
|
|
|
7866
|
-
|
|
7737
|
+
action_options?: Record<string, any>;
|
|
7867
7738
|
|
|
7868
|
-
|
|
7739
|
+
message?: MessageResponse;
|
|
7869
7740
|
}
|
|
7870
7741
|
|
|
7871
7742
|
export interface ModerationDashboardPreferences {
|
|
@@ -7874,6 +7745,10 @@ export interface ModerationDashboardPreferences {
|
|
|
7874
7745
|
flag_user_on_flagged_content?: boolean;
|
|
7875
7746
|
|
|
7876
7747
|
media_queue_blur_enabled?: boolean;
|
|
7748
|
+
|
|
7749
|
+
allowed_moderation_action_reasons?: string[];
|
|
7750
|
+
|
|
7751
|
+
overview_dashboard?: OverviewDashboardConfig;
|
|
7877
7752
|
}
|
|
7878
7753
|
|
|
7879
7754
|
export interface ModerationFlagResponse {
|
|
@@ -7923,13 +7798,15 @@ export interface ModerationFlaggedEvent {
|
|
|
7923
7798
|
export interface ModerationMarkReviewedEvent {
|
|
7924
7799
|
created_at: Date;
|
|
7925
7800
|
|
|
7926
|
-
|
|
7801
|
+
custom: Record<string, any>;
|
|
7927
7802
|
|
|
7928
|
-
item
|
|
7803
|
+
item: ReviewQueueItemResponse;
|
|
7929
7804
|
|
|
7930
|
-
|
|
7805
|
+
type: string;
|
|
7931
7806
|
|
|
7932
|
-
|
|
7807
|
+
received_at?: Date;
|
|
7808
|
+
|
|
7809
|
+
message?: MessageResponse;
|
|
7933
7810
|
}
|
|
7934
7811
|
|
|
7935
7812
|
export interface ModerationPayload {
|
|
@@ -8192,8 +8069,6 @@ export interface NotificationTrigger {
|
|
|
8192
8069
|
type: string;
|
|
8193
8070
|
}
|
|
8194
8071
|
|
|
8195
|
-
export interface NullTime {}
|
|
8196
|
-
|
|
8197
8072
|
export interface OCRRule {
|
|
8198
8073
|
action:
|
|
8199
8074
|
| 'flag'
|
|
@@ -8210,6 +8085,26 @@ export interface OnlyUserID {
|
|
|
8210
8085
|
id: string;
|
|
8211
8086
|
}
|
|
8212
8087
|
|
|
8088
|
+
export interface OverviewDashboardConfig {
|
|
8089
|
+
default_date_range_days?: number;
|
|
8090
|
+
|
|
8091
|
+
visible_charts?: string[];
|
|
8092
|
+
}
|
|
8093
|
+
|
|
8094
|
+
export interface OwnCapabilitiesBatchRequest {
|
|
8095
|
+
feeds: string[];
|
|
8096
|
+
|
|
8097
|
+
user_id?: string;
|
|
8098
|
+
|
|
8099
|
+
user?: UserRequest;
|
|
8100
|
+
}
|
|
8101
|
+
|
|
8102
|
+
export interface OwnCapabilitiesBatchResponse {
|
|
8103
|
+
duration: string;
|
|
8104
|
+
|
|
8105
|
+
capabilities: Record<string, FeedOwnCapability[]>;
|
|
8106
|
+
}
|
|
8107
|
+
|
|
8213
8108
|
export const OwnCapability = {
|
|
8214
8109
|
BLOCK_USERS: 'block-users',
|
|
8215
8110
|
CHANGE_MAX_DURATION: 'change-max-duration',
|
|
@@ -8382,48 +8277,106 @@ export interface PagerResponse {
|
|
|
8382
8277
|
prev?: string;
|
|
8383
8278
|
}
|
|
8384
8279
|
|
|
8385
|
-
export interface PaginationParams {
|
|
8386
|
-
limit?: number;
|
|
8280
|
+
export interface PaginationParams {
|
|
8281
|
+
limit?: number;
|
|
8282
|
+
|
|
8283
|
+
offset?: number;
|
|
8284
|
+
}
|
|
8285
|
+
|
|
8286
|
+
export interface ParticipantCountByMinuteResponse {
|
|
8287
|
+
first: number;
|
|
8288
|
+
|
|
8289
|
+
last: number;
|
|
8290
|
+
|
|
8291
|
+
max: number;
|
|
8292
|
+
|
|
8293
|
+
min: number;
|
|
8294
|
+
|
|
8295
|
+
start_ts: Date;
|
|
8296
|
+
}
|
|
8297
|
+
|
|
8298
|
+
export interface ParticipantCountOverTimeResponse {
|
|
8299
|
+
by_minute?: ParticipantCountByMinuteResponse[];
|
|
8300
|
+
}
|
|
8301
|
+
|
|
8302
|
+
export interface ParticipantReportResponse {
|
|
8303
|
+
sum: number;
|
|
8304
|
+
|
|
8305
|
+
unique: number;
|
|
8306
|
+
|
|
8307
|
+
max_concurrent?: number;
|
|
8308
|
+
|
|
8309
|
+
by_browser?: GroupedStatsResponse[];
|
|
8310
|
+
|
|
8311
|
+
by_country?: GroupedStatsResponse[];
|
|
8312
|
+
|
|
8313
|
+
by_device?: GroupedStatsResponse[];
|
|
8314
|
+
|
|
8315
|
+
by_operating_system?: GroupedStatsResponse[];
|
|
8316
|
+
|
|
8317
|
+
count_over_time?: ParticipantCountOverTimeResponse;
|
|
8318
|
+
|
|
8319
|
+
publishers?: PublisherStatsResponse;
|
|
8320
|
+
|
|
8321
|
+
subscribers?: SubscriberStatsResponse;
|
|
8322
|
+
}
|
|
8323
|
+
|
|
8324
|
+
export interface ParticipantSeriesPublisherStats {
|
|
8325
|
+
global?: Record<string, number[][]>;
|
|
8326
|
+
|
|
8327
|
+
global_thresholds?: Record<string, MetricThreshold[]>;
|
|
8328
|
+
|
|
8329
|
+
tracks?: Record<string, ParticipantSeriesTrackMetrics[]>;
|
|
8330
|
+
}
|
|
8331
|
+
|
|
8332
|
+
export interface ParticipantSeriesSubscriberStats {
|
|
8333
|
+
subscriptions?: ParticipantSeriesSubscriptionTrackMetrics[];
|
|
8334
|
+
|
|
8335
|
+
global?: Record<string, number[][]>;
|
|
8336
|
+
|
|
8337
|
+
global_thresholds?: Record<string, MetricThreshold[]>;
|
|
8338
|
+
}
|
|
8339
|
+
|
|
8340
|
+
export interface ParticipantSeriesSubscriptionTrackMetrics {
|
|
8341
|
+
publisher_user_id: string;
|
|
8387
8342
|
|
|
8388
|
-
|
|
8389
|
-
}
|
|
8343
|
+
publisher_name?: string;
|
|
8390
8344
|
|
|
8391
|
-
|
|
8392
|
-
first: number;
|
|
8345
|
+
publisher_user_session_id?: string;
|
|
8393
8346
|
|
|
8394
|
-
|
|
8347
|
+
tracks?: Record<string, ParticipantSeriesTrackMetrics[]>;
|
|
8348
|
+
}
|
|
8395
8349
|
|
|
8396
|
-
|
|
8350
|
+
export interface ParticipantSeriesTimeframe {
|
|
8351
|
+
max_points: number;
|
|
8397
8352
|
|
|
8398
|
-
|
|
8353
|
+
since: Date;
|
|
8399
8354
|
|
|
8400
|
-
|
|
8401
|
-
}
|
|
8355
|
+
step_seconds: number;
|
|
8402
8356
|
|
|
8403
|
-
|
|
8404
|
-
by_minute?: ParticipantCountByMinuteResponse[];
|
|
8357
|
+
until: Date;
|
|
8405
8358
|
}
|
|
8406
8359
|
|
|
8407
|
-
export interface
|
|
8408
|
-
|
|
8409
|
-
|
|
8410
|
-
unique: number;
|
|
8360
|
+
export interface ParticipantSeriesTrackMetrics {
|
|
8361
|
+
track_id: string;
|
|
8411
8362
|
|
|
8412
|
-
|
|
8363
|
+
codec?: string;
|
|
8413
8364
|
|
|
8414
|
-
|
|
8365
|
+
label?: string;
|
|
8415
8366
|
|
|
8416
|
-
|
|
8367
|
+
rid?: string;
|
|
8417
8368
|
|
|
8418
|
-
|
|
8369
|
+
track_type?: string;
|
|
8419
8370
|
|
|
8420
|
-
|
|
8371
|
+
metrics?: Record<string, number[][]>;
|
|
8421
8372
|
|
|
8422
|
-
|
|
8373
|
+
thresholds?: Record<string, MetricThreshold[]>;
|
|
8374
|
+
}
|
|
8423
8375
|
|
|
8424
|
-
|
|
8376
|
+
export interface ParticipantSeriesUserStats {
|
|
8377
|
+
metrics?: Record<string, number[][]>;
|
|
8425
8378
|
|
|
8426
|
-
|
|
8379
|
+
thresholds?: Record<string, MetricThreshold[]>;
|
|
8427
8380
|
}
|
|
8428
8381
|
|
|
8429
8382
|
export interface PendingMessageEvent {
|
|
@@ -8751,17 +8704,31 @@ export interface PollVotesResponse {
|
|
|
8751
8704
|
}
|
|
8752
8705
|
|
|
8753
8706
|
export interface PrivacySettings {
|
|
8707
|
+
delivery_receipts?: DeliveryReceipts;
|
|
8708
|
+
|
|
8754
8709
|
read_receipts?: ReadReceipts;
|
|
8755
8710
|
|
|
8756
8711
|
typing_indicators?: TypingIndicators;
|
|
8757
8712
|
}
|
|
8758
8713
|
|
|
8759
8714
|
export interface PrivacySettingsResponse {
|
|
8715
|
+
delivery_receipts?: DeliveryReceiptsResponse;
|
|
8716
|
+
|
|
8760
8717
|
read_receipts?: ReadReceiptsResponse;
|
|
8761
8718
|
|
|
8762
8719
|
typing_indicators?: TypingIndicatorsResponse;
|
|
8763
8720
|
}
|
|
8764
8721
|
|
|
8722
|
+
export interface PublishedTrackFlags {
|
|
8723
|
+
audio: boolean;
|
|
8724
|
+
|
|
8725
|
+
screenshare: boolean;
|
|
8726
|
+
|
|
8727
|
+
screenshare_audio: boolean;
|
|
8728
|
+
|
|
8729
|
+
video: boolean;
|
|
8730
|
+
}
|
|
8731
|
+
|
|
8765
8732
|
export interface PublisherAllMetrics {
|
|
8766
8733
|
audio?: PublisherAudioMetrics;
|
|
8767
8734
|
|
|
@@ -8998,20 +8965,6 @@ export interface PushTemplate {
|
|
|
8998
8965
|
template?: string;
|
|
8999
8966
|
}
|
|
9000
8967
|
|
|
9001
|
-
export interface Quality {
|
|
9002
|
-
bitdepth?: number;
|
|
9003
|
-
|
|
9004
|
-
framerate?: number;
|
|
9005
|
-
|
|
9006
|
-
height?: number;
|
|
9007
|
-
|
|
9008
|
-
name?: string;
|
|
9009
|
-
|
|
9010
|
-
video_bitrate?: number;
|
|
9011
|
-
|
|
9012
|
-
width?: number;
|
|
9013
|
-
}
|
|
9014
|
-
|
|
9015
8968
|
export interface QualityScoreReport {
|
|
9016
8969
|
histogram: ReportByHistogramBucket[];
|
|
9017
8970
|
}
|
|
@@ -9200,6 +9153,46 @@ export interface QueryCallParticipantsResponse {
|
|
|
9200
9153
|
call: CallResponse;
|
|
9201
9154
|
}
|
|
9202
9155
|
|
|
9156
|
+
export interface QueryCallSessionParticipantStatsResponse {
|
|
9157
|
+
call_id: string;
|
|
9158
|
+
|
|
9159
|
+
call_session_id: string;
|
|
9160
|
+
|
|
9161
|
+
call_type: string;
|
|
9162
|
+
|
|
9163
|
+
duration: string;
|
|
9164
|
+
|
|
9165
|
+
participants: CallStatsParticipant[];
|
|
9166
|
+
|
|
9167
|
+
counts: CallStatsParticipantCounts;
|
|
9168
|
+
|
|
9169
|
+
call_ended_at?: Date;
|
|
9170
|
+
|
|
9171
|
+
call_started_at?: Date;
|
|
9172
|
+
|
|
9173
|
+
next?: string;
|
|
9174
|
+
|
|
9175
|
+
prev?: string;
|
|
9176
|
+
|
|
9177
|
+
tmp_data_source?: string;
|
|
9178
|
+
}
|
|
9179
|
+
|
|
9180
|
+
export interface QueryCallSessionParticipantStatsTimelineResponse {
|
|
9181
|
+
call_id: string;
|
|
9182
|
+
|
|
9183
|
+
call_session_id: string;
|
|
9184
|
+
|
|
9185
|
+
call_type: string;
|
|
9186
|
+
|
|
9187
|
+
duration: string;
|
|
9188
|
+
|
|
9189
|
+
user_id: string;
|
|
9190
|
+
|
|
9191
|
+
user_session_id: string;
|
|
9192
|
+
|
|
9193
|
+
events: CallParticipantTimeline[];
|
|
9194
|
+
}
|
|
9195
|
+
|
|
9203
9196
|
export interface QueryCallStatsRequest {
|
|
9204
9197
|
limit?: number;
|
|
9205
9198
|
|
|
@@ -9922,14 +9915,6 @@ export interface RTMPBroadcastRequest {
|
|
|
9922
9915
|
layout?: LayoutSettingsRequest;
|
|
9923
9916
|
}
|
|
9924
9917
|
|
|
9925
|
-
export interface RTMPEgressConfig {
|
|
9926
|
-
rtmp_location?: string;
|
|
9927
|
-
|
|
9928
|
-
composite_app_settings?: CompositeAppSettings;
|
|
9929
|
-
|
|
9930
|
-
quality?: Quality;
|
|
9931
|
-
}
|
|
9932
|
-
|
|
9933
9918
|
export interface RTMPIngress {
|
|
9934
9919
|
address: string;
|
|
9935
9920
|
}
|
|
@@ -10159,6 +10144,10 @@ export interface ReadStateResponse {
|
|
|
10159
10144
|
|
|
10160
10145
|
user: UserResponse;
|
|
10161
10146
|
|
|
10147
|
+
last_delivered_at?: Date;
|
|
10148
|
+
|
|
10149
|
+
last_delivered_message_id?: string;
|
|
10150
|
+
|
|
10162
10151
|
last_read_message_id?: string;
|
|
10163
10152
|
}
|
|
10164
10153
|
|
|
@@ -10202,20 +10191,6 @@ export interface RecordSettingsResponse {
|
|
|
10202
10191
|
layout: LayoutSettingsResponse;
|
|
10203
10192
|
}
|
|
10204
10193
|
|
|
10205
|
-
export interface RecordingEgressConfig {
|
|
10206
|
-
audio_only?: boolean;
|
|
10207
|
-
|
|
10208
|
-
storage_name?: string;
|
|
10209
|
-
|
|
10210
|
-
composite_app_settings?: CompositeAppSettings;
|
|
10211
|
-
|
|
10212
|
-
external_storage?: ExternalStorage;
|
|
10213
|
-
|
|
10214
|
-
quality?: Quality;
|
|
10215
|
-
|
|
10216
|
-
video_orientation_hint?: VideoOrientation;
|
|
10217
|
-
}
|
|
10218
|
-
|
|
10219
10194
|
export interface RejectFeedMemberInviteRequest {
|
|
10220
10195
|
user_id?: string;
|
|
10221
10196
|
|
|
@@ -10380,84 +10355,6 @@ export interface RestoreUsersRequest {
|
|
|
10380
10355
|
user_ids: string[];
|
|
10381
10356
|
}
|
|
10382
10357
|
|
|
10383
|
-
export interface ReviewQueueItem {
|
|
10384
|
-
ai_text_severity: string;
|
|
10385
|
-
|
|
10386
|
-
bounce_count: number;
|
|
10387
|
-
|
|
10388
|
-
config_key: string;
|
|
10389
|
-
|
|
10390
|
-
content_changed: boolean;
|
|
10391
|
-
|
|
10392
|
-
created_at: Date;
|
|
10393
|
-
|
|
10394
|
-
entity_id: string;
|
|
10395
|
-
|
|
10396
|
-
entity_type: string;
|
|
10397
|
-
|
|
10398
|
-
flags_count: number;
|
|
10399
|
-
|
|
10400
|
-
has_image: boolean;
|
|
10401
|
-
|
|
10402
|
-
has_text: boolean;
|
|
10403
|
-
|
|
10404
|
-
has_video: boolean;
|
|
10405
|
-
|
|
10406
|
-
id: string;
|
|
10407
|
-
|
|
10408
|
-
moderation_payload_hash: string;
|
|
10409
|
-
|
|
10410
|
-
recommended_action: string;
|
|
10411
|
-
|
|
10412
|
-
reviewed_by: string;
|
|
10413
|
-
|
|
10414
|
-
severity: number;
|
|
10415
|
-
|
|
10416
|
-
status: string;
|
|
10417
|
-
|
|
10418
|
-
updated_at: Date;
|
|
10419
|
-
|
|
10420
|
-
actions: ActionLog[];
|
|
10421
|
-
|
|
10422
|
-
bans: Ban[];
|
|
10423
|
-
|
|
10424
|
-
flag_labels: string[];
|
|
10425
|
-
|
|
10426
|
-
flag_types: string[];
|
|
10427
|
-
|
|
10428
|
-
flags: Flag[];
|
|
10429
|
-
|
|
10430
|
-
languages: string[];
|
|
10431
|
-
|
|
10432
|
-
reporter_ids: string[];
|
|
10433
|
-
|
|
10434
|
-
teams: string[];
|
|
10435
|
-
|
|
10436
|
-
archived_at: NullTime;
|
|
10437
|
-
|
|
10438
|
-
completed_at: NullTime;
|
|
10439
|
-
|
|
10440
|
-
reviewed_at: NullTime;
|
|
10441
|
-
|
|
10442
|
-
activity?: EnrichedActivity;
|
|
10443
|
-
|
|
10444
|
-
assigned_to?: User;
|
|
10445
|
-
|
|
10446
|
-
call?: Call;
|
|
10447
|
-
|
|
10448
|
-
entity_creator?: EntityCreator;
|
|
10449
|
-
|
|
10450
|
-
feeds_v2_activity?: EnrichedActivity;
|
|
10451
|
-
|
|
10452
|
-
feeds_v2_reaction?: Reaction;
|
|
10453
|
-
|
|
10454
|
-
message?: Message;
|
|
10455
|
-
|
|
10456
|
-
moderation_payload?: ModerationPayload;
|
|
10457
|
-
|
|
10458
|
-
reaction?: Reaction;
|
|
10459
|
-
}
|
|
10460
|
-
|
|
10461
10358
|
export interface ReviewQueueItemNewEvent {
|
|
10462
10359
|
created_at: Date;
|
|
10463
10360
|
|
|
@@ -10487,6 +10384,8 @@ export interface ReviewQueueItemResponse {
|
|
|
10487
10384
|
|
|
10488
10385
|
id: string;
|
|
10489
10386
|
|
|
10387
|
+
latest_moderator_action: string;
|
|
10388
|
+
|
|
10490
10389
|
recommended_action: string;
|
|
10491
10390
|
|
|
10492
10391
|
reviewed_by: string;
|
|
@@ -10587,7 +10486,15 @@ export interface Role {
|
|
|
10587
10486
|
}
|
|
10588
10487
|
|
|
10589
10488
|
export interface RuleBuilderAction {
|
|
10590
|
-
type
|
|
10489
|
+
type:
|
|
10490
|
+
| 'ban_user'
|
|
10491
|
+
| 'flag_user'
|
|
10492
|
+
| 'flag_content'
|
|
10493
|
+
| 'block_content'
|
|
10494
|
+
| 'shadow_content'
|
|
10495
|
+
| 'bounce_flag_content'
|
|
10496
|
+
| 'bounce_content'
|
|
10497
|
+
| 'bounce_remove_content';
|
|
10591
10498
|
|
|
10592
10499
|
ban_options?: BanOptions;
|
|
10593
10500
|
|
|
@@ -10666,58 +10573,10 @@ export interface SDKUsageReportResponse {
|
|
|
10666
10573
|
daily: DailyAggregateSDKUsageReportResponse[];
|
|
10667
10574
|
}
|
|
10668
10575
|
|
|
10669
|
-
export interface SFUIDLastSeen {
|
|
10670
|
-
id: string;
|
|
10671
|
-
|
|
10672
|
-
last_seen: Date;
|
|
10673
|
-
|
|
10674
|
-
process_start_time: number;
|
|
10675
|
-
}
|
|
10676
|
-
|
|
10677
10576
|
export interface SRTIngress {
|
|
10678
10577
|
address: string;
|
|
10679
10578
|
}
|
|
10680
10579
|
|
|
10681
|
-
export interface StoriesFeedUpdatedEvent {
|
|
10682
|
-
created_at: Date;
|
|
10683
|
-
|
|
10684
|
-
fid: string;
|
|
10685
|
-
|
|
10686
|
-
custom: Record<string, any>;
|
|
10687
|
-
|
|
10688
|
-
type: string;
|
|
10689
|
-
|
|
10690
|
-
feed_visibility?: string;
|
|
10691
|
-
|
|
10692
|
-
received_at?: Date;
|
|
10693
|
-
|
|
10694
|
-
activities?: ActivityResponse[];
|
|
10695
|
-
|
|
10696
|
-
aggregated_activities?: AggregatedActivityResponse[];
|
|
10697
|
-
|
|
10698
|
-
user?: UserResponseCommonFields;
|
|
10699
|
-
}
|
|
10700
|
-
|
|
10701
|
-
export interface STTEgressConfig {
|
|
10702
|
-
closed_captions_enabled?: boolean;
|
|
10703
|
-
|
|
10704
|
-
language?: string;
|
|
10705
|
-
|
|
10706
|
-
storage_name?: string;
|
|
10707
|
-
|
|
10708
|
-
translations_enabled?: boolean;
|
|
10709
|
-
|
|
10710
|
-
upload_transcriptions?: boolean;
|
|
10711
|
-
|
|
10712
|
-
whisper_server_base_url?: string;
|
|
10713
|
-
|
|
10714
|
-
translation_languages?: string[];
|
|
10715
|
-
|
|
10716
|
-
external_storage?: ExternalStorage;
|
|
10717
|
-
|
|
10718
|
-
speech_segment_config?: SpeechSegmentConfig;
|
|
10719
|
-
}
|
|
10720
|
-
|
|
10721
10580
|
export interface ScreensharingSettings {
|
|
10722
10581
|
access_request_enabled: boolean;
|
|
10723
10582
|
|
|
@@ -11034,7 +10893,9 @@ export interface SessionSettingsResponse {
|
|
|
11034
10893
|
inactivity_timeout_seconds: number;
|
|
11035
10894
|
}
|
|
11036
10895
|
|
|
11037
|
-
export interface ShadowBlockActionRequest {
|
|
10896
|
+
export interface ShadowBlockActionRequest {
|
|
10897
|
+
reason?: string;
|
|
10898
|
+
}
|
|
11038
10899
|
|
|
11039
10900
|
export interface SharedLocation {
|
|
11040
10901
|
channel_cid: string;
|
|
@@ -11368,6 +11229,26 @@ export interface StoriesConfig {
|
|
|
11368
11229
|
track_watched?: boolean;
|
|
11369
11230
|
}
|
|
11370
11231
|
|
|
11232
|
+
export interface StoriesFeedUpdatedEvent {
|
|
11233
|
+
created_at: Date;
|
|
11234
|
+
|
|
11235
|
+
fid: string;
|
|
11236
|
+
|
|
11237
|
+
custom: Record<string, any>;
|
|
11238
|
+
|
|
11239
|
+
type: string;
|
|
11240
|
+
|
|
11241
|
+
feed_visibility?: string;
|
|
11242
|
+
|
|
11243
|
+
received_at?: Date;
|
|
11244
|
+
|
|
11245
|
+
activities?: ActivityResponse[];
|
|
11246
|
+
|
|
11247
|
+
aggregated_activities?: AggregatedActivityResponse[];
|
|
11248
|
+
|
|
11249
|
+
user?: UserResponseCommonFields;
|
|
11250
|
+
}
|
|
11251
|
+
|
|
11371
11252
|
export interface SubmitActionRequest {
|
|
11372
11253
|
action_type:
|
|
11373
11254
|
| 'mark_reviewed'
|
|
@@ -11403,6 +11284,8 @@ export interface SubmitActionRequest {
|
|
|
11403
11284
|
|
|
11404
11285
|
mark_reviewed?: MarkReviewedRequest;
|
|
11405
11286
|
|
|
11287
|
+
shadow_block?: ShadowBlockActionRequest;
|
|
11288
|
+
|
|
11406
11289
|
unban?: UnbanActionRequest;
|
|
11407
11290
|
|
|
11408
11291
|
user?: UserRequest;
|
|
@@ -12229,6 +12112,10 @@ export interface UpdateAppRequest {
|
|
|
12229
12112
|
}
|
|
12230
12113
|
|
|
12231
12114
|
export interface UpdateBlockListRequest {
|
|
12115
|
+
is_leet_check_enabled?: boolean;
|
|
12116
|
+
|
|
12117
|
+
is_plural_check_enabled?: boolean;
|
|
12118
|
+
|
|
12232
12119
|
team?: string;
|
|
12233
12120
|
|
|
12234
12121
|
words?: string[];
|
|
@@ -12411,6 +12298,8 @@ export interface UpdateChannelTypeRequest {
|
|
|
12411
12298
|
|
|
12412
12299
|
custom_events?: boolean;
|
|
12413
12300
|
|
|
12301
|
+
delivery_events?: boolean;
|
|
12302
|
+
|
|
12414
12303
|
mark_messages_pending?: boolean;
|
|
12415
12304
|
|
|
12416
12305
|
mutes?: boolean;
|
|
@@ -12473,6 +12362,8 @@ export interface UpdateChannelTypeResponse {
|
|
|
12473
12362
|
|
|
12474
12363
|
custom_events: boolean;
|
|
12475
12364
|
|
|
12365
|
+
delivery_events: boolean;
|
|
12366
|
+
|
|
12476
12367
|
duration: string;
|
|
12477
12368
|
|
|
12478
12369
|
mark_messages_pending: boolean;
|
|
@@ -12589,6 +12480,13 @@ export interface UpdateExternalStorageResponse {
|
|
|
12589
12480
|
}
|
|
12590
12481
|
|
|
12591
12482
|
export interface UpdateFeedGroupRequest {
|
|
12483
|
+
default_visibility?:
|
|
12484
|
+
| 'public'
|
|
12485
|
+
| 'visible'
|
|
12486
|
+
| 'followers'
|
|
12487
|
+
| 'members'
|
|
12488
|
+
| 'private';
|
|
12489
|
+
|
|
12592
12490
|
activity_processors?: ActivityProcessorConfig[];
|
|
12593
12491
|
|
|
12594
12492
|
activity_selectors?: ActivitySelectorConfig[];
|
|
@@ -12898,6 +12796,42 @@ export interface UpdatedCallPermissionsEvent {
|
|
|
12898
12796
|
type: string;
|
|
12899
12797
|
}
|
|
12900
12798
|
|
|
12799
|
+
export interface UploadChannelFileRequest {
|
|
12800
|
+
file?: string;
|
|
12801
|
+
|
|
12802
|
+
user?: OnlyUserID;
|
|
12803
|
+
}
|
|
12804
|
+
|
|
12805
|
+
export interface UploadChannelFileResponse {
|
|
12806
|
+
duration: string;
|
|
12807
|
+
|
|
12808
|
+
file?: string;
|
|
12809
|
+
|
|
12810
|
+
moderation_action?: string;
|
|
12811
|
+
|
|
12812
|
+
thumb_url?: string;
|
|
12813
|
+
}
|
|
12814
|
+
|
|
12815
|
+
export interface UploadChannelRequest {
|
|
12816
|
+
file?: string;
|
|
12817
|
+
|
|
12818
|
+
upload_sizes?: ImageSize[];
|
|
12819
|
+
|
|
12820
|
+
user?: OnlyUserID;
|
|
12821
|
+
}
|
|
12822
|
+
|
|
12823
|
+
export interface UploadChannelResponse {
|
|
12824
|
+
duration: string;
|
|
12825
|
+
|
|
12826
|
+
file?: string;
|
|
12827
|
+
|
|
12828
|
+
moderation_action?: string;
|
|
12829
|
+
|
|
12830
|
+
thumb_url?: string;
|
|
12831
|
+
|
|
12832
|
+
upload_sizes?: ImageSize[];
|
|
12833
|
+
}
|
|
12834
|
+
|
|
12901
12835
|
export interface UpsertActivitiesRequest {
|
|
12902
12836
|
activities: ActivityRequest[];
|
|
12903
12837
|
}
|
|
@@ -13549,10 +13483,6 @@ export interface VideoEndCallRequest {}
|
|
|
13549
13483
|
|
|
13550
13484
|
export interface VideoKickUserRequest {}
|
|
13551
13485
|
|
|
13552
|
-
export interface VideoOrientation {
|
|
13553
|
-
orientation?: number;
|
|
13554
|
-
}
|
|
13555
|
-
|
|
13556
13486
|
export interface VideoReactionOverTimeResponse {
|
|
13557
13487
|
by_minute?: CountByMinuteResponse[];
|
|
13558
13488
|
}
|