livekit-server-sdk 1.0.2 → 1.0.3
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/.eslintrc.js +1 -1
- package/README.md +2 -0
- package/dist/EgressClient.d.ts +47 -9
- package/dist/EgressClient.js +30 -19
- package/dist/EgressClient.js.map +1 -1
- package/dist/RoomServiceClient.d.ts +8 -2
- package/dist/RoomServiceClient.js +3 -1
- package/dist/RoomServiceClient.js.map +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/index.js +2 -6
- package/dist/index.js.map +1 -1
- package/dist/proto/livekit_egress.d.ts +164 -7
- package/dist/proto/livekit_egress.js +162 -10
- package/dist/proto/livekit_egress.js.map +1 -1
- package/dist/proto/livekit_room.d.ts +818 -0
- package/dist/proto/livekit_room.js +94 -4
- package/dist/proto/livekit_room.js.map +1 -1
- package/dist/proto/livekit_webhook.d.ts +25 -0
- package/package.json +1 -1
|
@@ -42,14 +42,22 @@ export declare enum VideoCodec {
|
|
|
42
42
|
export declare function videoCodecFromJSON(object: any): VideoCodec;
|
|
43
43
|
export declare function videoCodecToJSON(object: VideoCodec): string;
|
|
44
44
|
export declare enum EncodingOptionsPreset {
|
|
45
|
-
/** H264_720P_30 -
|
|
45
|
+
/** H264_720P_30 - 1280x720, 30fps, 3000kpbs, H.264_MAIN / OPUS */
|
|
46
46
|
H264_720P_30 = 0,
|
|
47
|
-
/** H264_720P_60 -
|
|
47
|
+
/** H264_720P_60 - 1280x720, 60fps, 4500kbps, H.264_MAIN / OPUS */
|
|
48
48
|
H264_720P_60 = 1,
|
|
49
|
-
/** H264_1080P_30 -
|
|
49
|
+
/** H264_1080P_30 - 1920x1080, 30fps, 4500kbps, H.264_MAIN / OPUS */
|
|
50
50
|
H264_1080P_30 = 2,
|
|
51
|
-
/** H264_1080P_60 -
|
|
51
|
+
/** H264_1080P_60 - 1920x1080, 60fps, 6000kbps, H.264_MAIN / OPUS */
|
|
52
52
|
H264_1080P_60 = 3,
|
|
53
|
+
/** PORTRAIT_H264_720P_30 - 720x1280, 30fps, 3000kpbs, H.264_MAIN / OPUS */
|
|
54
|
+
PORTRAIT_H264_720P_30 = 4,
|
|
55
|
+
/** PORTRAIT_H264_720P_60 - 720x1280, 60fps, 4500kbps, H.264_MAIN / OPUS */
|
|
56
|
+
PORTRAIT_H264_720P_60 = 5,
|
|
57
|
+
/** PORTRAIT_H264_1080P_30 - 1080x1920, 30fps, 4500kbps, H.264_MAIN / OPUS */
|
|
58
|
+
PORTRAIT_H264_1080P_30 = 6,
|
|
59
|
+
/** PORTRAIT_H264_1080P_60 - 1080x1920, 60fps, 6000kbps, H.264_MAIN / OPUS */
|
|
60
|
+
PORTRAIT_H264_1080P_60 = 7,
|
|
53
61
|
UNRECOGNIZED = -1
|
|
54
62
|
}
|
|
55
63
|
export declare function encodingOptionsPresetFromJSON(object: any): EncodingOptionsPreset;
|
|
@@ -76,7 +84,7 @@ export interface RoomCompositeEgressRequest {
|
|
|
76
84
|
audioOnly: boolean;
|
|
77
85
|
/** (default false) */
|
|
78
86
|
videoOnly: boolean;
|
|
79
|
-
/** (default https://recorder.livekit.io) */
|
|
87
|
+
/** template base url (default https://recorder.livekit.io) */
|
|
80
88
|
customBaseUrl: string;
|
|
81
89
|
file?: EncodedFileOutput | undefined;
|
|
82
90
|
stream?: StreamOutput | undefined;
|
|
@@ -114,8 +122,10 @@ export interface TrackEgressRequest {
|
|
|
114
122
|
export interface EncodedFileOutput {
|
|
115
123
|
/** (optional) */
|
|
116
124
|
fileType: EncodedFileType;
|
|
117
|
-
/** (
|
|
125
|
+
/** see egress docs for templating (default {room_name}-{time}) */
|
|
118
126
|
filepath: string;
|
|
127
|
+
/** disable upload of manifest file (default false) */
|
|
128
|
+
disableManifest: boolean;
|
|
119
129
|
s3?: S3Upload | undefined;
|
|
120
130
|
gcp?: GCPUpload | undefined;
|
|
121
131
|
azure?: AzureBlobUpload | undefined;
|
|
@@ -130,13 +140,17 @@ export interface SegmentedFileOutput {
|
|
|
130
140
|
playlistName: string;
|
|
131
141
|
/** (optional) */
|
|
132
142
|
segmentDuration: number;
|
|
143
|
+
/** disable upload of manifest file (default false) */
|
|
144
|
+
disableManifest: boolean;
|
|
133
145
|
s3?: S3Upload | undefined;
|
|
134
146
|
gcp?: GCPUpload | undefined;
|
|
135
147
|
azure?: AzureBlobUpload | undefined;
|
|
136
148
|
}
|
|
137
149
|
export interface DirectFileOutput {
|
|
138
|
-
/** (
|
|
150
|
+
/** see egress docs for templating (default {room_name}-{time}) */
|
|
139
151
|
filepath: string;
|
|
152
|
+
/** disable upload of manifest file (default false) */
|
|
153
|
+
disableManifest: boolean;
|
|
140
154
|
s3?: S3Upload | undefined;
|
|
141
155
|
gcp?: GCPUpload | undefined;
|
|
142
156
|
azure?: AzureBlobUpload | undefined;
|
|
@@ -248,6 +262,15 @@ export interface SegmentsInfo {
|
|
|
248
262
|
playlistLocation: string;
|
|
249
263
|
segmentCount: number;
|
|
250
264
|
}
|
|
265
|
+
export interface AutoTrackEgress {
|
|
266
|
+
/** see docs for templating (default {room_name}-{time}) */
|
|
267
|
+
filepath: string;
|
|
268
|
+
/** disables upload of json manifest file (default false) */
|
|
269
|
+
disableManifest: boolean;
|
|
270
|
+
s3?: S3Upload | undefined;
|
|
271
|
+
gcp?: GCPUpload | undefined;
|
|
272
|
+
azure?: AzureBlobUpload | undefined;
|
|
273
|
+
}
|
|
251
274
|
export declare const RoomCompositeEgressRequest: {
|
|
252
275
|
encode(message: RoomCompositeEgressRequest, writer?: _m0.Writer): _m0.Writer;
|
|
253
276
|
decode(input: _m0.Reader | Uint8Array, length?: number | undefined): RoomCompositeEgressRequest;
|
|
@@ -262,6 +285,7 @@ export declare const RoomCompositeEgressRequest: {
|
|
|
262
285
|
file?: {
|
|
263
286
|
fileType?: EncodedFileType | undefined;
|
|
264
287
|
filepath?: string | undefined;
|
|
288
|
+
disableManifest?: boolean | undefined;
|
|
265
289
|
s3?: {
|
|
266
290
|
accessKey?: string | undefined;
|
|
267
291
|
secret?: string | undefined;
|
|
@@ -288,6 +312,7 @@ export declare const RoomCompositeEgressRequest: {
|
|
|
288
312
|
filenamePrefix?: string | undefined;
|
|
289
313
|
playlistName?: string | undefined;
|
|
290
314
|
segmentDuration?: number | undefined;
|
|
315
|
+
disableManifest?: boolean | undefined;
|
|
291
316
|
s3?: {
|
|
292
317
|
accessKey?: string | undefined;
|
|
293
318
|
secret?: string | undefined;
|
|
@@ -326,6 +351,7 @@ export declare const RoomCompositeEgressRequest: {
|
|
|
326
351
|
file?: ({
|
|
327
352
|
fileType?: EncodedFileType | undefined;
|
|
328
353
|
filepath?: string | undefined;
|
|
354
|
+
disableManifest?: boolean | undefined;
|
|
329
355
|
s3?: {
|
|
330
356
|
accessKey?: string | undefined;
|
|
331
357
|
secret?: string | undefined;
|
|
@@ -345,6 +371,7 @@ export declare const RoomCompositeEgressRequest: {
|
|
|
345
371
|
} & {
|
|
346
372
|
fileType?: EncodedFileType | undefined;
|
|
347
373
|
filepath?: string | undefined;
|
|
374
|
+
disableManifest?: boolean | undefined;
|
|
348
375
|
s3?: ({
|
|
349
376
|
accessKey?: string | undefined;
|
|
350
377
|
secret?: string | undefined;
|
|
@@ -387,6 +414,7 @@ export declare const RoomCompositeEgressRequest: {
|
|
|
387
414
|
filenamePrefix?: string | undefined;
|
|
388
415
|
playlistName?: string | undefined;
|
|
389
416
|
segmentDuration?: number | undefined;
|
|
417
|
+
disableManifest?: boolean | undefined;
|
|
390
418
|
s3?: {
|
|
391
419
|
accessKey?: string | undefined;
|
|
392
420
|
secret?: string | undefined;
|
|
@@ -408,6 +436,7 @@ export declare const RoomCompositeEgressRequest: {
|
|
|
408
436
|
filenamePrefix?: string | undefined;
|
|
409
437
|
playlistName?: string | undefined;
|
|
410
438
|
segmentDuration?: number | undefined;
|
|
439
|
+
disableManifest?: boolean | undefined;
|
|
411
440
|
s3?: ({
|
|
412
441
|
accessKey?: string | undefined;
|
|
413
442
|
secret?: string | undefined;
|
|
@@ -474,6 +503,7 @@ export declare const TrackCompositeEgressRequest: {
|
|
|
474
503
|
file?: {
|
|
475
504
|
fileType?: EncodedFileType | undefined;
|
|
476
505
|
filepath?: string | undefined;
|
|
506
|
+
disableManifest?: boolean | undefined;
|
|
477
507
|
s3?: {
|
|
478
508
|
accessKey?: string | undefined;
|
|
479
509
|
secret?: string | undefined;
|
|
@@ -500,6 +530,7 @@ export declare const TrackCompositeEgressRequest: {
|
|
|
500
530
|
filenamePrefix?: string | undefined;
|
|
501
531
|
playlistName?: string | undefined;
|
|
502
532
|
segmentDuration?: number | undefined;
|
|
533
|
+
disableManifest?: boolean | undefined;
|
|
503
534
|
s3?: {
|
|
504
535
|
accessKey?: string | undefined;
|
|
505
536
|
secret?: string | undefined;
|
|
@@ -536,6 +567,7 @@ export declare const TrackCompositeEgressRequest: {
|
|
|
536
567
|
file?: ({
|
|
537
568
|
fileType?: EncodedFileType | undefined;
|
|
538
569
|
filepath?: string | undefined;
|
|
570
|
+
disableManifest?: boolean | undefined;
|
|
539
571
|
s3?: {
|
|
540
572
|
accessKey?: string | undefined;
|
|
541
573
|
secret?: string | undefined;
|
|
@@ -555,6 +587,7 @@ export declare const TrackCompositeEgressRequest: {
|
|
|
555
587
|
} & {
|
|
556
588
|
fileType?: EncodedFileType | undefined;
|
|
557
589
|
filepath?: string | undefined;
|
|
590
|
+
disableManifest?: boolean | undefined;
|
|
558
591
|
s3?: ({
|
|
559
592
|
accessKey?: string | undefined;
|
|
560
593
|
secret?: string | undefined;
|
|
@@ -597,6 +630,7 @@ export declare const TrackCompositeEgressRequest: {
|
|
|
597
630
|
filenamePrefix?: string | undefined;
|
|
598
631
|
playlistName?: string | undefined;
|
|
599
632
|
segmentDuration?: number | undefined;
|
|
633
|
+
disableManifest?: boolean | undefined;
|
|
600
634
|
s3?: {
|
|
601
635
|
accessKey?: string | undefined;
|
|
602
636
|
secret?: string | undefined;
|
|
@@ -618,6 +652,7 @@ export declare const TrackCompositeEgressRequest: {
|
|
|
618
652
|
filenamePrefix?: string | undefined;
|
|
619
653
|
playlistName?: string | undefined;
|
|
620
654
|
segmentDuration?: number | undefined;
|
|
655
|
+
disableManifest?: boolean | undefined;
|
|
621
656
|
s3?: ({
|
|
622
657
|
accessKey?: string | undefined;
|
|
623
658
|
secret?: string | undefined;
|
|
@@ -682,6 +717,7 @@ export declare const TrackEgressRequest: {
|
|
|
682
717
|
trackId?: string | undefined;
|
|
683
718
|
file?: {
|
|
684
719
|
filepath?: string | undefined;
|
|
720
|
+
disableManifest?: boolean | undefined;
|
|
685
721
|
s3?: {
|
|
686
722
|
accessKey?: string | undefined;
|
|
687
723
|
secret?: string | undefined;
|
|
@@ -705,6 +741,7 @@ export declare const TrackEgressRequest: {
|
|
|
705
741
|
trackId?: string | undefined;
|
|
706
742
|
file?: ({
|
|
707
743
|
filepath?: string | undefined;
|
|
744
|
+
disableManifest?: boolean | undefined;
|
|
708
745
|
s3?: {
|
|
709
746
|
accessKey?: string | undefined;
|
|
710
747
|
secret?: string | undefined;
|
|
@@ -723,6 +760,7 @@ export declare const TrackEgressRequest: {
|
|
|
723
760
|
} | undefined;
|
|
724
761
|
} & {
|
|
725
762
|
filepath?: string | undefined;
|
|
763
|
+
disableManifest?: boolean | undefined;
|
|
726
764
|
s3?: ({
|
|
727
765
|
accessKey?: string | undefined;
|
|
728
766
|
secret?: string | undefined;
|
|
@@ -764,6 +802,7 @@ export declare const EncodedFileOutput: {
|
|
|
764
802
|
fromPartial<I extends {
|
|
765
803
|
fileType?: EncodedFileType | undefined;
|
|
766
804
|
filepath?: string | undefined;
|
|
805
|
+
disableManifest?: boolean | undefined;
|
|
767
806
|
s3?: {
|
|
768
807
|
accessKey?: string | undefined;
|
|
769
808
|
secret?: string | undefined;
|
|
@@ -783,6 +822,7 @@ export declare const EncodedFileOutput: {
|
|
|
783
822
|
} & {
|
|
784
823
|
fileType?: EncodedFileType | undefined;
|
|
785
824
|
filepath?: string | undefined;
|
|
825
|
+
disableManifest?: boolean | undefined;
|
|
786
826
|
s3?: ({
|
|
787
827
|
accessKey?: string | undefined;
|
|
788
828
|
secret?: string | undefined;
|
|
@@ -824,6 +864,7 @@ export declare const SegmentedFileOutput: {
|
|
|
824
864
|
filenamePrefix?: string | undefined;
|
|
825
865
|
playlistName?: string | undefined;
|
|
826
866
|
segmentDuration?: number | undefined;
|
|
867
|
+
disableManifest?: boolean | undefined;
|
|
827
868
|
s3?: {
|
|
828
869
|
accessKey?: string | undefined;
|
|
829
870
|
secret?: string | undefined;
|
|
@@ -845,6 +886,7 @@ export declare const SegmentedFileOutput: {
|
|
|
845
886
|
filenamePrefix?: string | undefined;
|
|
846
887
|
playlistName?: string | undefined;
|
|
847
888
|
segmentDuration?: number | undefined;
|
|
889
|
+
disableManifest?: boolean | undefined;
|
|
848
890
|
s3?: ({
|
|
849
891
|
accessKey?: string | undefined;
|
|
850
892
|
secret?: string | undefined;
|
|
@@ -883,6 +925,7 @@ export declare const DirectFileOutput: {
|
|
|
883
925
|
toJSON(message: DirectFileOutput): unknown;
|
|
884
926
|
fromPartial<I extends {
|
|
885
927
|
filepath?: string | undefined;
|
|
928
|
+
disableManifest?: boolean | undefined;
|
|
886
929
|
s3?: {
|
|
887
930
|
accessKey?: string | undefined;
|
|
888
931
|
secret?: string | undefined;
|
|
@@ -901,6 +944,7 @@ export declare const DirectFileOutput: {
|
|
|
901
944
|
} | undefined;
|
|
902
945
|
} & {
|
|
903
946
|
filepath?: string | undefined;
|
|
947
|
+
disableManifest?: boolean | undefined;
|
|
904
948
|
s3?: ({
|
|
905
949
|
accessKey?: string | undefined;
|
|
906
950
|
secret?: string | undefined;
|
|
@@ -1081,6 +1125,7 @@ export declare const ListEgressResponse: {
|
|
|
1081
1125
|
file?: {
|
|
1082
1126
|
fileType?: EncodedFileType | undefined;
|
|
1083
1127
|
filepath?: string | undefined;
|
|
1128
|
+
disableManifest?: boolean | undefined;
|
|
1084
1129
|
s3?: {
|
|
1085
1130
|
accessKey?: string | undefined;
|
|
1086
1131
|
secret?: string | undefined;
|
|
@@ -1107,6 +1152,7 @@ export declare const ListEgressResponse: {
|
|
|
1107
1152
|
filenamePrefix?: string | undefined;
|
|
1108
1153
|
playlistName?: string | undefined;
|
|
1109
1154
|
segmentDuration?: number | undefined;
|
|
1155
|
+
disableManifest?: boolean | undefined;
|
|
1110
1156
|
s3?: {
|
|
1111
1157
|
accessKey?: string | undefined;
|
|
1112
1158
|
secret?: string | undefined;
|
|
@@ -1144,6 +1190,7 @@ export declare const ListEgressResponse: {
|
|
|
1144
1190
|
file?: {
|
|
1145
1191
|
fileType?: EncodedFileType | undefined;
|
|
1146
1192
|
filepath?: string | undefined;
|
|
1193
|
+
disableManifest?: boolean | undefined;
|
|
1147
1194
|
s3?: {
|
|
1148
1195
|
accessKey?: string | undefined;
|
|
1149
1196
|
secret?: string | undefined;
|
|
@@ -1170,6 +1217,7 @@ export declare const ListEgressResponse: {
|
|
|
1170
1217
|
filenamePrefix?: string | undefined;
|
|
1171
1218
|
playlistName?: string | undefined;
|
|
1172
1219
|
segmentDuration?: number | undefined;
|
|
1220
|
+
disableManifest?: boolean | undefined;
|
|
1173
1221
|
s3?: {
|
|
1174
1222
|
accessKey?: string | undefined;
|
|
1175
1223
|
secret?: string | undefined;
|
|
@@ -1205,6 +1253,7 @@ export declare const ListEgressResponse: {
|
|
|
1205
1253
|
trackId?: string | undefined;
|
|
1206
1254
|
file?: {
|
|
1207
1255
|
filepath?: string | undefined;
|
|
1256
|
+
disableManifest?: boolean | undefined;
|
|
1208
1257
|
s3?: {
|
|
1209
1258
|
accessKey?: string | undefined;
|
|
1210
1259
|
secret?: string | undefined;
|
|
@@ -1265,6 +1314,7 @@ export declare const ListEgressResponse: {
|
|
|
1265
1314
|
file?: {
|
|
1266
1315
|
fileType?: EncodedFileType | undefined;
|
|
1267
1316
|
filepath?: string | undefined;
|
|
1317
|
+
disableManifest?: boolean | undefined;
|
|
1268
1318
|
s3?: {
|
|
1269
1319
|
accessKey?: string | undefined;
|
|
1270
1320
|
secret?: string | undefined;
|
|
@@ -1291,6 +1341,7 @@ export declare const ListEgressResponse: {
|
|
|
1291
1341
|
filenamePrefix?: string | undefined;
|
|
1292
1342
|
playlistName?: string | undefined;
|
|
1293
1343
|
segmentDuration?: number | undefined;
|
|
1344
|
+
disableManifest?: boolean | undefined;
|
|
1294
1345
|
s3?: {
|
|
1295
1346
|
accessKey?: string | undefined;
|
|
1296
1347
|
secret?: string | undefined;
|
|
@@ -1328,6 +1379,7 @@ export declare const ListEgressResponse: {
|
|
|
1328
1379
|
file?: {
|
|
1329
1380
|
fileType?: EncodedFileType | undefined;
|
|
1330
1381
|
filepath?: string | undefined;
|
|
1382
|
+
disableManifest?: boolean | undefined;
|
|
1331
1383
|
s3?: {
|
|
1332
1384
|
accessKey?: string | undefined;
|
|
1333
1385
|
secret?: string | undefined;
|
|
@@ -1354,6 +1406,7 @@ export declare const ListEgressResponse: {
|
|
|
1354
1406
|
filenamePrefix?: string | undefined;
|
|
1355
1407
|
playlistName?: string | undefined;
|
|
1356
1408
|
segmentDuration?: number | undefined;
|
|
1409
|
+
disableManifest?: boolean | undefined;
|
|
1357
1410
|
s3?: {
|
|
1358
1411
|
accessKey?: string | undefined;
|
|
1359
1412
|
secret?: string | undefined;
|
|
@@ -1389,6 +1442,7 @@ export declare const ListEgressResponse: {
|
|
|
1389
1442
|
trackId?: string | undefined;
|
|
1390
1443
|
file?: {
|
|
1391
1444
|
filepath?: string | undefined;
|
|
1445
|
+
disableManifest?: boolean | undefined;
|
|
1392
1446
|
s3?: {
|
|
1393
1447
|
accessKey?: string | undefined;
|
|
1394
1448
|
secret?: string | undefined;
|
|
@@ -1447,6 +1501,7 @@ export declare const ListEgressResponse: {
|
|
|
1447
1501
|
file?: {
|
|
1448
1502
|
fileType?: EncodedFileType | undefined;
|
|
1449
1503
|
filepath?: string | undefined;
|
|
1504
|
+
disableManifest?: boolean | undefined;
|
|
1450
1505
|
s3?: {
|
|
1451
1506
|
accessKey?: string | undefined;
|
|
1452
1507
|
secret?: string | undefined;
|
|
@@ -1473,6 +1528,7 @@ export declare const ListEgressResponse: {
|
|
|
1473
1528
|
filenamePrefix?: string | undefined;
|
|
1474
1529
|
playlistName?: string | undefined;
|
|
1475
1530
|
segmentDuration?: number | undefined;
|
|
1531
|
+
disableManifest?: boolean | undefined;
|
|
1476
1532
|
s3?: {
|
|
1477
1533
|
accessKey?: string | undefined;
|
|
1478
1534
|
secret?: string | undefined;
|
|
@@ -1510,6 +1566,7 @@ export declare const ListEgressResponse: {
|
|
|
1510
1566
|
file?: {
|
|
1511
1567
|
fileType?: EncodedFileType | undefined;
|
|
1512
1568
|
filepath?: string | undefined;
|
|
1569
|
+
disableManifest?: boolean | undefined;
|
|
1513
1570
|
s3?: {
|
|
1514
1571
|
accessKey?: string | undefined;
|
|
1515
1572
|
secret?: string | undefined;
|
|
@@ -1536,6 +1593,7 @@ export declare const ListEgressResponse: {
|
|
|
1536
1593
|
filenamePrefix?: string | undefined;
|
|
1537
1594
|
playlistName?: string | undefined;
|
|
1538
1595
|
segmentDuration?: number | undefined;
|
|
1596
|
+
disableManifest?: boolean | undefined;
|
|
1539
1597
|
s3?: {
|
|
1540
1598
|
accessKey?: string | undefined;
|
|
1541
1599
|
secret?: string | undefined;
|
|
@@ -1571,6 +1629,7 @@ export declare const ListEgressResponse: {
|
|
|
1571
1629
|
trackId?: string | undefined;
|
|
1572
1630
|
file?: {
|
|
1573
1631
|
filepath?: string | undefined;
|
|
1632
|
+
disableManifest?: boolean | undefined;
|
|
1574
1633
|
s3?: {
|
|
1575
1634
|
accessKey?: string | undefined;
|
|
1576
1635
|
secret?: string | undefined;
|
|
@@ -1629,6 +1688,7 @@ export declare const ListEgressResponse: {
|
|
|
1629
1688
|
file?: {
|
|
1630
1689
|
fileType?: EncodedFileType | undefined;
|
|
1631
1690
|
filepath?: string | undefined;
|
|
1691
|
+
disableManifest?: boolean | undefined;
|
|
1632
1692
|
s3?: {
|
|
1633
1693
|
accessKey?: string | undefined;
|
|
1634
1694
|
secret?: string | undefined;
|
|
@@ -1655,6 +1715,7 @@ export declare const ListEgressResponse: {
|
|
|
1655
1715
|
filenamePrefix?: string | undefined;
|
|
1656
1716
|
playlistName?: string | undefined;
|
|
1657
1717
|
segmentDuration?: number | undefined;
|
|
1718
|
+
disableManifest?: boolean | undefined;
|
|
1658
1719
|
s3?: {
|
|
1659
1720
|
accessKey?: string | undefined;
|
|
1660
1721
|
secret?: string | undefined;
|
|
@@ -1693,6 +1754,7 @@ export declare const ListEgressResponse: {
|
|
|
1693
1754
|
file?: ({
|
|
1694
1755
|
fileType?: EncodedFileType | undefined;
|
|
1695
1756
|
filepath?: string | undefined;
|
|
1757
|
+
disableManifest?: boolean | undefined;
|
|
1696
1758
|
s3?: {
|
|
1697
1759
|
accessKey?: string | undefined;
|
|
1698
1760
|
secret?: string | undefined;
|
|
@@ -1712,6 +1774,7 @@ export declare const ListEgressResponse: {
|
|
|
1712
1774
|
} & {
|
|
1713
1775
|
fileType?: EncodedFileType | undefined;
|
|
1714
1776
|
filepath?: string | undefined;
|
|
1777
|
+
disableManifest?: boolean | undefined;
|
|
1715
1778
|
s3?: ({
|
|
1716
1779
|
accessKey?: string | undefined;
|
|
1717
1780
|
secret?: string | undefined;
|
|
@@ -1754,6 +1817,7 @@ export declare const ListEgressResponse: {
|
|
|
1754
1817
|
filenamePrefix?: string | undefined;
|
|
1755
1818
|
playlistName?: string | undefined;
|
|
1756
1819
|
segmentDuration?: number | undefined;
|
|
1820
|
+
disableManifest?: boolean | undefined;
|
|
1757
1821
|
s3?: {
|
|
1758
1822
|
accessKey?: string | undefined;
|
|
1759
1823
|
secret?: string | undefined;
|
|
@@ -1775,6 +1839,7 @@ export declare const ListEgressResponse: {
|
|
|
1775
1839
|
filenamePrefix?: string | undefined;
|
|
1776
1840
|
playlistName?: string | undefined;
|
|
1777
1841
|
segmentDuration?: number | undefined;
|
|
1842
|
+
disableManifest?: boolean | undefined;
|
|
1778
1843
|
s3?: ({
|
|
1779
1844
|
accessKey?: string | undefined;
|
|
1780
1845
|
secret?: string | undefined;
|
|
@@ -1835,6 +1900,7 @@ export declare const ListEgressResponse: {
|
|
|
1835
1900
|
file?: {
|
|
1836
1901
|
fileType?: EncodedFileType | undefined;
|
|
1837
1902
|
filepath?: string | undefined;
|
|
1903
|
+
disableManifest?: boolean | undefined;
|
|
1838
1904
|
s3?: {
|
|
1839
1905
|
accessKey?: string | undefined;
|
|
1840
1906
|
secret?: string | undefined;
|
|
@@ -1861,6 +1927,7 @@ export declare const ListEgressResponse: {
|
|
|
1861
1927
|
filenamePrefix?: string | undefined;
|
|
1862
1928
|
playlistName?: string | undefined;
|
|
1863
1929
|
segmentDuration?: number | undefined;
|
|
1930
|
+
disableManifest?: boolean | undefined;
|
|
1864
1931
|
s3?: {
|
|
1865
1932
|
accessKey?: string | undefined;
|
|
1866
1933
|
secret?: string | undefined;
|
|
@@ -1897,6 +1964,7 @@ export declare const ListEgressResponse: {
|
|
|
1897
1964
|
file?: ({
|
|
1898
1965
|
fileType?: EncodedFileType | undefined;
|
|
1899
1966
|
filepath?: string | undefined;
|
|
1967
|
+
disableManifest?: boolean | undefined;
|
|
1900
1968
|
s3?: {
|
|
1901
1969
|
accessKey?: string | undefined;
|
|
1902
1970
|
secret?: string | undefined;
|
|
@@ -1916,6 +1984,7 @@ export declare const ListEgressResponse: {
|
|
|
1916
1984
|
} & {
|
|
1917
1985
|
fileType?: EncodedFileType | undefined;
|
|
1918
1986
|
filepath?: string | undefined;
|
|
1987
|
+
disableManifest?: boolean | undefined;
|
|
1919
1988
|
s3?: ({
|
|
1920
1989
|
accessKey?: string | undefined;
|
|
1921
1990
|
secret?: string | undefined;
|
|
@@ -1958,6 +2027,7 @@ export declare const ListEgressResponse: {
|
|
|
1958
2027
|
filenamePrefix?: string | undefined;
|
|
1959
2028
|
playlistName?: string | undefined;
|
|
1960
2029
|
segmentDuration?: number | undefined;
|
|
2030
|
+
disableManifest?: boolean | undefined;
|
|
1961
2031
|
s3?: {
|
|
1962
2032
|
accessKey?: string | undefined;
|
|
1963
2033
|
secret?: string | undefined;
|
|
@@ -1979,6 +2049,7 @@ export declare const ListEgressResponse: {
|
|
|
1979
2049
|
filenamePrefix?: string | undefined;
|
|
1980
2050
|
playlistName?: string | undefined;
|
|
1981
2051
|
segmentDuration?: number | undefined;
|
|
2052
|
+
disableManifest?: boolean | undefined;
|
|
1982
2053
|
s3?: ({
|
|
1983
2054
|
accessKey?: string | undefined;
|
|
1984
2055
|
secret?: string | undefined;
|
|
@@ -2037,6 +2108,7 @@ export declare const ListEgressResponse: {
|
|
|
2037
2108
|
trackId?: string | undefined;
|
|
2038
2109
|
file?: {
|
|
2039
2110
|
filepath?: string | undefined;
|
|
2111
|
+
disableManifest?: boolean | undefined;
|
|
2040
2112
|
s3?: {
|
|
2041
2113
|
accessKey?: string | undefined;
|
|
2042
2114
|
secret?: string | undefined;
|
|
@@ -2060,6 +2132,7 @@ export declare const ListEgressResponse: {
|
|
|
2060
2132
|
trackId?: string | undefined;
|
|
2061
2133
|
file?: ({
|
|
2062
2134
|
filepath?: string | undefined;
|
|
2135
|
+
disableManifest?: boolean | undefined;
|
|
2063
2136
|
s3?: {
|
|
2064
2137
|
accessKey?: string | undefined;
|
|
2065
2138
|
secret?: string | undefined;
|
|
@@ -2078,6 +2151,7 @@ export declare const ListEgressResponse: {
|
|
|
2078
2151
|
} | undefined;
|
|
2079
2152
|
} & {
|
|
2080
2153
|
filepath?: string | undefined;
|
|
2154
|
+
disableManifest?: boolean | undefined;
|
|
2081
2155
|
s3?: ({
|
|
2082
2156
|
accessKey?: string | undefined;
|
|
2083
2157
|
secret?: string | undefined;
|
|
@@ -2186,6 +2260,7 @@ export declare const ListEgressResponse: {
|
|
|
2186
2260
|
file?: {
|
|
2187
2261
|
fileType?: EncodedFileType | undefined;
|
|
2188
2262
|
filepath?: string | undefined;
|
|
2263
|
+
disableManifest?: boolean | undefined;
|
|
2189
2264
|
s3?: {
|
|
2190
2265
|
accessKey?: string | undefined;
|
|
2191
2266
|
secret?: string | undefined;
|
|
@@ -2212,6 +2287,7 @@ export declare const ListEgressResponse: {
|
|
|
2212
2287
|
filenamePrefix?: string | undefined;
|
|
2213
2288
|
playlistName?: string | undefined;
|
|
2214
2289
|
segmentDuration?: number | undefined;
|
|
2290
|
+
disableManifest?: boolean | undefined;
|
|
2215
2291
|
s3?: {
|
|
2216
2292
|
accessKey?: string | undefined;
|
|
2217
2293
|
secret?: string | undefined;
|
|
@@ -2249,6 +2325,7 @@ export declare const ListEgressResponse: {
|
|
|
2249
2325
|
file?: {
|
|
2250
2326
|
fileType?: EncodedFileType | undefined;
|
|
2251
2327
|
filepath?: string | undefined;
|
|
2328
|
+
disableManifest?: boolean | undefined;
|
|
2252
2329
|
s3?: {
|
|
2253
2330
|
accessKey?: string | undefined;
|
|
2254
2331
|
secret?: string | undefined;
|
|
@@ -2275,6 +2352,7 @@ export declare const ListEgressResponse: {
|
|
|
2275
2352
|
filenamePrefix?: string | undefined;
|
|
2276
2353
|
playlistName?: string | undefined;
|
|
2277
2354
|
segmentDuration?: number | undefined;
|
|
2355
|
+
disableManifest?: boolean | undefined;
|
|
2278
2356
|
s3?: {
|
|
2279
2357
|
accessKey?: string | undefined;
|
|
2280
2358
|
secret?: string | undefined;
|
|
@@ -2310,6 +2388,7 @@ export declare const ListEgressResponse: {
|
|
|
2310
2388
|
trackId?: string | undefined;
|
|
2311
2389
|
file?: {
|
|
2312
2390
|
filepath?: string | undefined;
|
|
2391
|
+
disableManifest?: boolean | undefined;
|
|
2313
2392
|
s3?: {
|
|
2314
2393
|
accessKey?: string | undefined;
|
|
2315
2394
|
secret?: string | undefined;
|
|
@@ -2387,6 +2466,7 @@ export declare const EgressInfo: {
|
|
|
2387
2466
|
file?: {
|
|
2388
2467
|
fileType?: EncodedFileType | undefined;
|
|
2389
2468
|
filepath?: string | undefined;
|
|
2469
|
+
disableManifest?: boolean | undefined;
|
|
2390
2470
|
s3?: {
|
|
2391
2471
|
accessKey?: string | undefined;
|
|
2392
2472
|
secret?: string | undefined;
|
|
@@ -2413,6 +2493,7 @@ export declare const EgressInfo: {
|
|
|
2413
2493
|
filenamePrefix?: string | undefined;
|
|
2414
2494
|
playlistName?: string | undefined;
|
|
2415
2495
|
segmentDuration?: number | undefined;
|
|
2496
|
+
disableManifest?: boolean | undefined;
|
|
2416
2497
|
s3?: {
|
|
2417
2498
|
accessKey?: string | undefined;
|
|
2418
2499
|
secret?: string | undefined;
|
|
@@ -2450,6 +2531,7 @@ export declare const EgressInfo: {
|
|
|
2450
2531
|
file?: {
|
|
2451
2532
|
fileType?: EncodedFileType | undefined;
|
|
2452
2533
|
filepath?: string | undefined;
|
|
2534
|
+
disableManifest?: boolean | undefined;
|
|
2453
2535
|
s3?: {
|
|
2454
2536
|
accessKey?: string | undefined;
|
|
2455
2537
|
secret?: string | undefined;
|
|
@@ -2476,6 +2558,7 @@ export declare const EgressInfo: {
|
|
|
2476
2558
|
filenamePrefix?: string | undefined;
|
|
2477
2559
|
playlistName?: string | undefined;
|
|
2478
2560
|
segmentDuration?: number | undefined;
|
|
2561
|
+
disableManifest?: boolean | undefined;
|
|
2479
2562
|
s3?: {
|
|
2480
2563
|
accessKey?: string | undefined;
|
|
2481
2564
|
secret?: string | undefined;
|
|
@@ -2511,6 +2594,7 @@ export declare const EgressInfo: {
|
|
|
2511
2594
|
trackId?: string | undefined;
|
|
2512
2595
|
file?: {
|
|
2513
2596
|
filepath?: string | undefined;
|
|
2597
|
+
disableManifest?: boolean | undefined;
|
|
2514
2598
|
s3?: {
|
|
2515
2599
|
accessKey?: string | undefined;
|
|
2516
2600
|
secret?: string | undefined;
|
|
@@ -2569,6 +2653,7 @@ export declare const EgressInfo: {
|
|
|
2569
2653
|
file?: {
|
|
2570
2654
|
fileType?: EncodedFileType | undefined;
|
|
2571
2655
|
filepath?: string | undefined;
|
|
2656
|
+
disableManifest?: boolean | undefined;
|
|
2572
2657
|
s3?: {
|
|
2573
2658
|
accessKey?: string | undefined;
|
|
2574
2659
|
secret?: string | undefined;
|
|
@@ -2595,6 +2680,7 @@ export declare const EgressInfo: {
|
|
|
2595
2680
|
filenamePrefix?: string | undefined;
|
|
2596
2681
|
playlistName?: string | undefined;
|
|
2597
2682
|
segmentDuration?: number | undefined;
|
|
2683
|
+
disableManifest?: boolean | undefined;
|
|
2598
2684
|
s3?: {
|
|
2599
2685
|
accessKey?: string | undefined;
|
|
2600
2686
|
secret?: string | undefined;
|
|
@@ -2633,6 +2719,7 @@ export declare const EgressInfo: {
|
|
|
2633
2719
|
file?: ({
|
|
2634
2720
|
fileType?: EncodedFileType | undefined;
|
|
2635
2721
|
filepath?: string | undefined;
|
|
2722
|
+
disableManifest?: boolean | undefined;
|
|
2636
2723
|
s3?: {
|
|
2637
2724
|
accessKey?: string | undefined;
|
|
2638
2725
|
secret?: string | undefined;
|
|
@@ -2652,6 +2739,7 @@ export declare const EgressInfo: {
|
|
|
2652
2739
|
} & {
|
|
2653
2740
|
fileType?: EncodedFileType | undefined;
|
|
2654
2741
|
filepath?: string | undefined;
|
|
2742
|
+
disableManifest?: boolean | undefined;
|
|
2655
2743
|
s3?: ({
|
|
2656
2744
|
accessKey?: string | undefined;
|
|
2657
2745
|
secret?: string | undefined;
|
|
@@ -2694,6 +2782,7 @@ export declare const EgressInfo: {
|
|
|
2694
2782
|
filenamePrefix?: string | undefined;
|
|
2695
2783
|
playlistName?: string | undefined;
|
|
2696
2784
|
segmentDuration?: number | undefined;
|
|
2785
|
+
disableManifest?: boolean | undefined;
|
|
2697
2786
|
s3?: {
|
|
2698
2787
|
accessKey?: string | undefined;
|
|
2699
2788
|
secret?: string | undefined;
|
|
@@ -2715,6 +2804,7 @@ export declare const EgressInfo: {
|
|
|
2715
2804
|
filenamePrefix?: string | undefined;
|
|
2716
2805
|
playlistName?: string | undefined;
|
|
2717
2806
|
segmentDuration?: number | undefined;
|
|
2807
|
+
disableManifest?: boolean | undefined;
|
|
2718
2808
|
s3?: ({
|
|
2719
2809
|
accessKey?: string | undefined;
|
|
2720
2810
|
secret?: string | undefined;
|
|
@@ -2775,6 +2865,7 @@ export declare const EgressInfo: {
|
|
|
2775
2865
|
file?: {
|
|
2776
2866
|
fileType?: EncodedFileType | undefined;
|
|
2777
2867
|
filepath?: string | undefined;
|
|
2868
|
+
disableManifest?: boolean | undefined;
|
|
2778
2869
|
s3?: {
|
|
2779
2870
|
accessKey?: string | undefined;
|
|
2780
2871
|
secret?: string | undefined;
|
|
@@ -2801,6 +2892,7 @@ export declare const EgressInfo: {
|
|
|
2801
2892
|
filenamePrefix?: string | undefined;
|
|
2802
2893
|
playlistName?: string | undefined;
|
|
2803
2894
|
segmentDuration?: number | undefined;
|
|
2895
|
+
disableManifest?: boolean | undefined;
|
|
2804
2896
|
s3?: {
|
|
2805
2897
|
accessKey?: string | undefined;
|
|
2806
2898
|
secret?: string | undefined;
|
|
@@ -2837,6 +2929,7 @@ export declare const EgressInfo: {
|
|
|
2837
2929
|
file?: ({
|
|
2838
2930
|
fileType?: EncodedFileType | undefined;
|
|
2839
2931
|
filepath?: string | undefined;
|
|
2932
|
+
disableManifest?: boolean | undefined;
|
|
2840
2933
|
s3?: {
|
|
2841
2934
|
accessKey?: string | undefined;
|
|
2842
2935
|
secret?: string | undefined;
|
|
@@ -2856,6 +2949,7 @@ export declare const EgressInfo: {
|
|
|
2856
2949
|
} & {
|
|
2857
2950
|
fileType?: EncodedFileType | undefined;
|
|
2858
2951
|
filepath?: string | undefined;
|
|
2952
|
+
disableManifest?: boolean | undefined;
|
|
2859
2953
|
s3?: ({
|
|
2860
2954
|
accessKey?: string | undefined;
|
|
2861
2955
|
secret?: string | undefined;
|
|
@@ -2898,6 +2992,7 @@ export declare const EgressInfo: {
|
|
|
2898
2992
|
filenamePrefix?: string | undefined;
|
|
2899
2993
|
playlistName?: string | undefined;
|
|
2900
2994
|
segmentDuration?: number | undefined;
|
|
2995
|
+
disableManifest?: boolean | undefined;
|
|
2901
2996
|
s3?: {
|
|
2902
2997
|
accessKey?: string | undefined;
|
|
2903
2998
|
secret?: string | undefined;
|
|
@@ -2919,6 +3014,7 @@ export declare const EgressInfo: {
|
|
|
2919
3014
|
filenamePrefix?: string | undefined;
|
|
2920
3015
|
playlistName?: string | undefined;
|
|
2921
3016
|
segmentDuration?: number | undefined;
|
|
3017
|
+
disableManifest?: boolean | undefined;
|
|
2922
3018
|
s3?: ({
|
|
2923
3019
|
accessKey?: string | undefined;
|
|
2924
3020
|
secret?: string | undefined;
|
|
@@ -2977,6 +3073,7 @@ export declare const EgressInfo: {
|
|
|
2977
3073
|
trackId?: string | undefined;
|
|
2978
3074
|
file?: {
|
|
2979
3075
|
filepath?: string | undefined;
|
|
3076
|
+
disableManifest?: boolean | undefined;
|
|
2980
3077
|
s3?: {
|
|
2981
3078
|
accessKey?: string | undefined;
|
|
2982
3079
|
secret?: string | undefined;
|
|
@@ -3000,6 +3097,7 @@ export declare const EgressInfo: {
|
|
|
3000
3097
|
trackId?: string | undefined;
|
|
3001
3098
|
file?: ({
|
|
3002
3099
|
filepath?: string | undefined;
|
|
3100
|
+
disableManifest?: boolean | undefined;
|
|
3003
3101
|
s3?: {
|
|
3004
3102
|
accessKey?: string | undefined;
|
|
3005
3103
|
secret?: string | undefined;
|
|
@@ -3018,6 +3116,7 @@ export declare const EgressInfo: {
|
|
|
3018
3116
|
} | undefined;
|
|
3019
3117
|
} & {
|
|
3020
3118
|
filepath?: string | undefined;
|
|
3119
|
+
disableManifest?: boolean | undefined;
|
|
3021
3120
|
s3?: ({
|
|
3022
3121
|
accessKey?: string | undefined;
|
|
3023
3122
|
secret?: string | undefined;
|
|
@@ -3207,6 +3306,64 @@ export declare const SegmentsInfo: {
|
|
|
3207
3306
|
segmentCount?: number | undefined;
|
|
3208
3307
|
} & Record<Exclude<keyof I, keyof SegmentsInfo>, never>>(object: I): SegmentsInfo;
|
|
3209
3308
|
};
|
|
3309
|
+
export declare const AutoTrackEgress: {
|
|
3310
|
+
encode(message: AutoTrackEgress, writer?: _m0.Writer): _m0.Writer;
|
|
3311
|
+
decode(input: _m0.Reader | Uint8Array, length?: number | undefined): AutoTrackEgress;
|
|
3312
|
+
fromJSON(object: any): AutoTrackEgress;
|
|
3313
|
+
toJSON(message: AutoTrackEgress): unknown;
|
|
3314
|
+
fromPartial<I extends {
|
|
3315
|
+
filepath?: string | undefined;
|
|
3316
|
+
disableManifest?: boolean | undefined;
|
|
3317
|
+
s3?: {
|
|
3318
|
+
accessKey?: string | undefined;
|
|
3319
|
+
secret?: string | undefined;
|
|
3320
|
+
region?: string | undefined;
|
|
3321
|
+
endpoint?: string | undefined;
|
|
3322
|
+
bucket?: string | undefined;
|
|
3323
|
+
} | undefined;
|
|
3324
|
+
gcp?: {
|
|
3325
|
+
credentials?: Uint8Array | undefined;
|
|
3326
|
+
bucket?: string | undefined;
|
|
3327
|
+
} | undefined;
|
|
3328
|
+
azure?: {
|
|
3329
|
+
accountName?: string | undefined;
|
|
3330
|
+
accountKey?: string | undefined;
|
|
3331
|
+
containerName?: string | undefined;
|
|
3332
|
+
} | undefined;
|
|
3333
|
+
} & {
|
|
3334
|
+
filepath?: string | undefined;
|
|
3335
|
+
disableManifest?: boolean | undefined;
|
|
3336
|
+
s3?: ({
|
|
3337
|
+
accessKey?: string | undefined;
|
|
3338
|
+
secret?: string | undefined;
|
|
3339
|
+
region?: string | undefined;
|
|
3340
|
+
endpoint?: string | undefined;
|
|
3341
|
+
bucket?: string | undefined;
|
|
3342
|
+
} & {
|
|
3343
|
+
accessKey?: string | undefined;
|
|
3344
|
+
secret?: string | undefined;
|
|
3345
|
+
region?: string | undefined;
|
|
3346
|
+
endpoint?: string | undefined;
|
|
3347
|
+
bucket?: string | undefined;
|
|
3348
|
+
} & Record<Exclude<keyof I["s3"], keyof S3Upload>, never>) | undefined;
|
|
3349
|
+
gcp?: ({
|
|
3350
|
+
credentials?: Uint8Array | undefined;
|
|
3351
|
+
bucket?: string | undefined;
|
|
3352
|
+
} & {
|
|
3353
|
+
credentials?: Uint8Array | undefined;
|
|
3354
|
+
bucket?: string | undefined;
|
|
3355
|
+
} & Record<Exclude<keyof I["gcp"], keyof GCPUpload>, never>) | undefined;
|
|
3356
|
+
azure?: ({
|
|
3357
|
+
accountName?: string | undefined;
|
|
3358
|
+
accountKey?: string | undefined;
|
|
3359
|
+
containerName?: string | undefined;
|
|
3360
|
+
} & {
|
|
3361
|
+
accountName?: string | undefined;
|
|
3362
|
+
accountKey?: string | undefined;
|
|
3363
|
+
containerName?: string | undefined;
|
|
3364
|
+
} & Record<Exclude<keyof I["azure"], keyof AzureBlobUpload>, never>) | undefined;
|
|
3365
|
+
} & Record<Exclude<keyof I, keyof AutoTrackEgress>, never>>(object: I): AutoTrackEgress;
|
|
3366
|
+
};
|
|
3210
3367
|
export interface Egress {
|
|
3211
3368
|
/** start recording or streaming a room, participant, or tracks */
|
|
3212
3369
|
StartRoomCompositeEgress(request: RoomCompositeEgressRequest): Promise<EgressInfo>;
|