livekit-server-sdk 1.0.1 → 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 +50 -12
- package/dist/EgressClient.js +39 -22
- 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 +2 -3
- package/dist/index.js +6 -8
- package/dist/index.js.map +1 -1
- package/dist/proto/livekit_egress.d.ts +250 -7
- package/dist/proto/livekit_egress.js +251 -18
- package/dist/proto/livekit_egress.js.map +1 -1
- package/dist/proto/livekit_ingress.d.ts +1803 -0
- package/dist/proto/livekit_ingress.js +1095 -0
- package/dist/proto/livekit_ingress.js.map +1 -0
- package/dist/proto/livekit_models.d.ts +84 -0
- package/dist/proto/livekit_models.js +340 -37
- package/dist/proto/livekit_models.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 +548 -58
- package/dist/proto/livekit_webhook.js +15 -19
- package/dist/proto/livekit_webhook.js.map +1 -1
- package/package.json +2 -2
- package/dist/RecordingServiceClient.d.ts +0 -25
- package/dist/RecordingServiceClient.js +0 -91
- package/dist/RecordingServiceClient.js.map +0 -1
- package/dist/proto/livekit_recording.d.ts +0 -361
- package/dist/proto/livekit_recording.js +0 -843
- package/dist/proto/livekit_recording.js.map +0 -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;
|
|
@@ -61,6 +69,7 @@ export declare enum EgressStatus {
|
|
|
61
69
|
EGRESS_COMPLETE = 3,
|
|
62
70
|
EGRESS_FAILED = 4,
|
|
63
71
|
EGRESS_ABORTED = 5,
|
|
72
|
+
EGRESS_LIMIT_REACHED = 6,
|
|
64
73
|
UNRECOGNIZED = -1
|
|
65
74
|
}
|
|
66
75
|
export declare function egressStatusFromJSON(object: any): EgressStatus;
|
|
@@ -75,7 +84,7 @@ export interface RoomCompositeEgressRequest {
|
|
|
75
84
|
audioOnly: boolean;
|
|
76
85
|
/** (default false) */
|
|
77
86
|
videoOnly: boolean;
|
|
78
|
-
/** (default https://recorder.livekit.io) */
|
|
87
|
+
/** template base url (default https://recorder.livekit.io) */
|
|
79
88
|
customBaseUrl: string;
|
|
80
89
|
file?: EncodedFileOutput | undefined;
|
|
81
90
|
stream?: StreamOutput | undefined;
|
|
@@ -113,8 +122,10 @@ export interface TrackEgressRequest {
|
|
|
113
122
|
export interface EncodedFileOutput {
|
|
114
123
|
/** (optional) */
|
|
115
124
|
fileType: EncodedFileType;
|
|
116
|
-
/** (
|
|
125
|
+
/** see egress docs for templating (default {room_name}-{time}) */
|
|
117
126
|
filepath: string;
|
|
127
|
+
/** disable upload of manifest file (default false) */
|
|
128
|
+
disableManifest: boolean;
|
|
118
129
|
s3?: S3Upload | undefined;
|
|
119
130
|
gcp?: GCPUpload | undefined;
|
|
120
131
|
azure?: AzureBlobUpload | undefined;
|
|
@@ -129,13 +140,17 @@ export interface SegmentedFileOutput {
|
|
|
129
140
|
playlistName: string;
|
|
130
141
|
/** (optional) */
|
|
131
142
|
segmentDuration: number;
|
|
143
|
+
/** disable upload of manifest file (default false) */
|
|
144
|
+
disableManifest: boolean;
|
|
132
145
|
s3?: S3Upload | undefined;
|
|
133
146
|
gcp?: GCPUpload | undefined;
|
|
134
147
|
azure?: AzureBlobUpload | undefined;
|
|
135
148
|
}
|
|
136
149
|
export interface DirectFileOutput {
|
|
137
|
-
/** (
|
|
150
|
+
/** see egress docs for templating (default {room_name}-{time}) */
|
|
138
151
|
filepath: string;
|
|
152
|
+
/** disable upload of manifest file (default false) */
|
|
153
|
+
disableManifest: boolean;
|
|
139
154
|
s3?: S3Upload | undefined;
|
|
140
155
|
gcp?: GCPUpload | undefined;
|
|
141
156
|
azure?: AzureBlobUpload | undefined;
|
|
@@ -204,6 +219,7 @@ export interface StopEgressRequest {
|
|
|
204
219
|
export interface EgressInfo {
|
|
205
220
|
egressId: string;
|
|
206
221
|
roomId: string;
|
|
222
|
+
roomName: string;
|
|
207
223
|
status: EgressStatus;
|
|
208
224
|
startedAt: number;
|
|
209
225
|
endedAt: number;
|
|
@@ -220,8 +236,19 @@ export interface StreamInfoList {
|
|
|
220
236
|
}
|
|
221
237
|
export interface StreamInfo {
|
|
222
238
|
url: string;
|
|
239
|
+
startedAt: number;
|
|
240
|
+
endedAt: number;
|
|
223
241
|
duration: number;
|
|
242
|
+
status: StreamInfo_Status;
|
|
224
243
|
}
|
|
244
|
+
export declare enum StreamInfo_Status {
|
|
245
|
+
ACTIVE = 0,
|
|
246
|
+
FINISHED = 1,
|
|
247
|
+
FAILED = 2,
|
|
248
|
+
UNRECOGNIZED = -1
|
|
249
|
+
}
|
|
250
|
+
export declare function streamInfo_StatusFromJSON(object: any): StreamInfo_Status;
|
|
251
|
+
export declare function streamInfo_StatusToJSON(object: StreamInfo_Status): string;
|
|
225
252
|
export interface FileInfo {
|
|
226
253
|
filename: string;
|
|
227
254
|
duration: number;
|
|
@@ -235,6 +262,15 @@ export interface SegmentsInfo {
|
|
|
235
262
|
playlistLocation: string;
|
|
236
263
|
segmentCount: number;
|
|
237
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
|
+
}
|
|
238
274
|
export declare const RoomCompositeEgressRequest: {
|
|
239
275
|
encode(message: RoomCompositeEgressRequest, writer?: _m0.Writer): _m0.Writer;
|
|
240
276
|
decode(input: _m0.Reader | Uint8Array, length?: number | undefined): RoomCompositeEgressRequest;
|
|
@@ -249,6 +285,7 @@ export declare const RoomCompositeEgressRequest: {
|
|
|
249
285
|
file?: {
|
|
250
286
|
fileType?: EncodedFileType | undefined;
|
|
251
287
|
filepath?: string | undefined;
|
|
288
|
+
disableManifest?: boolean | undefined;
|
|
252
289
|
s3?: {
|
|
253
290
|
accessKey?: string | undefined;
|
|
254
291
|
secret?: string | undefined;
|
|
@@ -275,6 +312,7 @@ export declare const RoomCompositeEgressRequest: {
|
|
|
275
312
|
filenamePrefix?: string | undefined;
|
|
276
313
|
playlistName?: string | undefined;
|
|
277
314
|
segmentDuration?: number | undefined;
|
|
315
|
+
disableManifest?: boolean | undefined;
|
|
278
316
|
s3?: {
|
|
279
317
|
accessKey?: string | undefined;
|
|
280
318
|
secret?: string | undefined;
|
|
@@ -313,6 +351,7 @@ export declare const RoomCompositeEgressRequest: {
|
|
|
313
351
|
file?: ({
|
|
314
352
|
fileType?: EncodedFileType | undefined;
|
|
315
353
|
filepath?: string | undefined;
|
|
354
|
+
disableManifest?: boolean | undefined;
|
|
316
355
|
s3?: {
|
|
317
356
|
accessKey?: string | undefined;
|
|
318
357
|
secret?: string | undefined;
|
|
@@ -332,6 +371,7 @@ export declare const RoomCompositeEgressRequest: {
|
|
|
332
371
|
} & {
|
|
333
372
|
fileType?: EncodedFileType | undefined;
|
|
334
373
|
filepath?: string | undefined;
|
|
374
|
+
disableManifest?: boolean | undefined;
|
|
335
375
|
s3?: ({
|
|
336
376
|
accessKey?: string | undefined;
|
|
337
377
|
secret?: string | undefined;
|
|
@@ -374,6 +414,7 @@ export declare const RoomCompositeEgressRequest: {
|
|
|
374
414
|
filenamePrefix?: string | undefined;
|
|
375
415
|
playlistName?: string | undefined;
|
|
376
416
|
segmentDuration?: number | undefined;
|
|
417
|
+
disableManifest?: boolean | undefined;
|
|
377
418
|
s3?: {
|
|
378
419
|
accessKey?: string | undefined;
|
|
379
420
|
secret?: string | undefined;
|
|
@@ -395,6 +436,7 @@ export declare const RoomCompositeEgressRequest: {
|
|
|
395
436
|
filenamePrefix?: string | undefined;
|
|
396
437
|
playlistName?: string | undefined;
|
|
397
438
|
segmentDuration?: number | undefined;
|
|
439
|
+
disableManifest?: boolean | undefined;
|
|
398
440
|
s3?: ({
|
|
399
441
|
accessKey?: string | undefined;
|
|
400
442
|
secret?: string | undefined;
|
|
@@ -461,6 +503,7 @@ export declare const TrackCompositeEgressRequest: {
|
|
|
461
503
|
file?: {
|
|
462
504
|
fileType?: EncodedFileType | undefined;
|
|
463
505
|
filepath?: string | undefined;
|
|
506
|
+
disableManifest?: boolean | undefined;
|
|
464
507
|
s3?: {
|
|
465
508
|
accessKey?: string | undefined;
|
|
466
509
|
secret?: string | undefined;
|
|
@@ -487,6 +530,7 @@ export declare const TrackCompositeEgressRequest: {
|
|
|
487
530
|
filenamePrefix?: string | undefined;
|
|
488
531
|
playlistName?: string | undefined;
|
|
489
532
|
segmentDuration?: number | undefined;
|
|
533
|
+
disableManifest?: boolean | undefined;
|
|
490
534
|
s3?: {
|
|
491
535
|
accessKey?: string | undefined;
|
|
492
536
|
secret?: string | undefined;
|
|
@@ -523,6 +567,7 @@ export declare const TrackCompositeEgressRequest: {
|
|
|
523
567
|
file?: ({
|
|
524
568
|
fileType?: EncodedFileType | undefined;
|
|
525
569
|
filepath?: string | undefined;
|
|
570
|
+
disableManifest?: boolean | undefined;
|
|
526
571
|
s3?: {
|
|
527
572
|
accessKey?: string | undefined;
|
|
528
573
|
secret?: string | undefined;
|
|
@@ -542,6 +587,7 @@ export declare const TrackCompositeEgressRequest: {
|
|
|
542
587
|
} & {
|
|
543
588
|
fileType?: EncodedFileType | undefined;
|
|
544
589
|
filepath?: string | undefined;
|
|
590
|
+
disableManifest?: boolean | undefined;
|
|
545
591
|
s3?: ({
|
|
546
592
|
accessKey?: string | undefined;
|
|
547
593
|
secret?: string | undefined;
|
|
@@ -584,6 +630,7 @@ export declare const TrackCompositeEgressRequest: {
|
|
|
584
630
|
filenamePrefix?: string | undefined;
|
|
585
631
|
playlistName?: string | undefined;
|
|
586
632
|
segmentDuration?: number | undefined;
|
|
633
|
+
disableManifest?: boolean | undefined;
|
|
587
634
|
s3?: {
|
|
588
635
|
accessKey?: string | undefined;
|
|
589
636
|
secret?: string | undefined;
|
|
@@ -605,6 +652,7 @@ export declare const TrackCompositeEgressRequest: {
|
|
|
605
652
|
filenamePrefix?: string | undefined;
|
|
606
653
|
playlistName?: string | undefined;
|
|
607
654
|
segmentDuration?: number | undefined;
|
|
655
|
+
disableManifest?: boolean | undefined;
|
|
608
656
|
s3?: ({
|
|
609
657
|
accessKey?: string | undefined;
|
|
610
658
|
secret?: string | undefined;
|
|
@@ -669,6 +717,7 @@ export declare const TrackEgressRequest: {
|
|
|
669
717
|
trackId?: string | undefined;
|
|
670
718
|
file?: {
|
|
671
719
|
filepath?: string | undefined;
|
|
720
|
+
disableManifest?: boolean | undefined;
|
|
672
721
|
s3?: {
|
|
673
722
|
accessKey?: string | undefined;
|
|
674
723
|
secret?: string | undefined;
|
|
@@ -692,6 +741,7 @@ export declare const TrackEgressRequest: {
|
|
|
692
741
|
trackId?: string | undefined;
|
|
693
742
|
file?: ({
|
|
694
743
|
filepath?: string | undefined;
|
|
744
|
+
disableManifest?: boolean | undefined;
|
|
695
745
|
s3?: {
|
|
696
746
|
accessKey?: string | undefined;
|
|
697
747
|
secret?: string | undefined;
|
|
@@ -710,6 +760,7 @@ export declare const TrackEgressRequest: {
|
|
|
710
760
|
} | undefined;
|
|
711
761
|
} & {
|
|
712
762
|
filepath?: string | undefined;
|
|
763
|
+
disableManifest?: boolean | undefined;
|
|
713
764
|
s3?: ({
|
|
714
765
|
accessKey?: string | undefined;
|
|
715
766
|
secret?: string | undefined;
|
|
@@ -751,6 +802,7 @@ export declare const EncodedFileOutput: {
|
|
|
751
802
|
fromPartial<I extends {
|
|
752
803
|
fileType?: EncodedFileType | undefined;
|
|
753
804
|
filepath?: string | undefined;
|
|
805
|
+
disableManifest?: boolean | undefined;
|
|
754
806
|
s3?: {
|
|
755
807
|
accessKey?: string | undefined;
|
|
756
808
|
secret?: string | undefined;
|
|
@@ -770,6 +822,7 @@ export declare const EncodedFileOutput: {
|
|
|
770
822
|
} & {
|
|
771
823
|
fileType?: EncodedFileType | undefined;
|
|
772
824
|
filepath?: string | undefined;
|
|
825
|
+
disableManifest?: boolean | undefined;
|
|
773
826
|
s3?: ({
|
|
774
827
|
accessKey?: string | undefined;
|
|
775
828
|
secret?: string | undefined;
|
|
@@ -811,6 +864,7 @@ export declare const SegmentedFileOutput: {
|
|
|
811
864
|
filenamePrefix?: string | undefined;
|
|
812
865
|
playlistName?: string | undefined;
|
|
813
866
|
segmentDuration?: number | undefined;
|
|
867
|
+
disableManifest?: boolean | undefined;
|
|
814
868
|
s3?: {
|
|
815
869
|
accessKey?: string | undefined;
|
|
816
870
|
secret?: string | undefined;
|
|
@@ -832,6 +886,7 @@ export declare const SegmentedFileOutput: {
|
|
|
832
886
|
filenamePrefix?: string | undefined;
|
|
833
887
|
playlistName?: string | undefined;
|
|
834
888
|
segmentDuration?: number | undefined;
|
|
889
|
+
disableManifest?: boolean | undefined;
|
|
835
890
|
s3?: ({
|
|
836
891
|
accessKey?: string | undefined;
|
|
837
892
|
secret?: string | undefined;
|
|
@@ -870,6 +925,7 @@ export declare const DirectFileOutput: {
|
|
|
870
925
|
toJSON(message: DirectFileOutput): unknown;
|
|
871
926
|
fromPartial<I extends {
|
|
872
927
|
filepath?: string | undefined;
|
|
928
|
+
disableManifest?: boolean | undefined;
|
|
873
929
|
s3?: {
|
|
874
930
|
accessKey?: string | undefined;
|
|
875
931
|
secret?: string | undefined;
|
|
@@ -888,6 +944,7 @@ export declare const DirectFileOutput: {
|
|
|
888
944
|
} | undefined;
|
|
889
945
|
} & {
|
|
890
946
|
filepath?: string | undefined;
|
|
947
|
+
disableManifest?: boolean | undefined;
|
|
891
948
|
s3?: ({
|
|
892
949
|
accessKey?: string | undefined;
|
|
893
950
|
secret?: string | undefined;
|
|
@@ -1054,6 +1111,7 @@ export declare const ListEgressResponse: {
|
|
|
1054
1111
|
items?: {
|
|
1055
1112
|
egressId?: string | undefined;
|
|
1056
1113
|
roomId?: string | undefined;
|
|
1114
|
+
roomName?: string | undefined;
|
|
1057
1115
|
status?: EgressStatus | undefined;
|
|
1058
1116
|
startedAt?: number | undefined;
|
|
1059
1117
|
endedAt?: number | undefined;
|
|
@@ -1067,6 +1125,7 @@ export declare const ListEgressResponse: {
|
|
|
1067
1125
|
file?: {
|
|
1068
1126
|
fileType?: EncodedFileType | undefined;
|
|
1069
1127
|
filepath?: string | undefined;
|
|
1128
|
+
disableManifest?: boolean | undefined;
|
|
1070
1129
|
s3?: {
|
|
1071
1130
|
accessKey?: string | undefined;
|
|
1072
1131
|
secret?: string | undefined;
|
|
@@ -1093,6 +1152,7 @@ export declare const ListEgressResponse: {
|
|
|
1093
1152
|
filenamePrefix?: string | undefined;
|
|
1094
1153
|
playlistName?: string | undefined;
|
|
1095
1154
|
segmentDuration?: number | undefined;
|
|
1155
|
+
disableManifest?: boolean | undefined;
|
|
1096
1156
|
s3?: {
|
|
1097
1157
|
accessKey?: string | undefined;
|
|
1098
1158
|
secret?: string | undefined;
|
|
@@ -1130,6 +1190,7 @@ export declare const ListEgressResponse: {
|
|
|
1130
1190
|
file?: {
|
|
1131
1191
|
fileType?: EncodedFileType | undefined;
|
|
1132
1192
|
filepath?: string | undefined;
|
|
1193
|
+
disableManifest?: boolean | undefined;
|
|
1133
1194
|
s3?: {
|
|
1134
1195
|
accessKey?: string | undefined;
|
|
1135
1196
|
secret?: string | undefined;
|
|
@@ -1156,6 +1217,7 @@ export declare const ListEgressResponse: {
|
|
|
1156
1217
|
filenamePrefix?: string | undefined;
|
|
1157
1218
|
playlistName?: string | undefined;
|
|
1158
1219
|
segmentDuration?: number | undefined;
|
|
1220
|
+
disableManifest?: boolean | undefined;
|
|
1159
1221
|
s3?: {
|
|
1160
1222
|
accessKey?: string | undefined;
|
|
1161
1223
|
secret?: string | undefined;
|
|
@@ -1191,6 +1253,7 @@ export declare const ListEgressResponse: {
|
|
|
1191
1253
|
trackId?: string | undefined;
|
|
1192
1254
|
file?: {
|
|
1193
1255
|
filepath?: string | undefined;
|
|
1256
|
+
disableManifest?: boolean | undefined;
|
|
1194
1257
|
s3?: {
|
|
1195
1258
|
accessKey?: string | undefined;
|
|
1196
1259
|
secret?: string | undefined;
|
|
@@ -1213,7 +1276,10 @@ export declare const ListEgressResponse: {
|
|
|
1213
1276
|
stream?: {
|
|
1214
1277
|
info?: {
|
|
1215
1278
|
url?: string | undefined;
|
|
1279
|
+
startedAt?: number | undefined;
|
|
1280
|
+
endedAt?: number | undefined;
|
|
1216
1281
|
duration?: number | undefined;
|
|
1282
|
+
status?: StreamInfo_Status | undefined;
|
|
1217
1283
|
}[] | undefined;
|
|
1218
1284
|
} | undefined;
|
|
1219
1285
|
file?: {
|
|
@@ -1234,6 +1300,7 @@ export declare const ListEgressResponse: {
|
|
|
1234
1300
|
items?: ({
|
|
1235
1301
|
egressId?: string | undefined;
|
|
1236
1302
|
roomId?: string | undefined;
|
|
1303
|
+
roomName?: string | undefined;
|
|
1237
1304
|
status?: EgressStatus | undefined;
|
|
1238
1305
|
startedAt?: number | undefined;
|
|
1239
1306
|
endedAt?: number | undefined;
|
|
@@ -1247,6 +1314,7 @@ export declare const ListEgressResponse: {
|
|
|
1247
1314
|
file?: {
|
|
1248
1315
|
fileType?: EncodedFileType | undefined;
|
|
1249
1316
|
filepath?: string | undefined;
|
|
1317
|
+
disableManifest?: boolean | undefined;
|
|
1250
1318
|
s3?: {
|
|
1251
1319
|
accessKey?: string | undefined;
|
|
1252
1320
|
secret?: string | undefined;
|
|
@@ -1273,6 +1341,7 @@ export declare const ListEgressResponse: {
|
|
|
1273
1341
|
filenamePrefix?: string | undefined;
|
|
1274
1342
|
playlistName?: string | undefined;
|
|
1275
1343
|
segmentDuration?: number | undefined;
|
|
1344
|
+
disableManifest?: boolean | undefined;
|
|
1276
1345
|
s3?: {
|
|
1277
1346
|
accessKey?: string | undefined;
|
|
1278
1347
|
secret?: string | undefined;
|
|
@@ -1310,6 +1379,7 @@ export declare const ListEgressResponse: {
|
|
|
1310
1379
|
file?: {
|
|
1311
1380
|
fileType?: EncodedFileType | undefined;
|
|
1312
1381
|
filepath?: string | undefined;
|
|
1382
|
+
disableManifest?: boolean | undefined;
|
|
1313
1383
|
s3?: {
|
|
1314
1384
|
accessKey?: string | undefined;
|
|
1315
1385
|
secret?: string | undefined;
|
|
@@ -1336,6 +1406,7 @@ export declare const ListEgressResponse: {
|
|
|
1336
1406
|
filenamePrefix?: string | undefined;
|
|
1337
1407
|
playlistName?: string | undefined;
|
|
1338
1408
|
segmentDuration?: number | undefined;
|
|
1409
|
+
disableManifest?: boolean | undefined;
|
|
1339
1410
|
s3?: {
|
|
1340
1411
|
accessKey?: string | undefined;
|
|
1341
1412
|
secret?: string | undefined;
|
|
@@ -1371,6 +1442,7 @@ export declare const ListEgressResponse: {
|
|
|
1371
1442
|
trackId?: string | undefined;
|
|
1372
1443
|
file?: {
|
|
1373
1444
|
filepath?: string | undefined;
|
|
1445
|
+
disableManifest?: boolean | undefined;
|
|
1374
1446
|
s3?: {
|
|
1375
1447
|
accessKey?: string | undefined;
|
|
1376
1448
|
secret?: string | undefined;
|
|
@@ -1393,7 +1465,10 @@ export declare const ListEgressResponse: {
|
|
|
1393
1465
|
stream?: {
|
|
1394
1466
|
info?: {
|
|
1395
1467
|
url?: string | undefined;
|
|
1468
|
+
startedAt?: number | undefined;
|
|
1469
|
+
endedAt?: number | undefined;
|
|
1396
1470
|
duration?: number | undefined;
|
|
1471
|
+
status?: StreamInfo_Status | undefined;
|
|
1397
1472
|
}[] | undefined;
|
|
1398
1473
|
} | undefined;
|
|
1399
1474
|
file?: {
|
|
@@ -1412,6 +1487,7 @@ export declare const ListEgressResponse: {
|
|
|
1412
1487
|
}[] & ({
|
|
1413
1488
|
egressId?: string | undefined;
|
|
1414
1489
|
roomId?: string | undefined;
|
|
1490
|
+
roomName?: string | undefined;
|
|
1415
1491
|
status?: EgressStatus | undefined;
|
|
1416
1492
|
startedAt?: number | undefined;
|
|
1417
1493
|
endedAt?: number | undefined;
|
|
@@ -1425,6 +1501,7 @@ export declare const ListEgressResponse: {
|
|
|
1425
1501
|
file?: {
|
|
1426
1502
|
fileType?: EncodedFileType | undefined;
|
|
1427
1503
|
filepath?: string | undefined;
|
|
1504
|
+
disableManifest?: boolean | undefined;
|
|
1428
1505
|
s3?: {
|
|
1429
1506
|
accessKey?: string | undefined;
|
|
1430
1507
|
secret?: string | undefined;
|
|
@@ -1451,6 +1528,7 @@ export declare const ListEgressResponse: {
|
|
|
1451
1528
|
filenamePrefix?: string | undefined;
|
|
1452
1529
|
playlistName?: string | undefined;
|
|
1453
1530
|
segmentDuration?: number | undefined;
|
|
1531
|
+
disableManifest?: boolean | undefined;
|
|
1454
1532
|
s3?: {
|
|
1455
1533
|
accessKey?: string | undefined;
|
|
1456
1534
|
secret?: string | undefined;
|
|
@@ -1488,6 +1566,7 @@ export declare const ListEgressResponse: {
|
|
|
1488
1566
|
file?: {
|
|
1489
1567
|
fileType?: EncodedFileType | undefined;
|
|
1490
1568
|
filepath?: string | undefined;
|
|
1569
|
+
disableManifest?: boolean | undefined;
|
|
1491
1570
|
s3?: {
|
|
1492
1571
|
accessKey?: string | undefined;
|
|
1493
1572
|
secret?: string | undefined;
|
|
@@ -1514,6 +1593,7 @@ export declare const ListEgressResponse: {
|
|
|
1514
1593
|
filenamePrefix?: string | undefined;
|
|
1515
1594
|
playlistName?: string | undefined;
|
|
1516
1595
|
segmentDuration?: number | undefined;
|
|
1596
|
+
disableManifest?: boolean | undefined;
|
|
1517
1597
|
s3?: {
|
|
1518
1598
|
accessKey?: string | undefined;
|
|
1519
1599
|
secret?: string | undefined;
|
|
@@ -1549,6 +1629,7 @@ export declare const ListEgressResponse: {
|
|
|
1549
1629
|
trackId?: string | undefined;
|
|
1550
1630
|
file?: {
|
|
1551
1631
|
filepath?: string | undefined;
|
|
1632
|
+
disableManifest?: boolean | undefined;
|
|
1552
1633
|
s3?: {
|
|
1553
1634
|
accessKey?: string | undefined;
|
|
1554
1635
|
secret?: string | undefined;
|
|
@@ -1571,7 +1652,10 @@ export declare const ListEgressResponse: {
|
|
|
1571
1652
|
stream?: {
|
|
1572
1653
|
info?: {
|
|
1573
1654
|
url?: string | undefined;
|
|
1655
|
+
startedAt?: number | undefined;
|
|
1656
|
+
endedAt?: number | undefined;
|
|
1574
1657
|
duration?: number | undefined;
|
|
1658
|
+
status?: StreamInfo_Status | undefined;
|
|
1575
1659
|
}[] | undefined;
|
|
1576
1660
|
} | undefined;
|
|
1577
1661
|
file?: {
|
|
@@ -1590,6 +1674,7 @@ export declare const ListEgressResponse: {
|
|
|
1590
1674
|
} & {
|
|
1591
1675
|
egressId?: string | undefined;
|
|
1592
1676
|
roomId?: string | undefined;
|
|
1677
|
+
roomName?: string | undefined;
|
|
1593
1678
|
status?: EgressStatus | undefined;
|
|
1594
1679
|
startedAt?: number | undefined;
|
|
1595
1680
|
endedAt?: number | undefined;
|
|
@@ -1603,6 +1688,7 @@ export declare const ListEgressResponse: {
|
|
|
1603
1688
|
file?: {
|
|
1604
1689
|
fileType?: EncodedFileType | undefined;
|
|
1605
1690
|
filepath?: string | undefined;
|
|
1691
|
+
disableManifest?: boolean | undefined;
|
|
1606
1692
|
s3?: {
|
|
1607
1693
|
accessKey?: string | undefined;
|
|
1608
1694
|
secret?: string | undefined;
|
|
@@ -1629,6 +1715,7 @@ export declare const ListEgressResponse: {
|
|
|
1629
1715
|
filenamePrefix?: string | undefined;
|
|
1630
1716
|
playlistName?: string | undefined;
|
|
1631
1717
|
segmentDuration?: number | undefined;
|
|
1718
|
+
disableManifest?: boolean | undefined;
|
|
1632
1719
|
s3?: {
|
|
1633
1720
|
accessKey?: string | undefined;
|
|
1634
1721
|
secret?: string | undefined;
|
|
@@ -1667,6 +1754,7 @@ export declare const ListEgressResponse: {
|
|
|
1667
1754
|
file?: ({
|
|
1668
1755
|
fileType?: EncodedFileType | undefined;
|
|
1669
1756
|
filepath?: string | undefined;
|
|
1757
|
+
disableManifest?: boolean | undefined;
|
|
1670
1758
|
s3?: {
|
|
1671
1759
|
accessKey?: string | undefined;
|
|
1672
1760
|
secret?: string | undefined;
|
|
@@ -1686,6 +1774,7 @@ export declare const ListEgressResponse: {
|
|
|
1686
1774
|
} & {
|
|
1687
1775
|
fileType?: EncodedFileType | undefined;
|
|
1688
1776
|
filepath?: string | undefined;
|
|
1777
|
+
disableManifest?: boolean | undefined;
|
|
1689
1778
|
s3?: ({
|
|
1690
1779
|
accessKey?: string | undefined;
|
|
1691
1780
|
secret?: string | undefined;
|
|
@@ -1728,6 +1817,7 @@ export declare const ListEgressResponse: {
|
|
|
1728
1817
|
filenamePrefix?: string | undefined;
|
|
1729
1818
|
playlistName?: string | undefined;
|
|
1730
1819
|
segmentDuration?: number | undefined;
|
|
1820
|
+
disableManifest?: boolean | undefined;
|
|
1731
1821
|
s3?: {
|
|
1732
1822
|
accessKey?: string | undefined;
|
|
1733
1823
|
secret?: string | undefined;
|
|
@@ -1749,6 +1839,7 @@ export declare const ListEgressResponse: {
|
|
|
1749
1839
|
filenamePrefix?: string | undefined;
|
|
1750
1840
|
playlistName?: string | undefined;
|
|
1751
1841
|
segmentDuration?: number | undefined;
|
|
1842
|
+
disableManifest?: boolean | undefined;
|
|
1752
1843
|
s3?: ({
|
|
1753
1844
|
accessKey?: string | undefined;
|
|
1754
1845
|
secret?: string | undefined;
|
|
@@ -1809,6 +1900,7 @@ export declare const ListEgressResponse: {
|
|
|
1809
1900
|
file?: {
|
|
1810
1901
|
fileType?: EncodedFileType | undefined;
|
|
1811
1902
|
filepath?: string | undefined;
|
|
1903
|
+
disableManifest?: boolean | undefined;
|
|
1812
1904
|
s3?: {
|
|
1813
1905
|
accessKey?: string | undefined;
|
|
1814
1906
|
secret?: string | undefined;
|
|
@@ -1835,6 +1927,7 @@ export declare const ListEgressResponse: {
|
|
|
1835
1927
|
filenamePrefix?: string | undefined;
|
|
1836
1928
|
playlistName?: string | undefined;
|
|
1837
1929
|
segmentDuration?: number | undefined;
|
|
1930
|
+
disableManifest?: boolean | undefined;
|
|
1838
1931
|
s3?: {
|
|
1839
1932
|
accessKey?: string | undefined;
|
|
1840
1933
|
secret?: string | undefined;
|
|
@@ -1871,6 +1964,7 @@ export declare const ListEgressResponse: {
|
|
|
1871
1964
|
file?: ({
|
|
1872
1965
|
fileType?: EncodedFileType | undefined;
|
|
1873
1966
|
filepath?: string | undefined;
|
|
1967
|
+
disableManifest?: boolean | undefined;
|
|
1874
1968
|
s3?: {
|
|
1875
1969
|
accessKey?: string | undefined;
|
|
1876
1970
|
secret?: string | undefined;
|
|
@@ -1890,6 +1984,7 @@ export declare const ListEgressResponse: {
|
|
|
1890
1984
|
} & {
|
|
1891
1985
|
fileType?: EncodedFileType | undefined;
|
|
1892
1986
|
filepath?: string | undefined;
|
|
1987
|
+
disableManifest?: boolean | undefined;
|
|
1893
1988
|
s3?: ({
|
|
1894
1989
|
accessKey?: string | undefined;
|
|
1895
1990
|
secret?: string | undefined;
|
|
@@ -1932,6 +2027,7 @@ export declare const ListEgressResponse: {
|
|
|
1932
2027
|
filenamePrefix?: string | undefined;
|
|
1933
2028
|
playlistName?: string | undefined;
|
|
1934
2029
|
segmentDuration?: number | undefined;
|
|
2030
|
+
disableManifest?: boolean | undefined;
|
|
1935
2031
|
s3?: {
|
|
1936
2032
|
accessKey?: string | undefined;
|
|
1937
2033
|
secret?: string | undefined;
|
|
@@ -1953,6 +2049,7 @@ export declare const ListEgressResponse: {
|
|
|
1953
2049
|
filenamePrefix?: string | undefined;
|
|
1954
2050
|
playlistName?: string | undefined;
|
|
1955
2051
|
segmentDuration?: number | undefined;
|
|
2052
|
+
disableManifest?: boolean | undefined;
|
|
1956
2053
|
s3?: ({
|
|
1957
2054
|
accessKey?: string | undefined;
|
|
1958
2055
|
secret?: string | undefined;
|
|
@@ -2011,6 +2108,7 @@ export declare const ListEgressResponse: {
|
|
|
2011
2108
|
trackId?: string | undefined;
|
|
2012
2109
|
file?: {
|
|
2013
2110
|
filepath?: string | undefined;
|
|
2111
|
+
disableManifest?: boolean | undefined;
|
|
2014
2112
|
s3?: {
|
|
2015
2113
|
accessKey?: string | undefined;
|
|
2016
2114
|
secret?: string | undefined;
|
|
@@ -2034,6 +2132,7 @@ export declare const ListEgressResponse: {
|
|
|
2034
2132
|
trackId?: string | undefined;
|
|
2035
2133
|
file?: ({
|
|
2036
2134
|
filepath?: string | undefined;
|
|
2135
|
+
disableManifest?: boolean | undefined;
|
|
2037
2136
|
s3?: {
|
|
2038
2137
|
accessKey?: string | undefined;
|
|
2039
2138
|
secret?: string | undefined;
|
|
@@ -2052,6 +2151,7 @@ export declare const ListEgressResponse: {
|
|
|
2052
2151
|
} | undefined;
|
|
2053
2152
|
} & {
|
|
2054
2153
|
filepath?: string | undefined;
|
|
2154
|
+
disableManifest?: boolean | undefined;
|
|
2055
2155
|
s3?: ({
|
|
2056
2156
|
accessKey?: string | undefined;
|
|
2057
2157
|
secret?: string | undefined;
|
|
@@ -2087,21 +2187,36 @@ export declare const ListEgressResponse: {
|
|
|
2087
2187
|
stream?: ({
|
|
2088
2188
|
info?: {
|
|
2089
2189
|
url?: string | undefined;
|
|
2190
|
+
startedAt?: number | undefined;
|
|
2191
|
+
endedAt?: number | undefined;
|
|
2090
2192
|
duration?: number | undefined;
|
|
2193
|
+
status?: StreamInfo_Status | undefined;
|
|
2091
2194
|
}[] | undefined;
|
|
2092
2195
|
} & {
|
|
2093
2196
|
info?: ({
|
|
2094
2197
|
url?: string | undefined;
|
|
2198
|
+
startedAt?: number | undefined;
|
|
2199
|
+
endedAt?: number | undefined;
|
|
2095
2200
|
duration?: number | undefined;
|
|
2201
|
+
status?: StreamInfo_Status | undefined;
|
|
2096
2202
|
}[] & ({
|
|
2097
2203
|
url?: string | undefined;
|
|
2204
|
+
startedAt?: number | undefined;
|
|
2205
|
+
endedAt?: number | undefined;
|
|
2098
2206
|
duration?: number | undefined;
|
|
2207
|
+
status?: StreamInfo_Status | undefined;
|
|
2099
2208
|
} & {
|
|
2100
2209
|
url?: string | undefined;
|
|
2210
|
+
startedAt?: number | undefined;
|
|
2211
|
+
endedAt?: number | undefined;
|
|
2101
2212
|
duration?: number | undefined;
|
|
2213
|
+
status?: StreamInfo_Status | undefined;
|
|
2102
2214
|
} & Record<Exclude<keyof I["items"][number]["stream"]["info"][number], keyof StreamInfo>, never>)[] & Record<Exclude<keyof I["items"][number]["stream"]["info"], number | keyof {
|
|
2103
2215
|
url?: string | undefined;
|
|
2216
|
+
startedAt?: number | undefined;
|
|
2217
|
+
endedAt?: number | undefined;
|
|
2104
2218
|
duration?: number | undefined;
|
|
2219
|
+
status?: StreamInfo_Status | undefined;
|
|
2105
2220
|
}[]>, never>) | undefined;
|
|
2106
2221
|
} & Record<Exclude<keyof I["items"][number]["stream"], "info">, never>) | undefined;
|
|
2107
2222
|
file?: ({
|
|
@@ -2131,6 +2246,7 @@ export declare const ListEgressResponse: {
|
|
|
2131
2246
|
} & Record<Exclude<keyof I["items"][number], keyof EgressInfo>, never>)[] & Record<Exclude<keyof I["items"], number | keyof {
|
|
2132
2247
|
egressId?: string | undefined;
|
|
2133
2248
|
roomId?: string | undefined;
|
|
2249
|
+
roomName?: string | undefined;
|
|
2134
2250
|
status?: EgressStatus | undefined;
|
|
2135
2251
|
startedAt?: number | undefined;
|
|
2136
2252
|
endedAt?: number | undefined;
|
|
@@ -2144,6 +2260,7 @@ export declare const ListEgressResponse: {
|
|
|
2144
2260
|
file?: {
|
|
2145
2261
|
fileType?: EncodedFileType | undefined;
|
|
2146
2262
|
filepath?: string | undefined;
|
|
2263
|
+
disableManifest?: boolean | undefined;
|
|
2147
2264
|
s3?: {
|
|
2148
2265
|
accessKey?: string | undefined;
|
|
2149
2266
|
secret?: string | undefined;
|
|
@@ -2170,6 +2287,7 @@ export declare const ListEgressResponse: {
|
|
|
2170
2287
|
filenamePrefix?: string | undefined;
|
|
2171
2288
|
playlistName?: string | undefined;
|
|
2172
2289
|
segmentDuration?: number | undefined;
|
|
2290
|
+
disableManifest?: boolean | undefined;
|
|
2173
2291
|
s3?: {
|
|
2174
2292
|
accessKey?: string | undefined;
|
|
2175
2293
|
secret?: string | undefined;
|
|
@@ -2207,6 +2325,7 @@ export declare const ListEgressResponse: {
|
|
|
2207
2325
|
file?: {
|
|
2208
2326
|
fileType?: EncodedFileType | undefined;
|
|
2209
2327
|
filepath?: string | undefined;
|
|
2328
|
+
disableManifest?: boolean | undefined;
|
|
2210
2329
|
s3?: {
|
|
2211
2330
|
accessKey?: string | undefined;
|
|
2212
2331
|
secret?: string | undefined;
|
|
@@ -2233,6 +2352,7 @@ export declare const ListEgressResponse: {
|
|
|
2233
2352
|
filenamePrefix?: string | undefined;
|
|
2234
2353
|
playlistName?: string | undefined;
|
|
2235
2354
|
segmentDuration?: number | undefined;
|
|
2355
|
+
disableManifest?: boolean | undefined;
|
|
2236
2356
|
s3?: {
|
|
2237
2357
|
accessKey?: string | undefined;
|
|
2238
2358
|
secret?: string | undefined;
|
|
@@ -2268,6 +2388,7 @@ export declare const ListEgressResponse: {
|
|
|
2268
2388
|
trackId?: string | undefined;
|
|
2269
2389
|
file?: {
|
|
2270
2390
|
filepath?: string | undefined;
|
|
2391
|
+
disableManifest?: boolean | undefined;
|
|
2271
2392
|
s3?: {
|
|
2272
2393
|
accessKey?: string | undefined;
|
|
2273
2394
|
secret?: string | undefined;
|
|
@@ -2290,7 +2411,10 @@ export declare const ListEgressResponse: {
|
|
|
2290
2411
|
stream?: {
|
|
2291
2412
|
info?: {
|
|
2292
2413
|
url?: string | undefined;
|
|
2414
|
+
startedAt?: number | undefined;
|
|
2415
|
+
endedAt?: number | undefined;
|
|
2293
2416
|
duration?: number | undefined;
|
|
2417
|
+
status?: StreamInfo_Status | undefined;
|
|
2294
2418
|
}[] | undefined;
|
|
2295
2419
|
} | undefined;
|
|
2296
2420
|
file?: {
|
|
@@ -2328,6 +2452,7 @@ export declare const EgressInfo: {
|
|
|
2328
2452
|
fromPartial<I extends {
|
|
2329
2453
|
egressId?: string | undefined;
|
|
2330
2454
|
roomId?: string | undefined;
|
|
2455
|
+
roomName?: string | undefined;
|
|
2331
2456
|
status?: EgressStatus | undefined;
|
|
2332
2457
|
startedAt?: number | undefined;
|
|
2333
2458
|
endedAt?: number | undefined;
|
|
@@ -2341,6 +2466,7 @@ export declare const EgressInfo: {
|
|
|
2341
2466
|
file?: {
|
|
2342
2467
|
fileType?: EncodedFileType | undefined;
|
|
2343
2468
|
filepath?: string | undefined;
|
|
2469
|
+
disableManifest?: boolean | undefined;
|
|
2344
2470
|
s3?: {
|
|
2345
2471
|
accessKey?: string | undefined;
|
|
2346
2472
|
secret?: string | undefined;
|
|
@@ -2367,6 +2493,7 @@ export declare const EgressInfo: {
|
|
|
2367
2493
|
filenamePrefix?: string | undefined;
|
|
2368
2494
|
playlistName?: string | undefined;
|
|
2369
2495
|
segmentDuration?: number | undefined;
|
|
2496
|
+
disableManifest?: boolean | undefined;
|
|
2370
2497
|
s3?: {
|
|
2371
2498
|
accessKey?: string | undefined;
|
|
2372
2499
|
secret?: string | undefined;
|
|
@@ -2404,6 +2531,7 @@ export declare const EgressInfo: {
|
|
|
2404
2531
|
file?: {
|
|
2405
2532
|
fileType?: EncodedFileType | undefined;
|
|
2406
2533
|
filepath?: string | undefined;
|
|
2534
|
+
disableManifest?: boolean | undefined;
|
|
2407
2535
|
s3?: {
|
|
2408
2536
|
accessKey?: string | undefined;
|
|
2409
2537
|
secret?: string | undefined;
|
|
@@ -2430,6 +2558,7 @@ export declare const EgressInfo: {
|
|
|
2430
2558
|
filenamePrefix?: string | undefined;
|
|
2431
2559
|
playlistName?: string | undefined;
|
|
2432
2560
|
segmentDuration?: number | undefined;
|
|
2561
|
+
disableManifest?: boolean | undefined;
|
|
2433
2562
|
s3?: {
|
|
2434
2563
|
accessKey?: string | undefined;
|
|
2435
2564
|
secret?: string | undefined;
|
|
@@ -2465,6 +2594,7 @@ export declare const EgressInfo: {
|
|
|
2465
2594
|
trackId?: string | undefined;
|
|
2466
2595
|
file?: {
|
|
2467
2596
|
filepath?: string | undefined;
|
|
2597
|
+
disableManifest?: boolean | undefined;
|
|
2468
2598
|
s3?: {
|
|
2469
2599
|
accessKey?: string | undefined;
|
|
2470
2600
|
secret?: string | undefined;
|
|
@@ -2487,7 +2617,10 @@ export declare const EgressInfo: {
|
|
|
2487
2617
|
stream?: {
|
|
2488
2618
|
info?: {
|
|
2489
2619
|
url?: string | undefined;
|
|
2620
|
+
startedAt?: number | undefined;
|
|
2621
|
+
endedAt?: number | undefined;
|
|
2490
2622
|
duration?: number | undefined;
|
|
2623
|
+
status?: StreamInfo_Status | undefined;
|
|
2491
2624
|
}[] | undefined;
|
|
2492
2625
|
} | undefined;
|
|
2493
2626
|
file?: {
|
|
@@ -2506,6 +2639,7 @@ export declare const EgressInfo: {
|
|
|
2506
2639
|
} & {
|
|
2507
2640
|
egressId?: string | undefined;
|
|
2508
2641
|
roomId?: string | undefined;
|
|
2642
|
+
roomName?: string | undefined;
|
|
2509
2643
|
status?: EgressStatus | undefined;
|
|
2510
2644
|
startedAt?: number | undefined;
|
|
2511
2645
|
endedAt?: number | undefined;
|
|
@@ -2519,6 +2653,7 @@ export declare const EgressInfo: {
|
|
|
2519
2653
|
file?: {
|
|
2520
2654
|
fileType?: EncodedFileType | undefined;
|
|
2521
2655
|
filepath?: string | undefined;
|
|
2656
|
+
disableManifest?: boolean | undefined;
|
|
2522
2657
|
s3?: {
|
|
2523
2658
|
accessKey?: string | undefined;
|
|
2524
2659
|
secret?: string | undefined;
|
|
@@ -2545,6 +2680,7 @@ export declare const EgressInfo: {
|
|
|
2545
2680
|
filenamePrefix?: string | undefined;
|
|
2546
2681
|
playlistName?: string | undefined;
|
|
2547
2682
|
segmentDuration?: number | undefined;
|
|
2683
|
+
disableManifest?: boolean | undefined;
|
|
2548
2684
|
s3?: {
|
|
2549
2685
|
accessKey?: string | undefined;
|
|
2550
2686
|
secret?: string | undefined;
|
|
@@ -2583,6 +2719,7 @@ export declare const EgressInfo: {
|
|
|
2583
2719
|
file?: ({
|
|
2584
2720
|
fileType?: EncodedFileType | undefined;
|
|
2585
2721
|
filepath?: string | undefined;
|
|
2722
|
+
disableManifest?: boolean | undefined;
|
|
2586
2723
|
s3?: {
|
|
2587
2724
|
accessKey?: string | undefined;
|
|
2588
2725
|
secret?: string | undefined;
|
|
@@ -2602,6 +2739,7 @@ export declare const EgressInfo: {
|
|
|
2602
2739
|
} & {
|
|
2603
2740
|
fileType?: EncodedFileType | undefined;
|
|
2604
2741
|
filepath?: string | undefined;
|
|
2742
|
+
disableManifest?: boolean | undefined;
|
|
2605
2743
|
s3?: ({
|
|
2606
2744
|
accessKey?: string | undefined;
|
|
2607
2745
|
secret?: string | undefined;
|
|
@@ -2644,6 +2782,7 @@ export declare const EgressInfo: {
|
|
|
2644
2782
|
filenamePrefix?: string | undefined;
|
|
2645
2783
|
playlistName?: string | undefined;
|
|
2646
2784
|
segmentDuration?: number | undefined;
|
|
2785
|
+
disableManifest?: boolean | undefined;
|
|
2647
2786
|
s3?: {
|
|
2648
2787
|
accessKey?: string | undefined;
|
|
2649
2788
|
secret?: string | undefined;
|
|
@@ -2665,6 +2804,7 @@ export declare const EgressInfo: {
|
|
|
2665
2804
|
filenamePrefix?: string | undefined;
|
|
2666
2805
|
playlistName?: string | undefined;
|
|
2667
2806
|
segmentDuration?: number | undefined;
|
|
2807
|
+
disableManifest?: boolean | undefined;
|
|
2668
2808
|
s3?: ({
|
|
2669
2809
|
accessKey?: string | undefined;
|
|
2670
2810
|
secret?: string | undefined;
|
|
@@ -2725,6 +2865,7 @@ export declare const EgressInfo: {
|
|
|
2725
2865
|
file?: {
|
|
2726
2866
|
fileType?: EncodedFileType | undefined;
|
|
2727
2867
|
filepath?: string | undefined;
|
|
2868
|
+
disableManifest?: boolean | undefined;
|
|
2728
2869
|
s3?: {
|
|
2729
2870
|
accessKey?: string | undefined;
|
|
2730
2871
|
secret?: string | undefined;
|
|
@@ -2751,6 +2892,7 @@ export declare const EgressInfo: {
|
|
|
2751
2892
|
filenamePrefix?: string | undefined;
|
|
2752
2893
|
playlistName?: string | undefined;
|
|
2753
2894
|
segmentDuration?: number | undefined;
|
|
2895
|
+
disableManifest?: boolean | undefined;
|
|
2754
2896
|
s3?: {
|
|
2755
2897
|
accessKey?: string | undefined;
|
|
2756
2898
|
secret?: string | undefined;
|
|
@@ -2787,6 +2929,7 @@ export declare const EgressInfo: {
|
|
|
2787
2929
|
file?: ({
|
|
2788
2930
|
fileType?: EncodedFileType | undefined;
|
|
2789
2931
|
filepath?: string | undefined;
|
|
2932
|
+
disableManifest?: boolean | undefined;
|
|
2790
2933
|
s3?: {
|
|
2791
2934
|
accessKey?: string | undefined;
|
|
2792
2935
|
secret?: string | undefined;
|
|
@@ -2806,6 +2949,7 @@ export declare const EgressInfo: {
|
|
|
2806
2949
|
} & {
|
|
2807
2950
|
fileType?: EncodedFileType | undefined;
|
|
2808
2951
|
filepath?: string | undefined;
|
|
2952
|
+
disableManifest?: boolean | undefined;
|
|
2809
2953
|
s3?: ({
|
|
2810
2954
|
accessKey?: string | undefined;
|
|
2811
2955
|
secret?: string | undefined;
|
|
@@ -2848,6 +2992,7 @@ export declare const EgressInfo: {
|
|
|
2848
2992
|
filenamePrefix?: string | undefined;
|
|
2849
2993
|
playlistName?: string | undefined;
|
|
2850
2994
|
segmentDuration?: number | undefined;
|
|
2995
|
+
disableManifest?: boolean | undefined;
|
|
2851
2996
|
s3?: {
|
|
2852
2997
|
accessKey?: string | undefined;
|
|
2853
2998
|
secret?: string | undefined;
|
|
@@ -2869,6 +3014,7 @@ export declare const EgressInfo: {
|
|
|
2869
3014
|
filenamePrefix?: string | undefined;
|
|
2870
3015
|
playlistName?: string | undefined;
|
|
2871
3016
|
segmentDuration?: number | undefined;
|
|
3017
|
+
disableManifest?: boolean | undefined;
|
|
2872
3018
|
s3?: ({
|
|
2873
3019
|
accessKey?: string | undefined;
|
|
2874
3020
|
secret?: string | undefined;
|
|
@@ -2927,6 +3073,7 @@ export declare const EgressInfo: {
|
|
|
2927
3073
|
trackId?: string | undefined;
|
|
2928
3074
|
file?: {
|
|
2929
3075
|
filepath?: string | undefined;
|
|
3076
|
+
disableManifest?: boolean | undefined;
|
|
2930
3077
|
s3?: {
|
|
2931
3078
|
accessKey?: string | undefined;
|
|
2932
3079
|
secret?: string | undefined;
|
|
@@ -2950,6 +3097,7 @@ export declare const EgressInfo: {
|
|
|
2950
3097
|
trackId?: string | undefined;
|
|
2951
3098
|
file?: ({
|
|
2952
3099
|
filepath?: string | undefined;
|
|
3100
|
+
disableManifest?: boolean | undefined;
|
|
2953
3101
|
s3?: {
|
|
2954
3102
|
accessKey?: string | undefined;
|
|
2955
3103
|
secret?: string | undefined;
|
|
@@ -2968,6 +3116,7 @@ export declare const EgressInfo: {
|
|
|
2968
3116
|
} | undefined;
|
|
2969
3117
|
} & {
|
|
2970
3118
|
filepath?: string | undefined;
|
|
3119
|
+
disableManifest?: boolean | undefined;
|
|
2971
3120
|
s3?: ({
|
|
2972
3121
|
accessKey?: string | undefined;
|
|
2973
3122
|
secret?: string | undefined;
|
|
@@ -3003,21 +3152,36 @@ export declare const EgressInfo: {
|
|
|
3003
3152
|
stream?: ({
|
|
3004
3153
|
info?: {
|
|
3005
3154
|
url?: string | undefined;
|
|
3155
|
+
startedAt?: number | undefined;
|
|
3156
|
+
endedAt?: number | undefined;
|
|
3006
3157
|
duration?: number | undefined;
|
|
3158
|
+
status?: StreamInfo_Status | undefined;
|
|
3007
3159
|
}[] | undefined;
|
|
3008
3160
|
} & {
|
|
3009
3161
|
info?: ({
|
|
3010
3162
|
url?: string | undefined;
|
|
3163
|
+
startedAt?: number | undefined;
|
|
3164
|
+
endedAt?: number | undefined;
|
|
3011
3165
|
duration?: number | undefined;
|
|
3166
|
+
status?: StreamInfo_Status | undefined;
|
|
3012
3167
|
}[] & ({
|
|
3013
3168
|
url?: string | undefined;
|
|
3169
|
+
startedAt?: number | undefined;
|
|
3170
|
+
endedAt?: number | undefined;
|
|
3014
3171
|
duration?: number | undefined;
|
|
3172
|
+
status?: StreamInfo_Status | undefined;
|
|
3015
3173
|
} & {
|
|
3016
3174
|
url?: string | undefined;
|
|
3175
|
+
startedAt?: number | undefined;
|
|
3176
|
+
endedAt?: number | undefined;
|
|
3017
3177
|
duration?: number | undefined;
|
|
3178
|
+
status?: StreamInfo_Status | undefined;
|
|
3018
3179
|
} & Record<Exclude<keyof I["stream"]["info"][number], keyof StreamInfo>, never>)[] & Record<Exclude<keyof I["stream"]["info"], number | keyof {
|
|
3019
3180
|
url?: string | undefined;
|
|
3181
|
+
startedAt?: number | undefined;
|
|
3182
|
+
endedAt?: number | undefined;
|
|
3020
3183
|
duration?: number | undefined;
|
|
3184
|
+
status?: StreamInfo_Status | undefined;
|
|
3021
3185
|
}[]>, never>) | undefined;
|
|
3022
3186
|
} & Record<Exclude<keyof I["stream"], "info">, never>) | undefined;
|
|
3023
3187
|
file?: ({
|
|
@@ -3054,21 +3218,36 @@ export declare const StreamInfoList: {
|
|
|
3054
3218
|
fromPartial<I extends {
|
|
3055
3219
|
info?: {
|
|
3056
3220
|
url?: string | undefined;
|
|
3221
|
+
startedAt?: number | undefined;
|
|
3222
|
+
endedAt?: number | undefined;
|
|
3057
3223
|
duration?: number | undefined;
|
|
3224
|
+
status?: StreamInfo_Status | undefined;
|
|
3058
3225
|
}[] | undefined;
|
|
3059
3226
|
} & {
|
|
3060
3227
|
info?: ({
|
|
3061
3228
|
url?: string | undefined;
|
|
3229
|
+
startedAt?: number | undefined;
|
|
3230
|
+
endedAt?: number | undefined;
|
|
3062
3231
|
duration?: number | undefined;
|
|
3232
|
+
status?: StreamInfo_Status | undefined;
|
|
3063
3233
|
}[] & ({
|
|
3064
3234
|
url?: string | undefined;
|
|
3235
|
+
startedAt?: number | undefined;
|
|
3236
|
+
endedAt?: number | undefined;
|
|
3065
3237
|
duration?: number | undefined;
|
|
3238
|
+
status?: StreamInfo_Status | undefined;
|
|
3066
3239
|
} & {
|
|
3067
3240
|
url?: string | undefined;
|
|
3241
|
+
startedAt?: number | undefined;
|
|
3242
|
+
endedAt?: number | undefined;
|
|
3068
3243
|
duration?: number | undefined;
|
|
3244
|
+
status?: StreamInfo_Status | undefined;
|
|
3069
3245
|
} & Record<Exclude<keyof I["info"][number], keyof StreamInfo>, never>)[] & Record<Exclude<keyof I["info"], number | keyof {
|
|
3070
3246
|
url?: string | undefined;
|
|
3247
|
+
startedAt?: number | undefined;
|
|
3248
|
+
endedAt?: number | undefined;
|
|
3071
3249
|
duration?: number | undefined;
|
|
3250
|
+
status?: StreamInfo_Status | undefined;
|
|
3072
3251
|
}[]>, never>) | undefined;
|
|
3073
3252
|
} & Record<Exclude<keyof I, "info">, never>>(object: I): StreamInfoList;
|
|
3074
3253
|
};
|
|
@@ -3079,10 +3258,16 @@ export declare const StreamInfo: {
|
|
|
3079
3258
|
toJSON(message: StreamInfo): unknown;
|
|
3080
3259
|
fromPartial<I extends {
|
|
3081
3260
|
url?: string | undefined;
|
|
3261
|
+
startedAt?: number | undefined;
|
|
3262
|
+
endedAt?: number | undefined;
|
|
3082
3263
|
duration?: number | undefined;
|
|
3264
|
+
status?: StreamInfo_Status | undefined;
|
|
3083
3265
|
} & {
|
|
3084
3266
|
url?: string | undefined;
|
|
3267
|
+
startedAt?: number | undefined;
|
|
3268
|
+
endedAt?: number | undefined;
|
|
3085
3269
|
duration?: number | undefined;
|
|
3270
|
+
status?: StreamInfo_Status | undefined;
|
|
3086
3271
|
} & Record<Exclude<keyof I, keyof StreamInfo>, never>>(object: I): StreamInfo;
|
|
3087
3272
|
};
|
|
3088
3273
|
export declare const FileInfo: {
|
|
@@ -3121,6 +3306,64 @@ export declare const SegmentsInfo: {
|
|
|
3121
3306
|
segmentCount?: number | undefined;
|
|
3122
3307
|
} & Record<Exclude<keyof I, keyof SegmentsInfo>, never>>(object: I): SegmentsInfo;
|
|
3123
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
|
+
};
|
|
3124
3367
|
export interface Egress {
|
|
3125
3368
|
/** start recording or streaming a room, participant, or tracks */
|
|
3126
3369
|
StartRoomCompositeEgress(request: RoomCompositeEgressRequest): Promise<EgressInfo>;
|