@stream-io/node-sdk 0.2.5 → 0.2.6

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.
@@ -231,6 +231,12 @@ export interface VideoBackstageSettingsRequest {
231
231
  * @memberof VideoBackstageSettingsRequest
232
232
  */
233
233
  enabled?: boolean;
234
+ /**
235
+ *
236
+ * @type {number}
237
+ * @memberof VideoBackstageSettingsRequest
238
+ */
239
+ join_ahead_time_seconds?: number;
234
240
  }
235
241
  /**
236
242
  *
@@ -244,6 +250,12 @@ export interface VideoBackstageSettingsResponse {
244
250
  * @memberof VideoBackstageSettingsResponse
245
251
  */
246
252
  enabled: boolean;
253
+ /**
254
+ *
255
+ * @type {number}
256
+ * @memberof VideoBackstageSettingsResponse
257
+ */
258
+ join_ahead_time_seconds?: number;
247
259
  }
248
260
  /**
249
261
  *
@@ -542,6 +554,12 @@ export interface VideoCallResponse {
542
554
  * @memberof VideoCallResponse
543
555
  */
544
556
  ingress: VideoCallIngressResponse;
557
+ /**
558
+ *
559
+ * @type {number}
560
+ * @memberof VideoCallResponse
561
+ */
562
+ join_ahead_time_seconds?: number;
545
563
  /**
546
564
  *
547
565
  * @type {boolean}
@@ -633,6 +651,12 @@ export interface VideoCallSessionResponse {
633
651
  * @memberof VideoCallSessionResponse
634
652
  */
635
653
  live_started_at?: string;
654
+ /**
655
+ *
656
+ * @type {{ [key: string]: string; }}
657
+ * @memberof VideoCallSessionResponse
658
+ */
659
+ missed_by: { [key: string]: string; };
636
660
  /**
637
661
  *
638
662
  * @type {Array<VideoCallParticipantResponse>}
@@ -989,6 +1013,12 @@ export interface VideoCheckExternalStorageResponse {
989
1013
  * @memberof VideoCheckExternalStorageResponse
990
1014
  */
991
1015
  duration: string;
1016
+ /**
1017
+ *
1018
+ * @type {string}
1019
+ * @memberof VideoCheckExternalStorageResponse
1020
+ */
1021
+ file_url: string;
992
1022
  }
993
1023
  /**
994
1024
  *
@@ -1260,8 +1290,20 @@ export interface VideoCreateExternalStorageRequest {
1260
1290
  * @type {string}
1261
1291
  * @memberof VideoCreateExternalStorageRequest
1262
1292
  */
1263
- storage_type: string;
1293
+ storage_type: VideoCreateExternalStorageRequestStorageTypeEnum;
1264
1294
  }
1295
+
1296
+
1297
+ /**
1298
+ * @export
1299
+ */
1300
+ export const VideoCreateExternalStorageRequestStorageTypeEnum = {
1301
+ S3: 's3',
1302
+ GCS: 'gcs',
1303
+ ABS: 'abs'
1304
+ } as const;
1305
+ export type VideoCreateExternalStorageRequestStorageTypeEnum = typeof VideoCreateExternalStorageRequestStorageTypeEnum[keyof typeof VideoCreateExternalStorageRequestStorageTypeEnum];
1306
+
1265
1307
  /**
1266
1308
  *
1267
1309
  * @export
@@ -1313,6 +1355,44 @@ export interface VideoCreateGuestResponse {
1313
1355
  */
1314
1356
  user: VideoUserResponse;
1315
1357
  }
1358
+ /**
1359
+ *
1360
+ * @export
1361
+ * @interface VideoDeleteCallRequest
1362
+ */
1363
+ export interface VideoDeleteCallRequest {
1364
+ /**
1365
+ * if true the call will be hard deleted along with all related data
1366
+ * @type {boolean}
1367
+ * @memberof VideoDeleteCallRequest
1368
+ */
1369
+ hard?: boolean;
1370
+ }
1371
+ /**
1372
+ *
1373
+ * @export
1374
+ * @interface VideoDeleteCallResponse
1375
+ */
1376
+ export interface VideoDeleteCallResponse {
1377
+ /**
1378
+ *
1379
+ * @type {VideoCallResponse}
1380
+ * @memberof VideoDeleteCallResponse
1381
+ */
1382
+ call: VideoCallResponse;
1383
+ /**
1384
+ * Duration of the request in human-readable format
1385
+ * @type {string}
1386
+ * @memberof VideoDeleteCallResponse
1387
+ */
1388
+ duration: string;
1389
+ /**
1390
+ *
1391
+ * @type {string}
1392
+ * @memberof VideoDeleteCallResponse
1393
+ */
1394
+ task_id?: string;
1395
+ }
1316
1396
  /**
1317
1397
  *
1318
1398
  * @export
@@ -1611,8 +1691,20 @@ export interface VideoExternalStorageResponse {
1611
1691
  * @type {string}
1612
1692
  * @memberof VideoExternalStorageResponse
1613
1693
  */
