@livekit/rtc-node 0.12.1 → 0.12.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/audio_frame.d.cts +32 -0
- package/dist/audio_frame.d.ts +12 -5
- package/dist/audio_resampler.d.cts +60 -0
- package/dist/audio_resampler.d.ts +12 -3
- package/dist/audio_source.d.cts +37 -0
- package/dist/audio_source.d.ts +13 -5
- package/dist/audio_stream.d.cts +38 -0
- package/dist/audio_stream.d.ts +17 -5
- package/dist/e2ee.d.cts +48 -0
- package/dist/e2ee.d.ts +12 -8
- package/dist/ffi_client.d.cts +35 -0
- package/dist/ffi_client.d.ts +22 -10
- package/dist/index.d.cts +57 -0
- package/dist/index.d.ts +28 -20
- package/dist/napi/native.d.d.cts +21 -0
- package/dist/napi/native.d.d.ts +21 -0
- package/dist/participant.d.cts +126 -0
- package/dist/participant.d.ts +28 -14
- package/dist/proto/audio_frame_pb.d.cts +813 -0
- package/dist/proto/audio_frame_pb.d.ts +90 -86
- package/dist/proto/e2ee_pb.d.cts +585 -0
- package/dist/proto/e2ee_pb.d.ts +60 -58
- package/dist/proto/ffi_pb.d.cts +851 -0
- package/dist/proto/ffi_pb.d.ts +35 -30
- package/dist/proto/handle_pb.d.cts +33 -0
- package/dist/proto/handle_pb.d.ts +8 -6
- package/dist/proto/participant_pb.d.cts +93 -0
- package/dist/proto/participant_pb.d.ts +13 -11
- package/dist/proto/room_pb.d.cts +2072 -0
- package/dist/proto/room_pb.d.ts +198 -196
- package/dist/proto/rpc_pb.d.cts +237 -0
- package/dist/proto/rpc_pb.d.ts +28 -26
- package/dist/proto/stats_pb.d.cts +1653 -0
- package/dist/proto/stats_pb.d.ts +96 -94
- package/dist/proto/track_pb.d.cts +402 -0
- package/dist/proto/track_pb.d.ts +47 -45
- package/dist/proto/video_frame_pb.d.cts +617 -0
- package/dist/proto/video_frame_pb.d.ts +64 -60
- package/dist/room.d.cts +134 -0
- package/dist/room.d.ts +36 -22
- package/dist/rpc.d.cts +82 -0
- package/dist/rpc.d.ts +11 -7
- package/dist/track.d.cts +46 -0
- package/dist/track.d.ts +25 -14
- package/dist/track_publication.d.cts +48 -0
- package/dist/track_publication.d.ts +20 -8
- package/dist/transcription.d.cts +15 -0
- package/dist/transcription.d.ts +4 -3
- package/dist/types.d.cts +9 -0
- package/dist/types.d.ts +3 -2
- package/dist/version.cjs +1 -1
- package/dist/version.cjs.map +1 -1
- package/dist/version.d.cts +3 -0
- package/dist/version.d.ts +3 -2
- package/dist/version.js +1 -1
- package/dist/version.js.map +1 -1
- package/dist/video_frame.d.cts +25 -0
- package/dist/video_frame.d.ts +11 -4
- package/dist/video_source.d.cts +22 -0
- package/dist/video_source.d.ts +13 -6
- package/dist/video_stream.d.cts +41 -0
- package/dist/video_stream.d.ts +18 -6
- package/package.json +14 -9
- package/src/version.ts +1 -1
package/dist/proto/e2ee_pb.d.ts
CHANGED
|
@@ -1,13 +1,14 @@
|
|
|
1
|
-
import
|
|
2
|
-
import
|
|
1
|
+
import { GenFile, GenMessage, GenEnum } from '@bufbuild/protobuf/codegenv1';
|
|
2
|
+
import { Message } from '@bufbuild/protobuf';
|
|
3
|
+
|
|
3
4
|
/**
|
|
4
5
|
* Describes the file e2ee.proto.
|
|
5
6
|
*/
|
|
6
|
-
|
|
7
|
+
declare const file_e2ee: GenFile;
|
|
7
8
|
/**
|
|
8
9
|
* @generated from message livekit.proto.FrameCryptor
|
|
9
10
|
*/
|
|
10
|
-
|
|
11
|
+
type FrameCryptor = Message<"livekit.proto.FrameCryptor"> & {
|
|
11
12
|
/**
|
|
12
13
|
* @generated from field: required string participant_identity = 1;
|
|
13
14
|
*/
|
|
@@ -29,11 +30,11 @@ export type FrameCryptor = Message<"livekit.proto.FrameCryptor"> & {
|
|
|
29
30
|
* Describes the message livekit.proto.FrameCryptor.
|
|
30
31
|
* Use `create(FrameCryptorSchema)` to create a new message.
|
|
31
32
|
*/
|
|
32
|
-
|
|
33
|
+
declare const FrameCryptorSchema: GenMessage<FrameCryptor>;
|
|
33
34
|
/**
|
|
34
35
|
* @generated from message livekit.proto.KeyProviderOptions
|
|
35
36
|
*/
|
|
36
|
-
|
|
37
|
+
type KeyProviderOptions = Message<"livekit.proto.KeyProviderOptions"> & {
|
|
37
38
|
/**
|
|
38
39
|
* Only specify if you want to use a shared_key
|
|
39
40
|
*
|
|
@@ -59,11 +60,11 @@ export type KeyProviderOptions = Message<"livekit.proto.KeyProviderOptions"> & {
|
|
|
59
60
|
* Describes the message livekit.proto.KeyProviderOptions.
|
|
60
61
|
* Use `create(KeyProviderOptionsSchema)` to create a new message.
|
|
61
62
|
*/
|
|
62
|
-
|
|
63
|
+
declare const KeyProviderOptionsSchema: GenMessage<KeyProviderOptions>;
|
|
63
64
|
/**
|
|
64
65
|
* @generated from message livekit.proto.E2eeOptions
|
|
65
66
|
*/
|
|
66
|
-
|
|
67
|
+
type E2eeOptions = Message<"livekit.proto.E2eeOptions"> & {
|
|
67
68
|
/**
|
|
68
69
|
* @generated from field: required livekit.proto.EncryptionType encryption_type = 1;
|
|
69
70
|
*/
|
|
@@ -77,11 +78,11 @@ export type E2eeOptions = Message<"livekit.proto.E2eeOptions"> & {
|
|
|
77
78
|
* Describes the message livekit.proto.E2eeOptions.
|
|
78
79
|
* Use `create(E2eeOptionsSchema)` to create a new message.
|
|
79
80
|
*/
|
|
80
|
-
|
|
81
|
+
declare const E2eeOptionsSchema: GenMessage<E2eeOptions>;
|
|
81
82
|
/**
|
|
82
83
|
* @generated from message livekit.proto.E2eeManagerSetEnabledRequest
|
|
83
84
|
*/
|
|
84
|
-
|
|
85
|
+
type E2eeManagerSetEnabledRequest = Message<"livekit.proto.E2eeManagerSetEnabledRequest"> & {
|
|
85
86
|
/**
|
|
86
87
|
* @generated from field: required bool enabled = 1;
|
|
87
88
|
*/
|
|
@@ -91,29 +92,29 @@ export type E2eeManagerSetEnabledRequest = Message<"livekit.proto.E2eeManagerSet
|
|
|
91
92
|
* Describes the message livekit.proto.E2eeManagerSetEnabledRequest.
|
|
92
93
|
* Use `create(E2eeManagerSetEnabledRequestSchema)` to create a new message.
|
|
93
94
|
*/
|
|
94
|
-
|
|
95
|
+
declare const E2eeManagerSetEnabledRequestSchema: GenMessage<E2eeManagerSetEnabledRequest>;
|
|
95
96
|
/**
|
|
96
97
|
* @generated from message livekit.proto.E2eeManagerSetEnabledResponse
|
|
97
98
|
*/
|
|
98
|
-
|
|
99
|
+
type E2eeManagerSetEnabledResponse = Message<"livekit.proto.E2eeManagerSetEnabledResponse"> & {};
|
|
99
100
|
/**
|
|
100
101
|
* Describes the message livekit.proto.E2eeManagerSetEnabledResponse.
|
|
101
102
|
* Use `create(E2eeManagerSetEnabledResponseSchema)` to create a new message.
|
|
102
103
|
*/
|
|
103
|
-
|
|
104
|
+
declare const E2eeManagerSetEnabledResponseSchema: GenMessage<E2eeManagerSetEnabledResponse>;
|
|
104
105
|
/**
|
|
105
106
|
* @generated from message livekit.proto.E2eeManagerGetFrameCryptorsRequest
|
|
106
107
|
*/
|
|
107
|
-
|
|
108
|
+
type E2eeManagerGetFrameCryptorsRequest = Message<"livekit.proto.E2eeManagerGetFrameCryptorsRequest"> & {};
|
|
108
109
|
/**
|
|
109
110
|
* Describes the message livekit.proto.E2eeManagerGetFrameCryptorsRequest.
|
|
110
111
|
* Use `create(E2eeManagerGetFrameCryptorsRequestSchema)` to create a new message.
|
|
111
112
|
*/
|
|
112
|
-
|
|
113
|
+
declare const E2eeManagerGetFrameCryptorsRequestSchema: GenMessage<E2eeManagerGetFrameCryptorsRequest>;
|
|
113
114
|
/**
|
|
114
115
|
* @generated from message livekit.proto.E2eeManagerGetFrameCryptorsResponse
|
|
115
116
|
*/
|
|
116
|
-
|
|
117
|
+
type E2eeManagerGetFrameCryptorsResponse = Message<"livekit.proto.E2eeManagerGetFrameCryptorsResponse"> & {
|
|
117
118
|
/**
|
|
118
119
|
* @generated from field: repeated livekit.proto.FrameCryptor frame_cryptors = 1;
|
|
119
120
|
*/
|
|
@@ -123,11 +124,11 @@ export type E2eeManagerGetFrameCryptorsResponse = Message<"livekit.proto.E2eeMan
|
|
|
123
124
|
* Describes the message livekit.proto.E2eeManagerGetFrameCryptorsResponse.
|
|
124
125
|
* Use `create(E2eeManagerGetFrameCryptorsResponseSchema)` to create a new message.
|
|
125
126
|
*/
|
|
126
|
-
|
|
127
|
+
declare const E2eeManagerGetFrameCryptorsResponseSchema: GenMessage<E2eeManagerGetFrameCryptorsResponse>;
|
|
127
128
|
/**
|
|
128
129
|
* @generated from message livekit.proto.FrameCryptorSetEnabledRequest
|
|
129
130
|
*/
|
|
130
|
-
|
|
131
|
+
type FrameCryptorSetEnabledRequest = Message<"livekit.proto.FrameCryptorSetEnabledRequest"> & {
|
|
131
132
|
/**
|
|
132
133
|
* @generated from field: required string participant_identity = 1;
|
|
133
134
|
*/
|
|
@@ -145,20 +146,20 @@ export type FrameCryptorSetEnabledRequest = Message<"livekit.proto.FrameCryptorS
|
|
|
145
146
|
* Describes the message livekit.proto.FrameCryptorSetEnabledRequest.
|
|
146
147
|
* Use `create(FrameCryptorSetEnabledRequestSchema)` to create a new message.
|
|
147
148
|
*/
|
|
148
|
-
|
|
149
|
+
declare const FrameCryptorSetEnabledRequestSchema: GenMessage<FrameCryptorSetEnabledRequest>;
|
|
149
150
|
/**
|
|
150
151
|
* @generated from message livekit.proto.FrameCryptorSetEnabledResponse
|
|
151
152
|
*/
|
|
152
|
-
|
|
153
|
+
type FrameCryptorSetEnabledResponse = Message<"livekit.proto.FrameCryptorSetEnabledResponse"> & {};
|
|
153
154
|
/**
|
|
154
155
|
* Describes the message livekit.proto.FrameCryptorSetEnabledResponse.
|
|
155
156
|
* Use `create(FrameCryptorSetEnabledResponseSchema)` to create a new message.
|
|
156
157
|
*/
|
|
157
|
-
|
|
158
|
+
declare const FrameCryptorSetEnabledResponseSchema: GenMessage<FrameCryptorSetEnabledResponse>;
|
|
158
159
|
/**
|
|
159
160
|
* @generated from message livekit.proto.FrameCryptorSetKeyIndexRequest
|
|
160
161
|
*/
|
|
161
|
-
|
|
162
|
+
type FrameCryptorSetKeyIndexRequest = Message<"livekit.proto.FrameCryptorSetKeyIndexRequest"> & {
|
|
162
163
|
/**
|
|
163
164
|
* @generated from field: required string participant_identity = 1;
|
|
164
165
|
*/
|
|
@@ -176,20 +177,20 @@ export type FrameCryptorSetKeyIndexRequest = Message<"livekit.proto.FrameCryptor
|
|
|
176
177
|
* Describes the message livekit.proto.FrameCryptorSetKeyIndexRequest.
|
|
177
178
|
* Use `create(FrameCryptorSetKeyIndexRequestSchema)` to create a new message.
|
|
178
179
|
*/
|
|
179
|
-
|
|
180
|
+
declare const FrameCryptorSetKeyIndexRequestSchema: GenMessage<FrameCryptorSetKeyIndexRequest>;
|
|
180
181
|
/**
|
|
181
182
|
* @generated from message livekit.proto.FrameCryptorSetKeyIndexResponse
|
|
182
183
|
*/
|
|
183
|
-
|
|
184
|
+
type FrameCryptorSetKeyIndexResponse = Message<"livekit.proto.FrameCryptorSetKeyIndexResponse"> & {};
|
|
184
185
|
/**
|
|
185
186
|
* Describes the message livekit.proto.FrameCryptorSetKeyIndexResponse.
|
|
186
187
|
* Use `create(FrameCryptorSetKeyIndexResponseSchema)` to create a new message.
|
|
187
188
|
*/
|
|
188
|
-
|
|
189
|
+
declare const FrameCryptorSetKeyIndexResponseSchema: GenMessage<FrameCryptorSetKeyIndexResponse>;
|
|
189
190
|
/**
|
|
190
191
|
* @generated from message livekit.proto.SetSharedKeyRequest
|
|
191
192
|
*/
|
|
192
|
-
|
|
193
|
+
type SetSharedKeyRequest = Message<"livekit.proto.SetSharedKeyRequest"> & {
|
|
193
194
|
/**
|
|
194
195
|
* @generated from field: required bytes shared_key = 1;
|
|
195
196
|
*/
|
|
@@ -203,20 +204,20 @@ export type SetSharedKeyRequest = Message<"livekit.proto.SetSharedKeyRequest"> &
|
|
|
203
204
|
* Describes the message livekit.proto.SetSharedKeyRequest.
|
|
204
205
|
* Use `create(SetSharedKeyRequestSchema)` to create a new message.
|
|
205
206
|
*/
|
|
206
|
-
|
|
207
|
+
declare const SetSharedKeyRequestSchema: GenMessage<SetSharedKeyRequest>;
|
|
207
208
|
/**
|
|
208
209
|
* @generated from message livekit.proto.SetSharedKeyResponse
|
|
209
210
|
*/
|
|
210
|
-
|
|
211
|
+
type SetSharedKeyResponse = Message<"livekit.proto.SetSharedKeyResponse"> & {};
|
|
211
212
|
/**
|
|
212
213
|
* Describes the message livekit.proto.SetSharedKeyResponse.
|
|
213
214
|
* Use `create(SetSharedKeyResponseSchema)` to create a new message.
|
|
214
215
|
*/
|
|
215
|
-
|
|
216
|
+
declare const SetSharedKeyResponseSchema: GenMessage<SetSharedKeyResponse>;
|
|
216
217
|
/**
|
|
217
218
|
* @generated from message livekit.proto.RatchetSharedKeyRequest
|
|
218
219
|
*/
|
|
219
|
-
|
|
220
|
+
type RatchetSharedKeyRequest = Message<"livekit.proto.RatchetSharedKeyRequest"> & {
|
|
220
221
|
/**
|
|
221
222
|
* @generated from field: required int32 key_index = 1;
|
|
222
223
|
*/
|
|
@@ -226,11 +227,11 @@ export type RatchetSharedKeyRequest = Message<"livekit.proto.RatchetSharedKeyReq
|
|
|
226
227
|
* Describes the message livekit.proto.RatchetSharedKeyRequest.
|
|
227
228
|
* Use `create(RatchetSharedKeyRequestSchema)` to create a new message.
|
|
228
229
|
*/
|
|
229
|
-
|
|
230
|
+
declare const RatchetSharedKeyRequestSchema: GenMessage<RatchetSharedKeyRequest>;
|
|
230
231
|
/**
|
|
231
232
|
* @generated from message livekit.proto.RatchetSharedKeyResponse
|
|
232
233
|
*/
|
|
233
|
-
|
|
234
|
+
type RatchetSharedKeyResponse = Message<"livekit.proto.RatchetSharedKeyResponse"> & {
|
|
234
235
|
/**
|
|
235
236
|
* @generated from field: optional bytes new_key = 1;
|
|
236
237
|
*/
|
|
@@ -240,11 +241,11 @@ export type RatchetSharedKeyResponse = Message<"livekit.proto.RatchetSharedKeyRe
|
|
|
240
241
|
* Describes the message livekit.proto.RatchetSharedKeyResponse.
|
|
241
242
|
* Use `create(RatchetSharedKeyResponseSchema)` to create a new message.
|
|
242
243
|
*/
|
|
243
|
-
|
|
244
|
+
declare const RatchetSharedKeyResponseSchema: GenMessage<RatchetSharedKeyResponse>;
|
|
244
245
|
/**
|
|
245
246
|
* @generated from message livekit.proto.GetSharedKeyRequest
|
|
246
247
|
*/
|
|
247
|
-
|
|
248
|
+
type GetSharedKeyRequest = Message<"livekit.proto.GetSharedKeyRequest"> & {
|
|
248
249
|
/**
|
|
249
250
|
* @generated from field: required int32 key_index = 1;
|
|
250
251
|
*/
|
|
@@ -254,11 +255,11 @@ export type GetSharedKeyRequest = Message<"livekit.proto.GetSharedKeyRequest"> &
|
|
|
254
255
|
* Describes the message livekit.proto.GetSharedKeyRequest.
|
|
255
256
|
* Use `create(GetSharedKeyRequestSchema)` to create a new message.
|
|
256
257
|
*/
|
|
257
|
-
|
|
258
|
+
declare const GetSharedKeyRequestSchema: GenMessage<GetSharedKeyRequest>;
|
|
258
259
|
/**
|
|
259
260
|
* @generated from message livekit.proto.GetSharedKeyResponse
|
|
260
261
|
*/
|
|
261
|
-
|
|
262
|
+
type GetSharedKeyResponse = Message<"livekit.proto.GetSharedKeyResponse"> & {
|
|
262
263
|
/**
|
|
263
264
|
* @generated from field: optional bytes key = 1;
|
|
264
265
|
*/
|
|
@@ -268,11 +269,11 @@ export type GetSharedKeyResponse = Message<"livekit.proto.GetSharedKeyResponse">
|
|
|
268
269
|
* Describes the message livekit.proto.GetSharedKeyResponse.
|
|
269
270
|
* Use `create(GetSharedKeyResponseSchema)` to create a new message.
|
|
270
271
|
*/
|
|
271
|
-
|
|
272
|
+
declare const GetSharedKeyResponseSchema: GenMessage<GetSharedKeyResponse>;
|
|
272
273
|
/**
|
|
273
274
|
* @generated from message livekit.proto.SetKeyRequest
|
|
274
275
|
*/
|
|
275
|
-
|
|
276
|
+
type SetKeyRequest = Message<"livekit.proto.SetKeyRequest"> & {
|
|
276
277
|
/**
|
|
277
278
|
* @generated from field: required string participant_identity = 1;
|
|
278
279
|
*/
|
|
@@ -290,20 +291,20 @@ export type SetKeyRequest = Message<"livekit.proto.SetKeyRequest"> & {
|
|
|
290
291
|
* Describes the message livekit.proto.SetKeyRequest.
|
|
291
292
|
* Use `create(SetKeyRequestSchema)` to create a new message.
|
|
292
293
|
*/
|
|
293
|
-
|
|
294
|
+
declare const SetKeyRequestSchema: GenMessage<SetKeyRequest>;
|
|
294
295
|
/**
|
|
295
296
|
* @generated from message livekit.proto.SetKeyResponse
|
|
296
297
|
*/
|
|
297
|
-
|
|
298
|
+
type SetKeyResponse = Message<"livekit.proto.SetKeyResponse"> & {};
|
|
298
299
|
/**
|
|
299
300
|
* Describes the message livekit.proto.SetKeyResponse.
|
|
300
301
|
* Use `create(SetKeyResponseSchema)` to create a new message.
|
|
301
302
|
*/
|
|
302
|
-
|
|
303
|
+
declare const SetKeyResponseSchema: GenMessage<SetKeyResponse>;
|
|
303
304
|
/**
|
|
304
305
|
* @generated from message livekit.proto.RatchetKeyRequest
|
|
305
306
|
*/
|
|
306
|
-
|
|
307
|
+
type RatchetKeyRequest = Message<"livekit.proto.RatchetKeyRequest"> & {
|
|
307
308
|
/**
|
|
308
309
|
* @generated from field: required string participant_identity = 1;
|
|
309
310
|
*/
|
|
@@ -317,11 +318,11 @@ export type RatchetKeyRequest = Message<"livekit.proto.RatchetKeyRequest"> & {
|
|
|
317
318
|
* Describes the message livekit.proto.RatchetKeyRequest.
|
|
318
319
|
* Use `create(RatchetKeyRequestSchema)` to create a new message.
|
|
319
320
|
*/
|
|
320
|
-
|
|
321
|
+
declare const RatchetKeyRequestSchema: GenMessage<RatchetKeyRequest>;
|
|
321
322
|
/**
|
|
322
323
|
* @generated from message livekit.proto.RatchetKeyResponse
|
|
323
324
|
*/
|
|
324
|
-
|
|
325
|
+
type RatchetKeyResponse = Message<"livekit.proto.RatchetKeyResponse"> & {
|
|
325
326
|
/**
|
|
326
327
|
* @generated from field: optional bytes new_key = 1;
|
|
327
328
|
*/
|
|
@@ -331,11 +332,11 @@ export type RatchetKeyResponse = Message<"livekit.proto.RatchetKeyResponse"> & {
|
|
|
331
332
|
* Describes the message livekit.proto.RatchetKeyResponse.
|
|
332
333
|
* Use `create(RatchetKeyResponseSchema)` to create a new message.
|
|
333
334
|
*/
|
|
334
|
-
|
|
335
|
+
declare const RatchetKeyResponseSchema: GenMessage<RatchetKeyResponse>;
|
|
335
336
|
/**
|
|
336
337
|
* @generated from message livekit.proto.GetKeyRequest
|
|
337
338
|
*/
|
|
338
|
-
|
|
339
|
+
type GetKeyRequest = Message<"livekit.proto.GetKeyRequest"> & {
|
|
339
340
|
/**
|
|
340
341
|
* @generated from field: required string participant_identity = 1;
|
|
341
342
|
*/
|
|
@@ -349,11 +350,11 @@ export type GetKeyRequest = Message<"livekit.proto.GetKeyRequest"> & {
|
|
|
349
350
|
* Describes the message livekit.proto.GetKeyRequest.
|
|
350
351
|
* Use `create(GetKeyRequestSchema)` to create a new message.
|
|
351
352
|
*/
|
|
352
|
-
|
|
353
|
+
declare const GetKeyRequestSchema: GenMessage<GetKeyRequest>;
|
|
353
354
|
/**
|
|
354
355
|
* @generated from message livekit.proto.GetKeyResponse
|
|
355
356
|
*/
|
|
356
|
-
|
|
357
|
+
type GetKeyResponse = Message<"livekit.proto.GetKeyResponse"> & {
|
|
357
358
|
/**
|
|
358
359
|
* @generated from field: optional bytes key = 1;
|
|
359
360
|
*/
|
|
@@ -363,11 +364,11 @@ export type GetKeyResponse = Message<"livekit.proto.GetKeyResponse"> & {
|
|
|
363
364
|
* Describes the message livekit.proto.GetKeyResponse.
|
|
364
365
|
* Use `create(GetKeyResponseSchema)` to create a new message.
|
|
365
366
|
*/
|
|
366
|
-
|
|
367
|
+
declare const GetKeyResponseSchema: GenMessage<GetKeyResponse>;
|
|
367
368
|
/**
|
|
368
369
|
* @generated from message livekit.proto.E2eeRequest
|
|
369
370
|
*/
|
|
370
|
-
|
|
371
|
+
type E2eeRequest = Message<"livekit.proto.E2eeRequest"> & {
|
|
371
372
|
/**
|
|
372
373
|
* @generated from field: required uint64 room_handle = 1;
|
|
373
374
|
*/
|
|
@@ -444,11 +445,11 @@ export type E2eeRequest = Message<"livekit.proto.E2eeRequest"> & {
|
|
|
444
445
|
* Describes the message livekit.proto.E2eeRequest.
|
|
445
446
|
* Use `create(E2eeRequestSchema)` to create a new message.
|
|
446
447
|
*/
|
|
447
|
-
|
|
448
|
+
declare const E2eeRequestSchema: GenMessage<E2eeRequest>;
|
|
448
449
|
/**
|
|
449
450
|
* @generated from message livekit.proto.E2eeResponse
|
|
450
451
|
*/
|
|
451
|
-
|
|
452
|
+
type E2eeResponse = Message<"livekit.proto.E2eeResponse"> & {
|
|
452
453
|
/**
|
|
453
454
|
* @generated from oneof livekit.proto.E2eeResponse.message
|
|
454
455
|
*/
|
|
@@ -521,11 +522,11 @@ export type E2eeResponse = Message<"livekit.proto.E2eeResponse"> & {
|
|
|
521
522
|
* Describes the message livekit.proto.E2eeResponse.
|
|
522
523
|
* Use `create(E2eeResponseSchema)` to create a new message.
|
|
523
524
|
*/
|
|
524
|
-
|
|
525
|
+
declare const E2eeResponseSchema: GenMessage<E2eeResponse>;
|
|
525
526
|
/**
|
|
526
527
|
* @generated from enum livekit.proto.EncryptionType
|
|
527
528
|
*/
|
|
528
|
-
|
|
529
|
+
declare enum EncryptionType {
|
|
529
530
|
/**
|
|
530
531
|
* @generated from enum value: NONE = 0;
|
|
531
532
|
*/
|
|
@@ -542,11 +543,11 @@ export declare enum EncryptionType {
|
|
|
542
543
|
/**
|
|
543
544
|
* Describes the enum livekit.proto.EncryptionType.
|
|
544
545
|
*/
|
|
545
|
-
|
|
546
|
+
declare const EncryptionTypeSchema: GenEnum<EncryptionType>;
|
|
546
547
|
/**
|
|
547
548
|
* @generated from enum livekit.proto.EncryptionState
|
|
548
549
|
*/
|
|
549
|
-
|
|
550
|
+
declare enum EncryptionState {
|
|
550
551
|
/**
|
|
551
552
|
* @generated from enum value: NEW = 0;
|
|
552
553
|
*/
|
|
@@ -579,5 +580,6 @@ export declare enum EncryptionState {
|
|
|
579
580
|
/**
|
|
580
581
|
* Describes the enum livekit.proto.EncryptionState.
|
|
581
582
|
*/
|
|
582
|
-
|
|
583
|
-
|
|
583
|
+
declare const EncryptionStateSchema: GenEnum<EncryptionState>;
|
|
584
|
+
|
|
585
|
+
export { type E2eeManagerGetFrameCryptorsRequest, E2eeManagerGetFrameCryptorsRequestSchema, type E2eeManagerGetFrameCryptorsResponse, E2eeManagerGetFrameCryptorsResponseSchema, type E2eeManagerSetEnabledRequest, E2eeManagerSetEnabledRequestSchema, type E2eeManagerSetEnabledResponse, E2eeManagerSetEnabledResponseSchema, type E2eeOptions, E2eeOptionsSchema, type E2eeRequest, E2eeRequestSchema, type E2eeResponse, E2eeResponseSchema, EncryptionState, EncryptionStateSchema, EncryptionType, EncryptionTypeSchema, type FrameCryptor, FrameCryptorSchema, type FrameCryptorSetEnabledRequest, FrameCryptorSetEnabledRequestSchema, type FrameCryptorSetEnabledResponse, FrameCryptorSetEnabledResponseSchema, type FrameCryptorSetKeyIndexRequest, FrameCryptorSetKeyIndexRequestSchema, type FrameCryptorSetKeyIndexResponse, FrameCryptorSetKeyIndexResponseSchema, type GetKeyRequest, GetKeyRequestSchema, type GetKeyResponse, GetKeyResponseSchema, type GetSharedKeyRequest, GetSharedKeyRequestSchema, type GetSharedKeyResponse, GetSharedKeyResponseSchema, type KeyProviderOptions, KeyProviderOptionsSchema, type RatchetKeyRequest, RatchetKeyRequestSchema, type RatchetKeyResponse, RatchetKeyResponseSchema, type RatchetSharedKeyRequest, RatchetSharedKeyRequestSchema, type RatchetSharedKeyResponse, RatchetSharedKeyResponseSchema, type SetKeyRequest, SetKeyRequestSchema, type SetKeyResponse, SetKeyResponseSchema, type SetSharedKeyRequest, SetSharedKeyRequestSchema, type SetSharedKeyResponse, SetSharedKeyResponseSchema, file_e2ee };
|