@livekit/rtc-node 0.12.0 → 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.cjs +0 -6
- package/dist/ffi_client.cjs.map +1 -1
- package/dist/ffi_client.d.cts +35 -0
- package/dist/ffi_client.d.ts +22 -10
- package/dist/ffi_client.d.ts.map +1 -1
- package/dist/ffi_client.js +0 -6
- package/dist/ffi_client.js.map +1 -1
- package/dist/index.cjs +0 -22
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +57 -0
- package/dist/index.d.ts +27 -19
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +9 -20
- package/dist/index.js.map +1 -1
- package/dist/napi/native.d.cjs.map +1 -1
- package/dist/napi/native.d.d.cts +21 -0
- package/dist/napi/native.d.d.ts +21 -0
- package/dist/napi/native.d.ts +5 -5
- package/dist/native.d.ts +5 -5
- 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/ffi_client.ts +4 -4
- package/src/index.ts +14 -8
- package/src/napi/native.d.ts +5 -5
- package/src/version.ts +1 -1
|
@@ -0,0 +1,237 @@
|
|
|
1
|
+
import { GenFile, GenMessage } from '@bufbuild/protobuf/codegenv1';
|
|
2
|
+
import { Message } from '@bufbuild/protobuf';
|
|
3
|
+
|
|
4
|
+
/**
|
|
5
|
+
* Describes the file rpc.proto.
|
|
6
|
+
*/
|
|
7
|
+
declare const file_rpc: GenFile;
|
|
8
|
+
/**
|
|
9
|
+
* @generated from message livekit.proto.RpcError
|
|
10
|
+
*/
|
|
11
|
+
type RpcError = Message<"livekit.proto.RpcError"> & {
|
|
12
|
+
/**
|
|
13
|
+
* @generated from field: required uint32 code = 1;
|
|
14
|
+
*/
|
|
15
|
+
code: number;
|
|
16
|
+
/**
|
|
17
|
+
* @generated from field: required string message = 2;
|
|
18
|
+
*/
|
|
19
|
+
message: string;
|
|
20
|
+
/**
|
|
21
|
+
* @generated from field: optional string data = 3;
|
|
22
|
+
*/
|
|
23
|
+
data: string;
|
|
24
|
+
};
|
|
25
|
+
/**
|
|
26
|
+
* Describes the message livekit.proto.RpcError.
|
|
27
|
+
* Use `create(RpcErrorSchema)` to create a new message.
|
|
28
|
+
*/
|
|
29
|
+
declare const RpcErrorSchema: GenMessage<RpcError>;
|
|
30
|
+
/**
|
|
31
|
+
* FFI Requests
|
|
32
|
+
*
|
|
33
|
+
* @generated from message livekit.proto.PerformRpcRequest
|
|
34
|
+
*/
|
|
35
|
+
type PerformRpcRequest = Message<"livekit.proto.PerformRpcRequest"> & {
|
|
36
|
+
/**
|
|
37
|
+
* @generated from field: required uint64 local_participant_handle = 1;
|
|
38
|
+
*/
|
|
39
|
+
localParticipantHandle: bigint;
|
|
40
|
+
/**
|
|
41
|
+
* @generated from field: required string destination_identity = 2;
|
|
42
|
+
*/
|
|
43
|
+
destinationIdentity: string;
|
|
44
|
+
/**
|
|
45
|
+
* @generated from field: required string method = 3;
|
|
46
|
+
*/
|
|
47
|
+
method: string;
|
|
48
|
+
/**
|
|
49
|
+
* @generated from field: required string payload = 4;
|
|
50
|
+
*/
|
|
51
|
+
payload: string;
|
|
52
|
+
/**
|
|
53
|
+
* @generated from field: optional uint32 response_timeout_ms = 5;
|
|
54
|
+
*/
|
|
55
|
+
responseTimeoutMs: number;
|
|
56
|
+
};
|
|
57
|
+
/**
|
|
58
|
+
* Describes the message livekit.proto.PerformRpcRequest.
|
|
59
|
+
* Use `create(PerformRpcRequestSchema)` to create a new message.
|
|
60
|
+
*/
|
|
61
|
+
declare const PerformRpcRequestSchema: GenMessage<PerformRpcRequest>;
|
|
62
|
+
/**
|
|
63
|
+
* @generated from message livekit.proto.RegisterRpcMethodRequest
|
|
64
|
+
*/
|
|
65
|
+
type RegisterRpcMethodRequest = Message<"livekit.proto.RegisterRpcMethodRequest"> & {
|
|
66
|
+
/**
|
|
67
|
+
* @generated from field: required uint64 local_participant_handle = 1;
|
|
68
|
+
*/
|
|
69
|
+
localParticipantHandle: bigint;
|
|
70
|
+
/**
|
|
71
|
+
* @generated from field: required string method = 2;
|
|
72
|
+
*/
|
|
73
|
+
method: string;
|
|
74
|
+
};
|
|
75
|
+
/**
|
|
76
|
+
* Describes the message livekit.proto.RegisterRpcMethodRequest.
|
|
77
|
+
* Use `create(RegisterRpcMethodRequestSchema)` to create a new message.
|
|
78
|
+
*/
|
|
79
|
+
declare const RegisterRpcMethodRequestSchema: GenMessage<RegisterRpcMethodRequest>;
|
|
80
|
+
/**
|
|
81
|
+
* @generated from message livekit.proto.UnregisterRpcMethodRequest
|
|
82
|
+
*/
|
|
83
|
+
type UnregisterRpcMethodRequest = Message<"livekit.proto.UnregisterRpcMethodRequest"> & {
|
|
84
|
+
/**
|
|
85
|
+
* @generated from field: required uint64 local_participant_handle = 1;
|
|
86
|
+
*/
|
|
87
|
+
localParticipantHandle: bigint;
|
|
88
|
+
/**
|
|
89
|
+
* @generated from field: required string method = 2;
|
|
90
|
+
*/
|
|
91
|
+
method: string;
|
|
92
|
+
};
|
|
93
|
+
/**
|
|
94
|
+
* Describes the message livekit.proto.UnregisterRpcMethodRequest.
|
|
95
|
+
* Use `create(UnregisterRpcMethodRequestSchema)` to create a new message.
|
|
96
|
+
*/
|
|
97
|
+
declare const UnregisterRpcMethodRequestSchema: GenMessage<UnregisterRpcMethodRequest>;
|
|
98
|
+
/**
|
|
99
|
+
* @generated from message livekit.proto.RpcMethodInvocationResponseRequest
|
|
100
|
+
*/
|
|
101
|
+
type RpcMethodInvocationResponseRequest = Message<"livekit.proto.RpcMethodInvocationResponseRequest"> & {
|
|
102
|
+
/**
|
|
103
|
+
* @generated from field: required uint64 local_participant_handle = 1;
|
|
104
|
+
*/
|
|
105
|
+
localParticipantHandle: bigint;
|
|
106
|
+
/**
|
|
107
|
+
* @generated from field: required uint64 invocation_id = 2;
|
|
108
|
+
*/
|
|
109
|
+
invocationId: bigint;
|
|
110
|
+
/**
|
|
111
|
+
* @generated from field: optional string payload = 3;
|
|
112
|
+
*/
|
|
113
|
+
payload: string;
|
|
114
|
+
/**
|
|
115
|
+
* @generated from field: optional livekit.proto.RpcError error = 4;
|
|
116
|
+
*/
|
|
117
|
+
error?: RpcError;
|
|
118
|
+
};
|
|
119
|
+
/**
|
|
120
|
+
* Describes the message livekit.proto.RpcMethodInvocationResponseRequest.
|
|
121
|
+
* Use `create(RpcMethodInvocationResponseRequestSchema)` to create a new message.
|
|
122
|
+
*/
|
|
123
|
+
declare const RpcMethodInvocationResponseRequestSchema: GenMessage<RpcMethodInvocationResponseRequest>;
|
|
124
|
+
/**
|
|
125
|
+
* FFI Responses
|
|
126
|
+
*
|
|
127
|
+
* @generated from message livekit.proto.PerformRpcResponse
|
|
128
|
+
*/
|
|
129
|
+
type PerformRpcResponse = Message<"livekit.proto.PerformRpcResponse"> & {
|
|
130
|
+
/**
|
|
131
|
+
* @generated from field: required uint64 async_id = 1;
|
|
132
|
+
*/
|
|
133
|
+
asyncId: bigint;
|
|
134
|
+
};
|
|
135
|
+
/**
|
|
136
|
+
* Describes the message livekit.proto.PerformRpcResponse.
|
|
137
|
+
* Use `create(PerformRpcResponseSchema)` to create a new message.
|
|
138
|
+
*/
|
|
139
|
+
declare const PerformRpcResponseSchema: GenMessage<PerformRpcResponse>;
|
|
140
|
+
/**
|
|
141
|
+
* @generated from message livekit.proto.RegisterRpcMethodResponse
|
|
142
|
+
*/
|
|
143
|
+
type RegisterRpcMethodResponse = Message<"livekit.proto.RegisterRpcMethodResponse"> & {};
|
|
144
|
+
/**
|
|
145
|
+
* Describes the message livekit.proto.RegisterRpcMethodResponse.
|
|
146
|
+
* Use `create(RegisterRpcMethodResponseSchema)` to create a new message.
|
|
147
|
+
*/
|
|
148
|
+
declare const RegisterRpcMethodResponseSchema: GenMessage<RegisterRpcMethodResponse>;
|
|
149
|
+
/**
|
|
150
|
+
* @generated from message livekit.proto.UnregisterRpcMethodResponse
|
|
151
|
+
*/
|
|
152
|
+
type UnregisterRpcMethodResponse = Message<"livekit.proto.UnregisterRpcMethodResponse"> & {};
|
|
153
|
+
/**
|
|
154
|
+
* Describes the message livekit.proto.UnregisterRpcMethodResponse.
|
|
155
|
+
* Use `create(UnregisterRpcMethodResponseSchema)` to create a new message.
|
|
156
|
+
*/
|
|
157
|
+
declare const UnregisterRpcMethodResponseSchema: GenMessage<UnregisterRpcMethodResponse>;
|
|
158
|
+
/**
|
|
159
|
+
* @generated from message livekit.proto.RpcMethodInvocationResponseResponse
|
|
160
|
+
*/
|
|
161
|
+
type RpcMethodInvocationResponseResponse = Message<"livekit.proto.RpcMethodInvocationResponseResponse"> & {
|
|
162
|
+
/**
|
|
163
|
+
* @generated from field: optional string error = 1;
|
|
164
|
+
*/
|
|
165
|
+
error: string;
|
|
166
|
+
};
|
|
167
|
+
/**
|
|
168
|
+
* Describes the message livekit.proto.RpcMethodInvocationResponseResponse.
|
|
169
|
+
* Use `create(RpcMethodInvocationResponseResponseSchema)` to create a new message.
|
|
170
|
+
*/
|
|
171
|
+
declare const RpcMethodInvocationResponseResponseSchema: GenMessage<RpcMethodInvocationResponseResponse>;
|
|
172
|
+
/**
|
|
173
|
+
* FFI Callbacks
|
|
174
|
+
*
|
|
175
|
+
* @generated from message livekit.proto.PerformRpcCallback
|
|
176
|
+
*/
|
|
177
|
+
type PerformRpcCallback = Message<"livekit.proto.PerformRpcCallback"> & {
|
|
178
|
+
/**
|
|
179
|
+
* @generated from field: required uint64 async_id = 1;
|
|
180
|
+
*/
|
|
181
|
+
asyncId: bigint;
|
|
182
|
+
/**
|
|
183
|
+
* @generated from field: optional string payload = 2;
|
|
184
|
+
*/
|
|
185
|
+
payload: string;
|
|
186
|
+
/**
|
|
187
|
+
* @generated from field: optional livekit.proto.RpcError error = 3;
|
|
188
|
+
*/
|
|
189
|
+
error?: RpcError;
|
|
190
|
+
};
|
|
191
|
+
/**
|
|
192
|
+
* Describes the message livekit.proto.PerformRpcCallback.
|
|
193
|
+
* Use `create(PerformRpcCallbackSchema)` to create a new message.
|
|
194
|
+
*/
|
|
195
|
+
declare const PerformRpcCallbackSchema: GenMessage<PerformRpcCallback>;
|
|
196
|
+
/**
|
|
197
|
+
* FFI Events
|
|
198
|
+
*
|
|
199
|
+
* @generated from message livekit.proto.RpcMethodInvocationEvent
|
|
200
|
+
*/
|
|
201
|
+
type RpcMethodInvocationEvent = Message<"livekit.proto.RpcMethodInvocationEvent"> & {
|
|
202
|
+
/**
|
|
203
|
+
* @generated from field: required uint64 local_participant_handle = 1;
|
|
204
|
+
*/
|
|
205
|
+
localParticipantHandle: bigint;
|
|
206
|
+
/**
|
|
207
|
+
* @generated from field: required uint64 invocation_id = 2;
|
|
208
|
+
*/
|
|
209
|
+
invocationId: bigint;
|
|
210
|
+
/**
|
|
211
|
+
* @generated from field: required string method = 3;
|
|
212
|
+
*/
|
|
213
|
+
method: string;
|
|
214
|
+
/**
|
|
215
|
+
* @generated from field: required string request_id = 4;
|
|
216
|
+
*/
|
|
217
|
+
requestId: string;
|
|
218
|
+
/**
|
|
219
|
+
* @generated from field: required string caller_identity = 5;
|
|
220
|
+
*/
|
|
221
|
+
callerIdentity: string;
|
|
222
|
+
/**
|
|
223
|
+
* @generated from field: required string payload = 6;
|
|
224
|
+
*/
|
|
225
|
+
payload: string;
|
|
226
|
+
/**
|
|
227
|
+
* @generated from field: required uint32 response_timeout_ms = 7;
|
|
228
|
+
*/
|
|
229
|
+
responseTimeoutMs: number;
|
|
230
|
+
};
|
|
231
|
+
/**
|
|
232
|
+
* Describes the message livekit.proto.RpcMethodInvocationEvent.
|
|
233
|
+
* Use `create(RpcMethodInvocationEventSchema)` to create a new message.
|
|
234
|
+
*/
|
|
235
|
+
declare const RpcMethodInvocationEventSchema: GenMessage<RpcMethodInvocationEvent>;
|
|
236
|
+
|
|
237
|
+
export { type PerformRpcCallback, PerformRpcCallbackSchema, type PerformRpcRequest, PerformRpcRequestSchema, type PerformRpcResponse, PerformRpcResponseSchema, type RegisterRpcMethodRequest, RegisterRpcMethodRequestSchema, type RegisterRpcMethodResponse, RegisterRpcMethodResponseSchema, type RpcError, RpcErrorSchema, type RpcMethodInvocationEvent, RpcMethodInvocationEventSchema, type RpcMethodInvocationResponseRequest, RpcMethodInvocationResponseRequestSchema, type RpcMethodInvocationResponseResponse, RpcMethodInvocationResponseResponseSchema, type UnregisterRpcMethodRequest, UnregisterRpcMethodRequestSchema, type UnregisterRpcMethodResponse, UnregisterRpcMethodResponseSchema, file_rpc };
|
package/dist/proto/rpc_pb.d.ts
CHANGED
|
@@ -1,13 +1,14 @@
|
|
|
1
|
-
import
|
|
2
|
-
import
|
|
1
|
+
import { GenFile, GenMessage } from '@bufbuild/protobuf/codegenv1';
|
|
2
|
+
import { Message } from '@bufbuild/protobuf';
|
|
3
|
+
|
|
3
4
|
/**
|
|
4
5
|
* Describes the file rpc.proto.
|
|
5
6
|
*/
|
|
6
|
-
|
|
7
|
+
declare const file_rpc: GenFile;
|
|
7
8
|
/**
|
|
8
9
|
* @generated from message livekit.proto.RpcError
|
|
9
10
|
*/
|
|
10
|
-
|
|
11
|
+
type RpcError = Message<"livekit.proto.RpcError"> & {
|
|
11
12
|
/**
|
|
12
13
|
* @generated from field: required uint32 code = 1;
|
|
13
14
|
*/
|
|
@@ -25,13 +26,13 @@ export type RpcError = Message<"livekit.proto.RpcError"> & {
|
|
|
25
26
|
* Describes the message livekit.proto.RpcError.
|
|
26
27
|
* Use `create(RpcErrorSchema)` to create a new message.
|
|
27
28
|
*/
|
|
28
|
-
|
|
29
|
+
declare const RpcErrorSchema: GenMessage<RpcError>;
|
|
29
30
|
/**
|
|
30
31
|
* FFI Requests
|
|
31
32
|
*
|
|
32
33
|
* @generated from message livekit.proto.PerformRpcRequest
|
|
33
34
|
*/
|
|
34
|
-
|
|
35
|
+
type PerformRpcRequest = Message<"livekit.proto.PerformRpcRequest"> & {
|
|
35
36
|
/**
|
|
36
37
|
* @generated from field: required uint64 local_participant_handle = 1;
|
|
37
38
|
*/
|
|
@@ -57,11 +58,11 @@ export type PerformRpcRequest = Message<"livekit.proto.PerformRpcRequest"> & {
|
|
|
57
58
|
* Describes the message livekit.proto.PerformRpcRequest.
|
|
58
59
|
* Use `create(PerformRpcRequestSchema)` to create a new message.
|
|
59
60
|
*/
|
|
60
|
-
|
|
61
|
+
declare const PerformRpcRequestSchema: GenMessage<PerformRpcRequest>;
|
|
61
62
|
/**
|
|
62
63
|
* @generated from message livekit.proto.RegisterRpcMethodRequest
|
|
63
64
|
*/
|
|
64
|
-
|
|
65
|
+
type RegisterRpcMethodRequest = Message<"livekit.proto.RegisterRpcMethodRequest"> & {
|
|
65
66
|
/**
|
|
66
67
|
* @generated from field: required uint64 local_participant_handle = 1;
|
|
67
68
|
*/
|
|
@@ -75,11 +76,11 @@ export type RegisterRpcMethodRequest = Message<"livekit.proto.RegisterRpcMethodR
|
|
|
75
76
|
* Describes the message livekit.proto.RegisterRpcMethodRequest.
|
|
76
77
|
* Use `create(RegisterRpcMethodRequestSchema)` to create a new message.
|
|
77
78
|
*/
|
|
78
|
-
|
|
79
|
+
declare const RegisterRpcMethodRequestSchema: GenMessage<RegisterRpcMethodRequest>;
|
|
79
80
|
/**
|
|
80
81
|
* @generated from message livekit.proto.UnregisterRpcMethodRequest
|
|
81
82
|
*/
|
|
82
|
-
|
|
83
|
+
type UnregisterRpcMethodRequest = Message<"livekit.proto.UnregisterRpcMethodRequest"> & {
|
|
83
84
|
/**
|
|
84
85
|
* @generated from field: required uint64 local_participant_handle = 1;
|
|
85
86
|
*/
|
|
@@ -93,11 +94,11 @@ export type UnregisterRpcMethodRequest = Message<"livekit.proto.UnregisterRpcMet
|
|
|
93
94
|
* Describes the message livekit.proto.UnregisterRpcMethodRequest.
|
|
94
95
|
* Use `create(UnregisterRpcMethodRequestSchema)` to create a new message.
|
|
95
96
|
*/
|
|
96
|
-
|
|
97
|
+
declare const UnregisterRpcMethodRequestSchema: GenMessage<UnregisterRpcMethodRequest>;
|
|
97
98
|
/**
|
|
98
99
|
* @generated from message livekit.proto.RpcMethodInvocationResponseRequest
|
|
99
100
|
*/
|
|
100
|
-
|
|
101
|
+
type RpcMethodInvocationResponseRequest = Message<"livekit.proto.RpcMethodInvocationResponseRequest"> & {
|
|
101
102
|
/**
|
|
102
103
|
* @generated from field: required uint64 local_participant_handle = 1;
|
|
103
104
|
*/
|
|
@@ -119,13 +120,13 @@ export type RpcMethodInvocationResponseRequest = Message<"livekit.proto.RpcMetho
|
|
|
119
120
|
* Describes the message livekit.proto.RpcMethodInvocationResponseRequest.
|
|
120
121
|
* Use `create(RpcMethodInvocationResponseRequestSchema)` to create a new message.
|
|
121
122
|
*/
|
|
122
|
-
|
|
123
|
+
declare const RpcMethodInvocationResponseRequestSchema: GenMessage<RpcMethodInvocationResponseRequest>;
|
|
123
124
|
/**
|
|
124
125
|
* FFI Responses
|
|
125
126
|
*
|
|
126
127
|
* @generated from message livekit.proto.PerformRpcResponse
|
|
127
128
|
*/
|
|
128
|
-
|
|
129
|
+
type PerformRpcResponse = Message<"livekit.proto.PerformRpcResponse"> & {
|
|
129
130
|
/**
|
|
130
131
|
* @generated from field: required uint64 async_id = 1;
|
|
131
132
|
*/
|
|
@@ -135,29 +136,29 @@ export type PerformRpcResponse = Message<"livekit.proto.PerformRpcResponse"> & {
|
|
|
135
136
|
* Describes the message livekit.proto.PerformRpcResponse.
|
|
136
137
|
* Use `create(PerformRpcResponseSchema)` to create a new message.
|
|
137
138
|
*/
|
|
138
|
-
|
|
139
|
+
declare const PerformRpcResponseSchema: GenMessage<PerformRpcResponse>;
|
|
139
140
|
/**
|
|
140
141
|
* @generated from message livekit.proto.RegisterRpcMethodResponse
|
|
141
142
|
*/
|
|
142
|
-
|
|
143
|
+
type RegisterRpcMethodResponse = Message<"livekit.proto.RegisterRpcMethodResponse"> & {};
|
|
143
144
|
/**
|
|
144
145
|
* Describes the message livekit.proto.RegisterRpcMethodResponse.
|
|
145
146
|
* Use `create(RegisterRpcMethodResponseSchema)` to create a new message.
|
|
146
147
|
*/
|
|
147
|
-
|
|
148
|
+
declare const RegisterRpcMethodResponseSchema: GenMessage<RegisterRpcMethodResponse>;
|
|
148
149
|
/**
|
|
149
150
|
* @generated from message livekit.proto.UnregisterRpcMethodResponse
|
|
150
151
|
*/
|
|
151
|
-
|
|
152
|
+
type UnregisterRpcMethodResponse = Message<"livekit.proto.UnregisterRpcMethodResponse"> & {};
|
|
152
153
|
/**
|
|
153
154
|
* Describes the message livekit.proto.UnregisterRpcMethodResponse.
|
|
154
155
|
* Use `create(UnregisterRpcMethodResponseSchema)` to create a new message.
|
|
155
156
|
*/
|
|
156
|
-
|
|
157
|
+
declare const UnregisterRpcMethodResponseSchema: GenMessage<UnregisterRpcMethodResponse>;
|
|
157
158
|
/**
|
|
158
159
|
* @generated from message livekit.proto.RpcMethodInvocationResponseResponse
|
|
159
160
|
*/
|
|
160
|
-
|
|
161
|
+
type RpcMethodInvocationResponseResponse = Message<"livekit.proto.RpcMethodInvocationResponseResponse"> & {
|
|
161
162
|
/**
|
|
162
163
|
* @generated from field: optional string error = 1;
|
|
163
164
|
*/
|
|
@@ -167,13 +168,13 @@ export type RpcMethodInvocationResponseResponse = Message<"livekit.proto.RpcMeth
|
|
|
167
168
|
* Describes the message livekit.proto.RpcMethodInvocationResponseResponse.
|
|
168
169
|
* Use `create(RpcMethodInvocationResponseResponseSchema)` to create a new message.
|
|
169
170
|
*/
|
|
170
|
-
|
|
171
|
+
declare const RpcMethodInvocationResponseResponseSchema: GenMessage<RpcMethodInvocationResponseResponse>;
|
|
171
172
|
/**
|
|
172
173
|
* FFI Callbacks
|
|
173
174
|
*
|
|
174
175
|
* @generated from message livekit.proto.PerformRpcCallback
|
|
175
176
|
*/
|
|
176
|
-
|
|
177
|
+
type PerformRpcCallback = Message<"livekit.proto.PerformRpcCallback"> & {
|
|
177
178
|
/**
|
|
178
179
|
* @generated from field: required uint64 async_id = 1;
|
|
179
180
|
*/
|
|
@@ -191,13 +192,13 @@ export type PerformRpcCallback = Message<"livekit.proto.PerformRpcCallback"> & {
|
|
|
191
192
|
* Describes the message livekit.proto.PerformRpcCallback.
|
|
192
193
|
* Use `create(PerformRpcCallbackSchema)` to create a new message.
|
|
193
194
|
*/
|
|
194
|
-
|
|
195
|
+
declare const PerformRpcCallbackSchema: GenMessage<PerformRpcCallback>;
|
|
195
196
|
/**
|
|
196
197
|
* FFI Events
|
|
197
198
|
*
|
|
198
199
|
* @generated from message livekit.proto.RpcMethodInvocationEvent
|
|
199
200
|
*/
|
|
200
|
-
|
|
201
|
+
type RpcMethodInvocationEvent = Message<"livekit.proto.RpcMethodInvocationEvent"> & {
|
|
201
202
|
/**
|
|
202
203
|
* @generated from field: required uint64 local_participant_handle = 1;
|
|
203
204
|
*/
|
|
@@ -231,5 +232,6 @@ export type RpcMethodInvocationEvent = Message<"livekit.proto.RpcMethodInvocatio
|
|
|
231
232
|
* Describes the message livekit.proto.RpcMethodInvocationEvent.
|
|
232
233
|
* Use `create(RpcMethodInvocationEventSchema)` to create a new message.
|
|
233
234
|
*/
|
|
234
|
-
|
|
235
|
-
|
|
235
|
+
declare const RpcMethodInvocationEventSchema: GenMessage<RpcMethodInvocationEvent>;
|
|
236
|
+
|
|
237
|
+
export { type PerformRpcCallback, PerformRpcCallbackSchema, type PerformRpcRequest, PerformRpcRequestSchema, type PerformRpcResponse, PerformRpcResponseSchema, type RegisterRpcMethodRequest, RegisterRpcMethodRequestSchema, type RegisterRpcMethodResponse, RegisterRpcMethodResponseSchema, type RpcError, RpcErrorSchema, type RpcMethodInvocationEvent, RpcMethodInvocationEventSchema, type RpcMethodInvocationResponseRequest, RpcMethodInvocationResponseRequestSchema, type RpcMethodInvocationResponseResponse, RpcMethodInvocationResponseResponseSchema, type UnregisterRpcMethodRequest, UnregisterRpcMethodRequestSchema, type UnregisterRpcMethodResponse, UnregisterRpcMethodResponseSchema, file_rpc };
|