1614
- type: string;
1694
+ type: VideoExternalStorageResponseTypeEnum;
1615
1695
  }
1696
+
1697
+
1698
+ /**
1699
+ * @export
1700
+ */
1701
+ export const VideoExternalStorageResponseTypeEnum = {
1702
+ S3: 's3',
1703
+ GCS: 'gcs',
1704
+ ABS: 'abs'
1705
+ } as const;
1706
+ export type VideoExternalStorageResponseTypeEnum = typeof VideoExternalStorageResponseTypeEnum[keyof typeof VideoExternalStorageResponseTypeEnum];
1707
+
1616
1708
  /**
1617
1709
  *
1618
1710
  * @export
@@ -2577,6 +2669,12 @@ export interface VideoNotificationSettings {
2577
2669
  * @memberof VideoNotificationSettings
2578
2670
  */
2579
2671
  call_live_started?: VideoEventNotificationSettings;
2672
+ /**
2673
+ *
2674
+ * @type {VideoEventNotificationSettings}
2675
+ * @memberof VideoNotificationSettings
2676
+ */
2677
+ call_missed?: VideoEventNotificationSettings;
2580
2678
  /**
2581
2679
  *
2582
2680
  * @type {VideoEventNotificationSettings}
@@ -3148,6 +3246,12 @@ export interface VideoRingSettingsRequest {
3148
3246
  * @memberof VideoRingSettingsRequest
3149
3247
  */
3150
3248
  incoming_call_timeout_ms: number;
3249
+ /**
3250
+ *
3251
+ * @type {number}
3252
+ * @memberof VideoRingSettingsRequest
3253
+ */
3254
+ missed_call_timeout_ms?: number;
3151
3255
  }
3152
3256
  /**
3153
3257
  *
@@ -3167,6 +3271,12 @@ export interface VideoRingSettingsResponse {
3167
3271
  * @memberof VideoRingSettingsResponse
3168
3272
  */
3169
3273
  incoming_call_timeout_ms: number;
3274
+ /**
3275
+ *
3276
+ * @type {number}
3277
+ * @memberof VideoRingSettingsResponse
3278
+ */
3279
+ missed_call_timeout_ms: number;
3170
3280
  }
3171
3281
  /**
3172
3282
  *
@@ -3940,8 +4050,20 @@ export interface VideoUpdateExternalStorageRequest {
3940
4050
  * @type {string}
3941
4051
  * @memberof VideoUpdateExternalStorageRequest
3942
4052
  */
3943
- storage_type: string;
4053
+ storage_type: VideoUpdateExternalStorageRequestStorageTypeEnum;
3944
4054
  }
4055
+
4056
+
4057
+ /**
4058
+ * @export
4059
+ */
4060
+ export const VideoUpdateExternalStorageRequestStorageTypeEnum = {
4061
+ S3: 's3',
4062
+ GCS: 'gcs',
4063
+ ABS: 'abs'
4064
+ } as const;
4065
+ export type VideoUpdateExternalStorageRequestStorageTypeEnum = typeof VideoUpdateExternalStorageRequestStorageTypeEnum[keyof typeof VideoUpdateExternalStorageRequestStorageTypeEnum];
4066
+
3945
4067
  /**
3946
4068
  *
3947
4069
  * @export
@@ -3977,8 +4099,20 @@ export interface VideoUpdateExternalStorageResponse {
3977
4099
  * @type {string}
3978
4100
  * @memberof VideoUpdateExternalStorageResponse
3979
4101
  */
3980
- type: string;
4102
+ type: VideoUpdateExternalStorageResponseTypeEnum;
3981
4103
  }
4104
+
4105
+
4106
+ /**
4107
+ * @export
4108
+ */
4109
+ export const VideoUpdateExternalStorageResponseTypeEnum = {
4110
+ S3: 's3',
4111
+ GCS: 'gcs',
4112
+ ABS: 'abs'
4113
+ } as const;
4114
+ export type VideoUpdateExternalStorageResponseTypeEnum = typeof VideoUpdateExternalStorageResponseTypeEnum[keyof typeof VideoUpdateExternalStorageResponseTypeEnum];
4115
+
3982
4116
  /**
3983
4117
  *
3984
4118
  * @export
@@ -4127,6 +4261,12 @@ export interface VideoUserResponse {
4127
4261
  * @memberof VideoUserResponse
4128
4262
  */
4129
4263
  banned: boolean;
4264
+ /**
4265
+ *
4266
+ * @type {Array<string>}
4267
+ * @memberof VideoUserResponse
4268
+ */
4269
+ blocked_user_ids: Array<string>;
4130
4270
  /**
4131
4271
  * Date/time of creation
4132
4272
  * @type {string}
@@ -4,7 +4,7 @@
4
4
  * Stream API
5
5
  * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
6
6
  *
7
- * The version of the OpenAPI document: v116.0.0
7
+ * The version of the OpenAPI document: v120.0.0
8
8
  *
9
9
  *
10
10
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).