@stream-io/video-client 1.23.5 → 1.24.0
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/CHANGELOG.md +11 -0
- package/dist/index.browser.es.js +130 -12
- package/dist/index.browser.es.js.map +1 -1
- package/dist/index.cjs.js +131 -11
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.es.js +130 -12
- package/dist/index.es.js.map +1 -1
- package/dist/src/Call.d.ts +9 -2
- package/dist/src/gen/coordinator/index.d.ts +407 -117
- package/dist/src/gen/shims.d.ts +4 -2
- package/dist/src/stats/types.d.ts +25 -0
- package/dist/src/store/CallState.d.ts +5 -0
- package/package.json +1 -1
- package/src/Call.ts +20 -7
- package/src/gen/coordinator/index.ts +398 -117
- package/src/gen/shims.ts +1 -3
- package/src/stats/CallStateStatsReporter.ts +7 -3
- package/src/stats/types.ts +25 -0
- package/src/store/CallState.ts +11 -0
|
@@ -621,6 +621,12 @@ export interface CallEndedEvent {
|
|
|
621
621
|
* @memberof CallEndedEvent
|
|
622
622
|
*/
|
|
623
623
|
created_at: string;
|
|
624
|
+
/**
|
|
625
|
+
* The reason why the call ended, if available
|
|
626
|
+
* @type {string}
|
|
627
|
+
* @memberof CallEndedEvent
|
|
628
|
+
*/
|
|
629
|
+
reason?: string;
|
|
624
630
|
/**
|
|
625
631
|
* The type of event: "call.ended" in this case
|
|
626
632
|
* @type {string}
|
|
@@ -1150,6 +1156,90 @@ export interface CallMissedEvent {
|
|
|
1150
1156
|
*/
|
|
1151
1157
|
user: UserResponse;
|
|
1152
1158
|
}
|
|
1159
|
+
/**
|
|
1160
|
+
*
|
|
1161
|
+
* @export
|
|
1162
|
+
* @interface CallModerationBlurEvent
|
|
1163
|
+
*/
|
|
1164
|
+
export interface CallModerationBlurEvent {
|
|
1165
|
+
/**
|
|
1166
|
+
*
|
|
1167
|
+
* @type {string}
|
|
1168
|
+
* @memberof CallModerationBlurEvent
|
|
1169
|
+
*/
|
|
1170
|
+
call_cid: string;
|
|
1171
|
+
/**
|
|
1172
|
+
*
|
|
1173
|
+
* @type {string}
|
|
1174
|
+
* @memberof CallModerationBlurEvent
|
|
1175
|
+
*/
|
|
1176
|
+
created_at: string;
|
|
1177
|
+
/**
|
|
1178
|
+
*
|
|
1179
|
+
* @type {{ [key: string]: any; }}
|
|
1180
|
+
* @memberof CallModerationBlurEvent
|
|
1181
|
+
*/
|
|
1182
|
+
custom: {
|
|
1183
|
+
[key: string]: any;
|
|
1184
|
+
};
|
|
1185
|
+
/**
|
|
1186
|
+
*
|
|
1187
|
+
* @type {string}
|
|
1188
|
+
* @memberof CallModerationBlurEvent
|
|
1189
|
+
*/
|
|
1190
|
+
type: string;
|
|
1191
|
+
/**
|
|
1192
|
+
*
|
|
1193
|
+
* @type {string}
|
|
1194
|
+
* @memberof CallModerationBlurEvent
|
|
1195
|
+
*/
|
|
1196
|
+
user_id: string;
|
|
1197
|
+
}
|
|
1198
|
+
/**
|
|
1199
|
+
*
|
|
1200
|
+
* @export
|
|
1201
|
+
* @interface CallModerationWarningEvent
|
|
1202
|
+
*/
|
|
1203
|
+
export interface CallModerationWarningEvent {
|
|
1204
|
+
/**
|
|
1205
|
+
*
|
|
1206
|
+
* @type {string}
|
|
1207
|
+
* @memberof CallModerationWarningEvent
|
|
1208
|
+
*/
|
|
1209
|
+
call_cid: string;
|
|
1210
|
+
/**
|
|
1211
|
+
*
|
|
1212
|
+
* @type {string}
|
|
1213
|
+
* @memberof CallModerationWarningEvent
|
|
1214
|
+
*/
|
|
1215
|
+
created_at: string;
|
|
1216
|
+
/**
|
|
1217
|
+
*
|
|
1218
|
+
* @type {{ [key: string]: any; }}
|
|
1219
|
+
* @memberof CallModerationWarningEvent
|
|
1220
|
+
*/
|
|
1221
|
+
custom: {
|
|
1222
|
+
[key: string]: any;
|
|
1223
|
+
};
|
|
1224
|
+
/**
|
|
1225
|
+
*
|
|
1226
|
+
* @type {string}
|
|
1227
|
+
* @memberof CallModerationWarningEvent
|
|
1228
|
+
*/
|
|
1229
|
+
message: string;
|
|
1230
|
+
/**
|
|
1231
|
+
*
|
|
1232
|
+
* @type {string}
|
|
1233
|
+
* @memberof CallModerationWarningEvent
|
|
1234
|
+
*/
|
|
1235
|
+
type: string;
|
|
1236
|
+
/**
|
|
1237
|
+
*
|
|
1238
|
+
* @type {string}
|
|
1239
|
+
* @memberof CallModerationWarningEvent
|
|
1240
|
+
*/
|
|
1241
|
+
user_id: string;
|
|
1242
|
+
}
|
|
1153
1243
|
/**
|
|
1154
1244
|
* This event is sent to all call members to notify they are getting called
|
|
1155
1245
|
* @export
|
|
@@ -2343,6 +2433,37 @@ export interface CallStateResponseFields {
|
|
|
2343
2433
|
*/
|
|
2344
2434
|
own_capabilities: Array<OwnCapability>;
|
|
2345
2435
|
}
|
|
2436
|
+
/**
|
|
2437
|
+
* This event is sent when the insights report is ready
|
|
2438
|
+
* @export
|
|
2439
|
+
* @interface CallStatsReportReadyEvent
|
|
2440
|
+
*/
|
|
2441
|
+
export interface CallStatsReportReadyEvent {
|
|
2442
|
+
/**
|
|
2443
|
+
*
|
|
2444
|
+
* @type {string}
|
|
2445
|
+
* @memberof CallStatsReportReadyEvent
|
|
2446
|
+
*/
|
|
2447
|
+
call_cid: string;
|
|
2448
|
+
/**
|
|
2449
|
+
*
|
|
2450
|
+
* @type {string}
|
|
2451
|
+
* @memberof CallStatsReportReadyEvent
|
|
2452
|
+
*/
|
|
2453
|
+
created_at: string;
|
|
2454
|
+
/**
|
|
2455
|
+
* Call session ID
|
|
2456
|
+
* @type {string}
|
|
2457
|
+
* @memberof CallStatsReportReadyEvent
|
|
2458
|
+
*/
|
|
2459
|
+
session_id: string;
|
|
2460
|
+
/**
|
|
2461
|
+
* The type of event, "call.report_ready" in this case
|
|
2462
|
+
* @type {string}
|
|
2463
|
+
* @memberof CallStatsReportReadyEvent
|
|
2464
|
+
*/
|
|
2465
|
+
type: string;
|
|
2466
|
+
}
|
|
2346
2467
|
/**
|
|
2347
2468
|
*
|
|
2348
2469
|
* @export
|
|
@@ -2416,6 +2537,12 @@ export interface CallTranscription {
|
|
|
2416
2537
|
* @memberof CallTranscription
|
|
2417
2538
|
*/
|
|
2418
2539
|
filename: string;
|
|
2540
|
+
/**
|
|
2541
|
+
*
|
|
2542
|
+
* @type {string}
|
|
2543
|
+
* @memberof CallTranscription
|
|
2544
|
+
*/
|
|
2545
|
+
session_id: string;
|
|
2419
2546
|
/**
|
|
2420
2547
|
*
|
|
2421
2548
|
* @type {string}
|
|
@@ -2453,6 +2580,12 @@ export interface CallTranscriptionFailedEvent {
|
|
|
2453
2580
|
* @memberof CallTranscriptionFailedEvent
|
|
2454
2581
|
*/
|
|
2455
2582
|
egress_id: string;
|
|
2583
|
+
/**
|
|
2584
|
+
* The error message detailing why transcription failed.
|
|
2585
|
+
* @type {string}
|
|
2586
|
+
* @memberof CallTranscriptionFailedEvent
|
|
2587
|
+
*/
|
|
2588
|
+
error?: string;
|
|
2456
2589
|
/**
|
|
2457
2590
|
* The type of event: "call.transcription_failed" in this case
|
|
2458
2591
|
* @type {string}
|
|
@@ -3553,72 +3686,78 @@ export interface GeofenceSettingsResponse {
|
|
|
3553
3686
|
names: Array<string>;
|
|
3554
3687
|
}
|
|
3555
3688
|
/**
|
|
3556
|
-
*
|
|
3689
|
+
* Basic response information
|
|
3557
3690
|
* @export
|
|
3558
|
-
* @interface
|
|
3691
|
+
* @interface GetCallReportResponse
|
|
3559
3692
|
*/
|
|
3560
|
-
export interface
|
|
3693
|
+
export interface GetCallReportResponse {
|
|
3561
3694
|
/**
|
|
3562
3695
|
*
|
|
3563
|
-
* @type {
|
|
3564
|
-
* @memberof
|
|
3696
|
+
* @type {ChatActivityStatsResponse}
|
|
3697
|
+
* @memberof GetCallReportResponse
|
|
3565
3698
|
*/
|
|
3566
|
-
|
|
3699
|
+
chat_activity?: ChatActivityStatsResponse;
|
|
3567
3700
|
/**
|
|
3568
|
-
*
|
|
3701
|
+
* Duration of the request in milliseconds
|
|
3569
3702
|
* @type {string}
|
|
3570
|
-
* @memberof
|
|
3703
|
+
* @memberof GetCallReportResponse
|
|
3571
3704
|
*/
|
|
3572
3705
|
duration: string;
|
|
3573
3706
|
/**
|
|
3574
3707
|
*
|
|
3575
|
-
* @type {
|
|
3576
|
-
* @memberof
|
|
3708
|
+
* @type {ReportResponse}
|
|
3709
|
+
* @memberof GetCallReportResponse
|
|
3577
3710
|
*/
|
|
3578
|
-
|
|
3711
|
+
report: ReportResponse;
|
|
3579
3712
|
/**
|
|
3580
3713
|
*
|
|
3581
|
-
* @type {
|
|
3582
|
-
* @memberof
|
|
3714
|
+
* @type {string}
|
|
3715
|
+
* @memberof GetCallReportResponse
|
|
3583
3716
|
*/
|
|
3584
|
-
|
|
3717
|
+
session_id: string;
|
|
3585
3718
|
/**
|
|
3586
3719
|
*
|
|
3587
|
-
* @type {Array<
|
|
3588
|
-
* @memberof
|
|
3720
|
+
* @type {Array<VideoReactionsResponse>}
|
|
3721
|
+
* @memberof GetCallReportResponse
|
|
3589
3722
|
*/
|
|
3590
|
-
|
|
3723
|
+
video_reactions?: Array<VideoReactionsResponse>;
|
|
3591
3724
|
}
|
|
3592
3725
|
/**
|
|
3593
|
-
*
|
|
3726
|
+
*
|
|
3594
3727
|
* @export
|
|
3595
|
-
* @interface
|
|
3728
|
+
* @interface GetCallResponse
|
|
3596
3729
|
*/
|
|
3597
|
-
export interface
|
|
3730
|
+
export interface GetCallResponse {
|
|
3598
3731
|
/**
|
|
3599
3732
|
*
|
|
3600
|
-
* @type {
|
|
3601
|
-
* @memberof
|
|
3733
|
+
* @type {CallResponse}
|
|
3734
|
+
* @memberof GetCallResponse
|
|
3602
3735
|
*/
|
|
3603
|
-
|
|
3736
|
+
call: CallResponse;
|
|
3604
3737
|
/**
|
|
3605
|
-
*
|
|
3738
|
+
*
|
|
3606
3739
|
* @type {string}
|
|
3607
|
-
* @memberof
|
|
3740
|
+
* @memberof GetCallResponse
|
|
3608
3741
|
*/
|
|
3609
3742
|
duration: string;
|
|
3610
3743
|
/**
|
|
3611
3744
|
*
|
|
3612
|
-
* @type {
|
|
3613
|
-
* @memberof
|
|
3745
|
+
* @type {Array<MemberResponse>}
|
|
3746
|
+
* @memberof GetCallResponse
|
|
3614
3747
|
*/
|
|
3615
|
-
|
|
3748
|
+
members: Array<MemberResponse>;
|
|
3616
3749
|
/**
|
|
3617
3750
|
*
|
|
3618
|
-
* @type {
|
|
3619
|
-
* @memberof
|
|
3751
|
+
* @type {MemberResponse}
|
|
3752
|
+
* @memberof GetCallResponse
|
|
3620
3753
|
*/
|
|
3621
|
-
|
|
3754
|
+
membership?: MemberResponse;
|
|
3755
|
+
/**
|
|
3756
|
+
*
|
|
3757
|
+
* @type {Array<OwnCapability>}
|
|
3758
|
+
* @memberof GetCallResponse
|
|
3759
|
+
*/
|
|
3760
|
+
own_capabilities: Array<OwnCapability>;
|
|
3622
3761
|
}
|
|
3623
3762
|
/**
|
|
3624
3763
|
* Basic response information
|
|
@@ -3749,12 +3888,6 @@ export interface GoLiveRequest {
|
|
|
3749
3888
|
* @memberof GoLiveRequest
|
|
3750
3889
|
*/
|
|
3751
3890
|
start_recording?: boolean;
|
|
3752
|
-
/**
|
|
3753
|
-
*
|
|
3754
|
-
* @type {boolean}
|
|
3755
|
-
* @memberof GoLiveRequest
|
|
3756
|
-
*/
|
|
3757
|
-
start_rtmp_broadcasts?: boolean;
|
|
3758
3891
|
/**
|
|
3759
3892
|
*
|
|
3760
3893
|
* @type {boolean}
|
|
@@ -4181,31 +4314,6 @@ export interface ListTranscriptionsResponse {
|
|
|
4181
4314
|
*/
|
|
4182
4315
|
transcriptions: Array<CallTranscription>;
|
|
4183
4316
|
}
|
|
4184
|
-
/**
|
|
4185
|
-
*
|
|
4186
|
-
* @export
|
|
4187
|
-
* @interface Location
|
|
4188
|
-
*/
|
|
4189
|
-
export interface Location {
|
|
4190
|
-
/**
|
|
4191
|
-
*
|
|
4192
|
-
* @type {string}
|
|
4193
|
-
* @memberof Location
|
|
4194
|
-
*/
|
|
4195
|
-
continent_code: string;
|
|
4196
|
-
/**
|
|
4197
|
-
*
|
|
4198
|
-
* @type {string}
|
|
4199
|
-
* @memberof Location
|
|
4200
|
-
*/
|
|
4201
|
-
country_iso_code: string;
|
|
4202
|
-
/**
|
|
4203
|
-
*
|
|
4204
|
-
* @type {string}
|
|
4205
|
-
* @memberof Location
|
|
4206
|
-
*/
|
|
4207
|
-
subdivision_iso_code: string;
|
|
4208
|
-
}
|
|
4209
4317
|
/**
|
|
4210
4318
|
* MemberRequest is the payload for adding a member to a call.
|
|
4211
4319
|
* @export
|
|
@@ -4547,6 +4655,14 @@ export interface OwnUserResponse {
|
|
|
4547
4655
|
* @memberof OwnUserResponse
|
|
4548
4656
|
*/
|
|
4549
4657
|
teams: Array<string>;
|
|
4658
|
+
/**
|
|
4659
|
+
*
|
|
4660
|
+
* @type {{ [key: string]: string; }}
|
|
4661
|
+
* @memberof OwnUserResponse
|
|
4662
|
+
*/
|
|
4663
|
+
teams_role?: {
|
|
4664
|
+
[key: string]: string;
|
|
4665
|
+
};
|
|
4550
4666
|
/**
|
|
4551
4667
|
*
|
|
4552
4668
|
* @type {string}
|
|
@@ -5000,6 +5116,70 @@ export interface QueryCallMembersResponse {
|
|
|
5000
5116
|
*/
|
|
5001
5117
|
prev?: string;
|
|
5002
5118
|
}
|
|
5119
|
+
/**
|
|
5120
|
+
*
|
|
5121
|
+
* @export
|
|
5122
|
+
* @interface QueryCallParticipantsRequest
|
|
5123
|
+
*/
|
|
5124
|
+
export interface QueryCallParticipantsRequest {
|
|
5125
|
+
/**
|
|
5126
|
+
*
|
|
5127
|
+
* @type {{ [key: string]: any; }}
|
|
5128
|
+
* @memberof QueryCallParticipantsRequest
|
|
5129
|
+
*/
|
|
5130
|
+
filter_conditions?: {
|
|
5131
|
+
[key: string]: any;
|
|
5132
|
+
};
|
|
5133
|
+
}
|
|
5134
|
+
/**
|
|
5135
|
+
*
|
|
5136
|
+
* @export
|
|
5137
|
+
* @interface QueryCallParticipantsResponse
|
|
5138
|
+
*/
|
|
5139
|
+
export interface QueryCallParticipantsResponse {
|
|
5140
|
+
/**
|
|
5141
|
+
*
|
|
5142
|
+
* @type {CallResponse}
|
|
5143
|
+
* @memberof QueryCallParticipantsResponse
|
|
5144
|
+
*/
|
|
5145
|
+
call: CallResponse;
|
|
5146
|
+
/**
|
|
5147
|
+
*
|
|
5148
|
+
* @type {string}
|
|
5149
|
+
* @memberof QueryCallParticipantsResponse
|
|
5150
|
+
*/
|
|
5151
|
+
duration: string;
|
|
5152
|
+
/**
|
|
5153
|
+
*
|
|
5154
|
+
* @type {Array<MemberResponse>}
|
|
5155
|
+
* @memberof QueryCallParticipantsResponse
|
|
5156
|
+
*/
|
|
5157
|
+
members: Array<MemberResponse>;
|
|
5158
|
+
/**
|
|
5159
|
+
*
|
|
5160
|
+
* @type {MemberResponse}
|
|
5161
|
+
* @memberof QueryCallParticipantsResponse
|
|
5162
|
+
*/
|
|
5163
|
+
membership?: MemberResponse;
|
|
5164
|
+
/**
|
|
5165
|
+
*
|
|
5166
|
+
* @type {Array<OwnCapability>}
|
|
5167
|
+
* @memberof QueryCallParticipantsResponse
|
|
5168
|
+
*/
|
|
5169
|
+
own_capabilities: Array<OwnCapability>;
|
|
5170
|
+
/**
|
|
5171
|
+
* List of call participants
|
|
5172
|
+
* @type {Array<CallParticipantResponse>}
|
|
5173
|
+
* @memberof QueryCallParticipantsResponse
|
|
5174
|
+
*/
|
|
5175
|
+
participants: Array<CallParticipantResponse>;
|
|
5176
|
+
/**
|
|
5177
|
+
*
|
|
5178
|
+
* @type {number}
|
|
5179
|
+
* @memberof QueryCallParticipantsResponse
|
|
5180
|
+
*/
|
|
5181
|
+
total_participants: number;
|
|
5182
|
+
}
|
|
5003
5183
|
/**
|
|
5004
5184
|
*
|
|
5005
5185
|
* @export
|
|
@@ -5146,31 +5326,6 @@ export interface QueryCallsResponse {
|
|
|
5146
5326
|
*/
|
|
5147
5327
|
prev?: string;
|
|
5148
5328
|
}
|
|
5149
|
-
/**
|
|
5150
|
-
*
|
|
5151
|
-
* @export
|
|
5152
|
-
* @interface ReportResponse
|
|
5153
|
-
*/
|
|
5154
|
-
export interface ReportResponse {
|
|
5155
|
-
/**
|
|
5156
|
-
*
|
|
5157
|
-
* @type {CallReportResponse}
|
|
5158
|
-
* @memberof ReportResponse
|
|
5159
|
-
*/
|
|
5160
|
-
call: CallReportResponse;
|
|
5161
|
-
/**
|
|
5162
|
-
*
|
|
5163
|
-
* @type {ParticipantReportResponse}
|
|
5164
|
-
* @memberof ReportResponse
|
|
5165
|
-
*/
|
|
5166
|
-
participants: ParticipantReportResponse;
|
|
5167
|
-
/**
|
|
5168
|
-
*
|
|
5169
|
-
* @type {UserRatingReportResponse}
|
|
5170
|
-
* @memberof ReportResponse
|
|
5171
|
-
*/
|
|
5172
|
-
user_ratings: UserRatingReportResponse;
|
|
5173
|
-
}
|
|
5174
5329
|
/**
|
|
5175
5330
|
* RTMPBroadcastRequest is the payload for starting an RTMP broadcast.
|
|
5176
5331
|
* @export
|
|
@@ -5468,6 +5623,31 @@ export interface ReportByHistogramBucket {
|
|
|
5468
5623
|
*/
|
|
5469
5624
|
upper_bound?: Bound;
|
|
5470
5625
|
}
|
|
5626
|
+
/**
|
|
5627
|
+
*
|
|
5628
|
+
* @export
|
|
5629
|
+
* @interface ReportResponse
|
|
5630
|
+
*/
|
|
5631
|
+
export interface ReportResponse {
|
|
5632
|
+
/**
|
|
5633
|
+
*
|
|
5634
|
+
* @type {CallReportResponse}
|
|
5635
|
+
* @memberof ReportResponse
|
|
5636
|
+
*/
|
|
5637
|
+
call: CallReportResponse;
|
|
5638
|
+
/**
|
|
5639
|
+
*
|
|
5640
|
+
* @type {ParticipantReportResponse}
|
|
5641
|
+
* @memberof ReportResponse
|
|
5642
|
+
*/
|
|
5643
|
+
participants: ParticipantReportResponse;
|
|
5644
|
+
/**
|
|
5645
|
+
*
|
|
5646
|
+
* @type {UserRatingReportResponse}
|
|
5647
|
+
* @memberof ReportResponse
|
|
5648
|
+
*/
|
|
5649
|
+
user_ratings: UserRatingReportResponse;
|
|
5650
|
+
}
|
|
5471
5651
|
/**
|
|
5472
5652
|
*
|
|
5473
5653
|
* @export
|
|
@@ -5802,8 +5982,51 @@ export interface StartClosedCaptionsRequest {
|
|
|
5802
5982
|
* @type {string}
|
|
5803
5983
|
* @memberof StartClosedCaptionsRequest
|
|
5804
5984
|
*/
|
|
5805
|
-
language?:
|
|
5985
|
+
language?: StartClosedCaptionsRequestLanguageEnum;
|
|
5806
5986
|
}
|
|
5987
|
+
/**
|
|
5988
|
+
* @export
|
|
5989
|
+
*/
|
|
5990
|
+
export declare const StartClosedCaptionsRequestLanguageEnum: {
|
|
5991
|
+
readonly AUTO: "auto";
|
|
5992
|
+
readonly EN: "en";
|
|
5993
|
+
readonly FR: "fr";
|
|
5994
|
+
readonly ES: "es";
|
|
5995
|
+
readonly DE: "de";
|
|
5996
|
+
readonly IT: "it";
|
|
5997
|
+
readonly NL: "nl";
|
|
5998
|
+
readonly PT: "pt";
|
|
5999
|
+
readonly PL: "pl";
|
|
6000
|
+
readonly CA: "ca";
|
|
6001
|
+
readonly CS: "cs";
|
|
6002
|
+
readonly DA: "da";
|
|
6003
|
+
readonly EL: "el";
|
|
6004
|
+
readonly FI: "fi";
|
|
6005
|
+
readonly ID: "id";
|
|
6006
|
+
readonly JA: "ja";
|
|
6007
|
+
readonly RU: "ru";
|
|
6008
|
+
readonly SV: "sv";
|
|
6009
|
+
readonly TA: "ta";
|
|
6010
|
+
readonly TH: "th";
|
|
6011
|
+
readonly TR: "tr";
|
|
6012
|
+
readonly HU: "hu";
|
|
6013
|
+
readonly RO: "ro";
|
|
6014
|
+
readonly ZH: "zh";
|
|
6015
|
+
readonly AR: "ar";
|
|
6016
|
+
readonly TL: "tl";
|
|
6017
|
+
readonly HE: "he";
|
|
6018
|
+
readonly HI: "hi";
|
|
6019
|
+
readonly HR: "hr";
|
|
6020
|
+
readonly KO: "ko";
|
|
6021
|
+
readonly MS: "ms";
|
|
6022
|
+
readonly NO: "no";
|
|
6023
|
+
readonly UK: "uk";
|
|
6024
|
+
readonly BG: "bg";
|
|
6025
|
+
readonly ET: "et";
|
|
6026
|
+
readonly SL: "sl";
|
|
6027
|
+
readonly SK: "sk";
|
|
6028
|
+
};
|
|
6029
|
+
export type StartClosedCaptionsRequestLanguageEnum = (typeof StartClosedCaptionsRequestLanguageEnum)[keyof typeof StartClosedCaptionsRequestLanguageEnum];
|
|
5807
6030
|
/**
|
|
5808
6031
|
*
|
|
5809
6032
|
* @export
|
|
@@ -5931,7 +6154,7 @@ export interface StartTranscriptionRequest {
|
|
|
5931
6154
|
* @type {string}
|
|
5932
6155
|
* @memberof StartTranscriptionRequest
|
|
5933
6156
|
*/
|
|
5934
|
-
language?:
|
|
6157
|
+
language?: StartTranscriptionRequestLanguageEnum;
|
|
5935
6158
|
/**
|
|
5936
6159
|
* Store transcriptions in this external storage
|
|
5937
6160
|
* @type {string}
|
|
@@ -5939,6 +6162,49 @@ export interface StartTranscriptionRequest {
|
|
|
5939
6162
|
*/
|
|
5940
6163
|
transcription_external_storage?: string;
|
|
5941
6164
|
}
|
|
6165
|
+
/**
|
|
6166
|
+
* @export
|
|
6167
|
+
*/
|
|
6168
|
+
export declare const StartTranscriptionRequestLanguageEnum: {
|
|
6169
|
+
readonly AUTO: "auto";
|
|
6170
|
+
readonly EN: "en";
|
|
6171
|
+
readonly FR: "fr";
|
|
6172
|
+
readonly ES: "es";
|
|
6173
|
+
readonly DE: "de";
|
|
6174
|
+
readonly IT: "it";
|
|
6175
|
+
readonly NL: "nl";
|
|
6176
|
+
readonly PT: "pt";
|
|
6177
|
+
readonly PL: "pl";
|
|
6178
|
+
readonly CA: "ca";
|
|
6179
|
+
readonly CS: "cs";
|
|
6180
|
+
readonly DA: "da";
|
|
6181
|
+
readonly EL: "el";
|
|
6182
|
+
readonly FI: "fi";
|
|
6183
|
+
readonly ID: "id";
|
|
6184
|
+
readonly JA: "ja";
|
|
6185
|
+
readonly RU: "ru";
|
|
6186
|
+
readonly SV: "sv";
|
|
6187
|
+
readonly TA: "ta";
|
|
6188
|
+
readonly TH: "th";
|
|
6189
|
+
readonly TR: "tr";
|
|
6190
|
+
readonly HU: "hu";
|
|
6191
|
+
readonly RO: "ro";
|
|
6192
|
+
readonly ZH: "zh";
|
|
6193
|
+
readonly AR: "ar";
|
|
6194
|
+
readonly TL: "tl";
|
|
6195
|
+
readonly HE: "he";
|
|
6196
|
+
readonly HI: "hi";
|
|
6197
|
+
readonly HR: "hr";
|
|
6198
|
+
readonly KO: "ko";
|
|
6199
|
+
readonly MS: "ms";
|
|
6200
|
+
readonly NO: "no";
|
|
6201
|
+
readonly UK: "uk";
|
|
6202
|
+
readonly BG: "bg";
|
|
6203
|
+
readonly ET: "et";
|
|
6204
|
+
readonly SL: "sl";
|
|
6205
|
+
readonly SK: "sk";
|
|
6206
|
+
};
|
|
6207
|
+
export type StartTranscriptionRequestLanguageEnum = (typeof StartTranscriptionRequestLanguageEnum)[keyof typeof StartTranscriptionRequestLanguageEnum];
|
|
5942
6208
|
/**
|
|
5943
6209
|
*
|
|
5944
6210
|
* @export
|
|
@@ -6323,6 +6589,10 @@ export declare const TranscriptionSettingsRequestLanguageEnum: {
|
|
|
6323
6589
|
readonly MS: "ms";
|
|
6324
6590
|
readonly NO: "no";
|
|
6325
6591
|
readonly UK: "uk";
|
|
6592
|
+
readonly BG: "bg";
|
|
6593
|
+
readonly ET: "et";
|
|
6594
|
+
readonly SL: "sl";
|
|
6595
|
+
readonly SK: "sk";
|
|
6326
6596
|
};
|
|
6327
6597
|
export type TranscriptionSettingsRequestLanguageEnum = (typeof TranscriptionSettingsRequestLanguageEnum)[keyof typeof TranscriptionSettingsRequestLanguageEnum];
|
|
6328
6598
|
/**
|
|
@@ -6405,6 +6675,10 @@ export declare const TranscriptionSettingsResponseLanguageEnum: {
|
|
|
6405
6675
|
readonly MS: "ms";
|
|
6406
6676
|
readonly NO: "no";
|
|
6407
6677
|
readonly UK: "uk";
|
|
6678
|
+
readonly BG: "bg";
|
|
6679
|
+
readonly ET: "et";
|
|
6680
|
+
readonly SL: "sl";
|
|
6681
|
+
readonly SK: "sk";
|
|
6408
6682
|
};
|
|
6409
6683
|
export type TranscriptionSettingsResponseLanguageEnum = (typeof TranscriptionSettingsResponseLanguageEnum)[keyof typeof TranscriptionSettingsResponseLanguageEnum];
|
|
6410
6684
|
/**
|
|
@@ -6743,7 +7017,7 @@ export interface UserRatingReportResponse {
|
|
|
6743
7017
|
*/
|
|
6744
7018
|
export interface UserRequest {
|
|
6745
7019
|
/**
|
|
6746
|
-
*
|
|
7020
|
+
* Custom user data
|
|
6747
7021
|
* @type {{ [key: string]: any; }}
|
|
6748
7022
|
* @memberof UserRequest
|
|
6749
7023
|
*/
|
|
@@ -6757,7 +7031,7 @@ export interface UserRequest {
|
|
|
6757
7031
|
*/
|
|
6758
7032
|
id: string;
|
|
6759
7033
|
/**
|
|
6760
|
-
*
|
|
7034
|
+
* User's profile image URL
|
|
6761
7035
|
* @type {string}
|
|
6762
7036
|
* @memberof UserRequest
|
|
6763
7037
|
*/
|
|
@@ -6873,6 +7147,14 @@ export interface UserResponse {
|
|
|
6873
7147
|
* @memberof UserResponse
|
|
6874
7148
|
*/
|
|
6875
7149
|
teams: Array<string>;
|
|
7150
|
+
/**
|
|
7151
|
+
*
|
|
7152
|
+
* @type {{ [key: string]: string; }}
|
|
7153
|
+
* @memberof UserResponse
|
|
7154
|
+
*/
|
|
7155
|
+
teams_role?: {
|
|
7156
|
+
[key: string]: string;
|
|
7157
|
+
};
|
|
6876
7158
|
/**
|
|
6877
7159
|
* Date/time of the last update
|
|
6878
7160
|
* @type {string}
|
|
@@ -6978,6 +7260,14 @@ export interface UserResponsePrivacyFields {
|
|
|
6978
7260
|
* @memberof UserResponsePrivacyFields
|
|
6979
7261
|
*/
|
|
6980
7262
|
teams: Array<string>;
|
|
7263
|
+
/**
|
|
7264
|
+
*
|
|
7265
|
+
* @type {{ [key: string]: string; }}
|
|
7266
|
+
* @memberof UserResponsePrivacyFields
|
|
7267
|
+
*/
|
|
7268
|
+
teams_role?: {
|
|
7269
|
+
[key: string]: string;
|
|
7270
|
+
};
|
|
6981
7271
|
/**
|
|
6982
7272
|
*
|
|
6983
7273
|
* @type {string}
|
|
@@ -7024,25 +7314,6 @@ export interface UserUpdatedEvent {
|
|
|
7024
7314
|
*/
|
|
7025
7315
|
user: UserResponsePrivacyFields;
|
|
7026
7316
|
}
|
|
7027
|
-
/**
|
|
7028
|
-
*
|
|
7029
|
-
* @export
|
|
7030
|
-
* @interface VideoDimension
|
|
7031
|
-
*/
|
|
7032
|
-
export interface VideoDimension {
|
|
7033
|
-
/**
|
|
7034
|
-
*
|
|
7035
|
-
* @type {number}
|
|
7036
|
-
* @memberof VideoDimension
|
|
7037
|
-
*/
|
|
7038
|
-
height: number;
|
|
7039
|
-
/**
|
|
7040
|
-
*
|
|
7041
|
-
* @type {number}
|
|
7042
|
-
* @memberof VideoDimension
|
|
7043
|
-
*/
|
|
7044
|
-
width: number;
|
|
7045
|
-
}
|
|
7046
7317
|
/**
|
|
7047
7318
|
* @type VideoEvent
|
|
7048
7319
|
* The discriminator object for all websocket events, it maps events' payload to the final type
|
|
@@ -7093,6 +7364,10 @@ export type VideoEvent = ({
|
|
|
7093
7364
|
} & CallMemberUpdatedPermissionEvent) | ({
|
|
7094
7365
|
type: 'call.missed';
|
|
7095
7366
|
} & CallMissedEvent) | ({
|
|
7367
|
+
type: 'call.moderation_blur';
|
|
7368
|
+
} & CallModerationBlurEvent) | ({
|
|
7369
|
+
type: 'call.moderation_warning';
|
|
7370
|
+
} & CallModerationWarningEvent) | ({
|
|
7096
7371
|
type: 'call.notification';
|
|
7097
7372
|
} & CallNotificationEvent) | ({
|
|
7098
7373
|
type: 'call.permission_request';
|
|
@@ -7129,6 +7404,8 @@ export type VideoEvent = ({
|
|
|
7129
7404
|
} & CallSessionParticipantLeftEvent) | ({
|
|
7130
7405
|
type: 'call.session_started';
|
|
7131
7406
|
} & CallSessionStartedEvent) | ({
|
|
7407
|
+
type: 'call.stats_report_ready';
|
|
7408
|
+
} & CallStatsReportReadyEvent) | ({
|
|
7132
7409
|
type: 'call.transcription_failed';
|
|
7133
7410
|
} & CallTranscriptionFailedEvent) | ({
|
|
7134
7411
|
type: 'call.transcription_ready';
|
|
@@ -7156,21 +7433,34 @@ export type VideoEvent = ({
|
|
|
7156
7433
|
/**
|
|
7157
7434
|
*
|
|
7158
7435
|
* @export
|
|
7159
|
-
* @interface
|
|
7436
|
+
* @interface VideoReactionOverTimeResponse
|
|
7437
|
+
*/
|
|
7438
|
+
export interface VideoReactionOverTimeResponse {
|
|
7439
|
+
/**
|
|
7440
|
+
*
|
|
7441
|
+
* @type {Array<CountByMinuteResponse>}
|
|
7442
|
+
* @memberof VideoReactionOverTimeResponse
|
|
7443
|
+
*/
|
|
7444
|
+
by_minute?: Array<CountByMinuteResponse>;
|
|
7445
|
+
}
|
|
7446
|
+
/**
|
|
7447
|
+
*
|
|
7448
|
+
* @export
|
|
7449
|
+
* @interface VideoReactionsResponse
|
|
7160
7450
|
*/
|
|
7161
|
-
export interface
|
|
7451
|
+
export interface VideoReactionsResponse {
|
|
7162
7452
|
/**
|
|
7163
7453
|
*
|
|
7164
|
-
* @type {
|
|
7165
|
-
* @memberof
|
|
7454
|
+
* @type {VideoReactionOverTimeResponse}
|
|
7455
|
+
* @memberof VideoReactionsResponse
|
|
7166
7456
|
*/
|
|
7167
|
-
|
|
7457
|
+
count_over_time?: VideoReactionOverTimeResponse;
|
|
7168
7458
|
/**
|
|
7169
7459
|
*
|
|
7170
7460
|
* @type {string}
|
|
7171
|
-
* @memberof
|
|
7461
|
+
* @memberof VideoReactionsResponse
|
|
7172
7462
|
*/
|
|
7173
|
-
|
|
7463
|
+
reaction: string;
|
|
7174
7464
|
}
|
|
7175
7465
|
/**
|
|
7176
7466
|
*
|