@cc-livekit/protocol 1.39.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.
Files changed (40) hide show
  1. package/dist/index.cjs +7285 -0
  2. package/dist/index.cjs.map +1 -0
  3. package/dist/index.d.cts +13646 -0
  4. package/dist/index.d.mts +13646 -0
  5. package/dist/index.d.ts +13646 -0
  6. package/dist/index.mjs +7009 -0
  7. package/dist/index.mjs.map +1 -0
  8. package/package.json +42 -0
  9. package/src/gen/livekit_agent_dispatch_pb.d.ts +253 -0
  10. package/src/gen/livekit_agent_dispatch_pb.js +103 -0
  11. package/src/gen/livekit_agent_pb.d.ts +758 -0
  12. package/src/gen/livekit_agent_pb.js +269 -0
  13. package/src/gen/livekit_analytics_pb.d.ts +1379 -0
  14. package/src/gen/livekit_analytics_pb.js +397 -0
  15. package/src/gen/livekit_cloud_agent_pb.d.ts +919 -0
  16. package/src/gen/livekit_cloud_agent_pb.js +327 -0
  17. package/src/gen/livekit_egress_pb.d.ts +2151 -0
  18. package/src/gen/livekit_egress_pb.js +625 -0
  19. package/src/gen/livekit_ingress_pb.d.ts +864 -0
  20. package/src/gen/livekit_ingress_pb.js +272 -0
  21. package/src/gen/livekit_internal_pb.d.ts +786 -0
  22. package/src/gen/livekit_internal_pb.js +227 -0
  23. package/src/gen/livekit_metrics_pb.d.ts +376 -0
  24. package/src/gen/livekit_metrics_pb.js +97 -0
  25. package/src/gen/livekit_models_pb.d.ts +3083 -0
  26. package/src/gen/livekit_models_pb.js +998 -0
  27. package/src/gen/livekit_room_pb.d.ts +899 -0
  28. package/src/gen/livekit_room_pb.js +300 -0
  29. package/src/gen/livekit_rtc_pb.d.ts +2134 -0
  30. package/src/gen/livekit_rtc_pb.js +668 -0
  31. package/src/gen/livekit_sip_pb.d.ts +2619 -0
  32. package/src/gen/livekit_sip_pb.js +771 -0
  33. package/src/gen/livekit_temptalk_pb.d.ts +473 -0
  34. package/src/gen/livekit_temptalk_pb.js +167 -0
  35. package/src/gen/livekit_webhook_pb.d.ts +106 -0
  36. package/src/gen/livekit_webhook_pb.js +42 -0
  37. package/src/gen/version.d.ts +1 -0
  38. package/src/gen/version.js +2 -0
  39. package/src/index.d.ts +12 -0
  40. package/src/index.js +13 -0
@@ -0,0 +1,919 @@
1
+ // Copyright 2023 LiveKit, Inc.
2
+ //
3
+ // Licensed under the Apache License, Version 2.0 (the "License");
4
+ // you may not use this file except in compliance with the License.
5
+ // You may obtain a copy of the License at
6
+ //
7
+ // http://www.apache.org/licenses/LICENSE-2.0
8
+ //
9
+ // Unless required by applicable law or agreed to in writing, software
10
+ // distributed under the License is distributed on an "AS IS" BASIS,
11
+ // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12
+ // See the License for the specific language governing permissions and
13
+ // limitations under the License.
14
+
15
+ // @generated by protoc-gen-es v1.10.1 with parameter "target=dts+js"
16
+ // @generated from file livekit_cloud_agent.proto (package livekit, syntax proto3)
17
+ /* eslint-disable */
18
+ // @ts-nocheck
19
+
20
+ import type { BinaryReadOptions, FieldList, JsonReadOptions, JsonValue, PartialMessage, PlainMessage, Timestamp } from "@bufbuild/protobuf";
21
+ import { Message, proto3 } from "@bufbuild/protobuf";
22
+
23
+ /**
24
+ * @generated from message livekit.AgentSecret
25
+ */
26
+ export declare class AgentSecret extends Message<AgentSecret> {
27
+ /**
28
+ * @generated from field: string name = 1;
29
+ */
30
+ name: string;
31
+
32
+ /**
33
+ * @generated from field: bytes value = 2;
34
+ */
35
+ value: Uint8Array;
36
+
37
+ /**
38
+ * @generated from field: google.protobuf.Timestamp created_at = 3;
39
+ */
40
+ createdAt?: Timestamp;
41
+
42
+ /**
43
+ * @generated from field: google.protobuf.Timestamp updated_at = 4;
44
+ */
45
+ updatedAt?: Timestamp;
46
+
47
+ constructor(data?: PartialMessage<AgentSecret>);
48
+
49
+ static readonly runtime: typeof proto3;
50
+ static readonly typeName = "livekit.AgentSecret";
51
+ static readonly fields: FieldList;
52
+
53
+ static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): AgentSecret;
54
+
55
+ static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): AgentSecret;
56
+
57
+ static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): AgentSecret;
58
+
59
+ static equals(a: AgentSecret | PlainMessage<AgentSecret> | undefined, b: AgentSecret | PlainMessage<AgentSecret> | undefined): boolean;
60
+ }
61
+
62
+ /**
63
+ * @generated from message livekit.CreateAgentRequest
64
+ */
65
+ export declare class CreateAgentRequest extends Message<CreateAgentRequest> {
66
+ /**
67
+ * @generated from field: string agent_name = 1 [deprecated = true];
68
+ * @deprecated
69
+ */
70
+ agentName: string;
71
+
72
+ /**
73
+ * @generated from field: repeated livekit.AgentSecret secrets = 2;
74
+ */
75
+ secrets: AgentSecret[];
76
+
77
+ /**
78
+ * @generated from field: int32 replicas = 3 [deprecated = true];
79
+ * @deprecated
80
+ */
81
+ replicas: number;
82
+
83
+ /**
84
+ * @generated from field: int32 max_replicas = 4 [deprecated = true];
85
+ * @deprecated
86
+ */
87
+ maxReplicas: number;
88
+
89
+ /**
90
+ * @generated from field: string cpu_req = 5 [deprecated = true];
91
+ * @deprecated
92
+ */
93
+ cpuReq: string;
94
+
95
+ /**
96
+ * @generated from field: repeated string regions = 6;
97
+ */
98
+ regions: string[];
99
+
100
+ constructor(data?: PartialMessage<CreateAgentRequest>);
101
+
102
+ static readonly runtime: typeof proto3;
103
+ static readonly typeName = "livekit.CreateAgentRequest";
104
+ static readonly fields: FieldList;
105
+
106
+ static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): CreateAgentRequest;
107
+
108
+ static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): CreateAgentRequest;
109
+
110
+ static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): CreateAgentRequest;
111
+
112
+ static equals(a: CreateAgentRequest | PlainMessage<CreateAgentRequest> | undefined, b: CreateAgentRequest | PlainMessage<CreateAgentRequest> | undefined): boolean;
113
+ }
114
+
115
+ /**
116
+ * @generated from message livekit.CreateAgentResponse
117
+ */
118
+ export declare class CreateAgentResponse extends Message<CreateAgentResponse> {
119
+ /**
120
+ * @generated from field: string agent_id = 1;
121
+ */
122
+ agentId: string;
123
+
124
+ /**
125
+ * @generated from field: string agent_name = 2;
126
+ */
127
+ agentName: string;
128
+
129
+ /**
130
+ * @generated from field: string status = 3;
131
+ */
132
+ status: string;
133
+
134
+ /**
135
+ * @generated from field: string version = 4;
136
+ */
137
+ version: string;
138
+
139
+ /**
140
+ * @generated from field: string presigned_url = 5;
141
+ */
142
+ presignedUrl: string;
143
+
144
+ constructor(data?: PartialMessage<CreateAgentResponse>);
145
+
146
+ static readonly runtime: typeof proto3;
147
+ static readonly typeName = "livekit.CreateAgentResponse";
148
+ static readonly fields: FieldList;
149
+
150
+ static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): CreateAgentResponse;
151
+
152
+ static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): CreateAgentResponse;
153
+
154
+ static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): CreateAgentResponse;
155
+
156
+ static equals(a: CreateAgentResponse | PlainMessage<CreateAgentResponse> | undefined, b: CreateAgentResponse | PlainMessage<CreateAgentResponse> | undefined): boolean;
157
+ }
158
+
159
+ /**
160
+ * @generated from message livekit.AgentDeployment
161
+ */
162
+ export declare class AgentDeployment extends Message<AgentDeployment> {
163
+ /**
164
+ * @generated from field: string region = 1;
165
+ */
166
+ region: string;
167
+
168
+ /**
169
+ * @generated from field: string agent_id = 2;
170
+ */
171
+ agentId: string;
172
+
173
+ /**
174
+ * @generated from field: string status = 3;
175
+ */
176
+ status: string;
177
+
178
+ /**
179
+ * @generated from field: int32 replicas = 4;
180
+ */
181
+ replicas: number;
182
+
183
+ /**
184
+ * @generated from field: int32 min_replicas = 5;
185
+ */
186
+ minReplicas: number;
187
+
188
+ /**
189
+ * @generated from field: int32 max_replicas = 6;
190
+ */
191
+ maxReplicas: number;
192
+
193
+ /**
194
+ * @generated from field: string cpu_req = 7;
195
+ */
196
+ cpuReq: string;
197
+
198
+ /**
199
+ * @generated from field: string cur_cpu = 8;
200
+ */
201
+ curCpu: string;
202
+
203
+ /**
204
+ * @generated from field: string cur_mem = 9;
205
+ */
206
+ curMem: string;
207
+
208
+ /**
209
+ * @generated from field: string mem_req = 10;
210
+ */
211
+ memReq: string;
212
+
213
+ /**
214
+ * @generated from field: string mem_limit = 11;
215
+ */
216
+ memLimit: string;
217
+
218
+ /**
219
+ * @generated from field: string cpu_limit = 12;
220
+ */
221
+ cpuLimit: string;
222
+
223
+ constructor(data?: PartialMessage<AgentDeployment>);
224
+
225
+ static readonly runtime: typeof proto3;
226
+ static readonly typeName = "livekit.AgentDeployment";
227
+ static readonly fields: FieldList;
228
+
229
+ static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): AgentDeployment;
230
+
231
+ static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): AgentDeployment;
232
+
233
+ static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): AgentDeployment;
234
+
235
+ static equals(a: AgentDeployment | PlainMessage<AgentDeployment> | undefined, b: AgentDeployment | PlainMessage<AgentDeployment> | undefined): boolean;
236
+ }
237
+
238
+ /**
239
+ * @generated from message livekit.AgentInfo
240
+ */
241
+ export declare class AgentInfo extends Message<AgentInfo> {
242
+ /**
243
+ * @generated from field: string agent_id = 1;
244
+ */
245
+ agentId: string;
246
+
247
+ /**
248
+ * @generated from field: string agent_name = 2;
249
+ */
250
+ agentName: string;
251
+
252
+ /**
253
+ * @generated from field: string version = 3;
254
+ */
255
+ version: string;
256
+
257
+ /**
258
+ * @generated from field: repeated livekit.AgentDeployment agent_deployments = 4;
259
+ */
260
+ agentDeployments: AgentDeployment[];
261
+
262
+ /**
263
+ * @generated from field: repeated livekit.AgentSecret secrets = 5;
264
+ */
265
+ secrets: AgentSecret[];
266
+
267
+ /**
268
+ * @generated from field: google.protobuf.Timestamp deployed_at = 6;
269
+ */
270
+ deployedAt?: Timestamp;
271
+
272
+ constructor(data?: PartialMessage<AgentInfo>);
273
+
274
+ static readonly runtime: typeof proto3;
275
+ static readonly typeName = "livekit.AgentInfo";
276
+ static readonly fields: FieldList;
277
+
278
+ static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): AgentInfo;
279
+
280
+ static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): AgentInfo;
281
+
282
+ static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): AgentInfo;
283
+
284
+ static equals(a: AgentInfo | PlainMessage<AgentInfo> | undefined, b: AgentInfo | PlainMessage<AgentInfo> | undefined): boolean;
285
+ }
286
+
287
+ /**
288
+ * @generated from message livekit.ListAgentsRequest
289
+ */
290
+ export declare class ListAgentsRequest extends Message<ListAgentsRequest> {
291
+ /**
292
+ * @generated from field: string agent_name = 1;
293
+ */
294
+ agentName: string;
295
+
296
+ /**
297
+ * @generated from field: string agent_id = 2;
298
+ */
299
+ agentId: string;
300
+
301
+ constructor(data?: PartialMessage<ListAgentsRequest>);
302
+
303
+ static readonly runtime: typeof proto3;
304
+ static readonly typeName = "livekit.ListAgentsRequest";
305
+ static readonly fields: FieldList;
306
+
307
+ static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): ListAgentsRequest;
308
+
309
+ static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): ListAgentsRequest;
310
+
311
+ static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): ListAgentsRequest;
312
+
313
+ static equals(a: ListAgentsRequest | PlainMessage<ListAgentsRequest> | undefined, b: ListAgentsRequest | PlainMessage<ListAgentsRequest> | undefined): boolean;
314
+ }
315
+
316
+ /**
317
+ * @generated from message livekit.ListAgentsResponse
318
+ */
319
+ export declare class ListAgentsResponse extends Message<ListAgentsResponse> {
320
+ /**
321
+ * @generated from field: repeated livekit.AgentInfo agents = 1;
322
+ */
323
+ agents: AgentInfo[];
324
+
325
+ constructor(data?: PartialMessage<ListAgentsResponse>);
326
+
327
+ static readonly runtime: typeof proto3;
328
+ static readonly typeName = "livekit.ListAgentsResponse";
329
+ static readonly fields: FieldList;
330
+
331
+ static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): ListAgentsResponse;
332
+
333
+ static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): ListAgentsResponse;
334
+
335
+ static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): ListAgentsResponse;
336
+
337
+ static equals(a: ListAgentsResponse | PlainMessage<ListAgentsResponse> | undefined, b: ListAgentsResponse | PlainMessage<ListAgentsResponse> | undefined): boolean;
338
+ }
339
+
340
+ /**
341
+ * @generated from message livekit.AgentVersion
342
+ */
343
+ export declare class AgentVersion extends Message<AgentVersion> {
344
+ /**
345
+ * @generated from field: string version = 1;
346
+ */
347
+ version: string;
348
+
349
+ /**
350
+ * @generated from field: bool current = 2;
351
+ */
352
+ current: boolean;
353
+
354
+ /**
355
+ * @generated from field: google.protobuf.Timestamp created_at = 3;
356
+ */
357
+ createdAt?: Timestamp;
358
+
359
+ constructor(data?: PartialMessage<AgentVersion>);
360
+
361
+ static readonly runtime: typeof proto3;
362
+ static readonly typeName = "livekit.AgentVersion";
363
+ static readonly fields: FieldList;
364
+
365
+ static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): AgentVersion;
366
+
367
+ static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): AgentVersion;
368
+
369
+ static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): AgentVersion;
370
+
371
+ static equals(a: AgentVersion | PlainMessage<AgentVersion> | undefined, b: AgentVersion | PlainMessage<AgentVersion> | undefined): boolean;
372
+ }
373
+
374
+ /**
375
+ * @generated from message livekit.ListAgentVersionsRequest
376
+ */
377
+ export declare class ListAgentVersionsRequest extends Message<ListAgentVersionsRequest> {
378
+ /**
379
+ * @generated from field: string agent_id = 1;
380
+ */
381
+ agentId: string;
382
+
383
+ /**
384
+ * @generated from field: string agent_name = 2;
385
+ */
386
+ agentName: string;
387
+
388
+ constructor(data?: PartialMessage<ListAgentVersionsRequest>);
389
+
390
+ static readonly runtime: typeof proto3;
391
+ static readonly typeName = "livekit.ListAgentVersionsRequest";
392
+ static readonly fields: FieldList;
393
+
394
+ static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): ListAgentVersionsRequest;
395
+
396
+ static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): ListAgentVersionsRequest;
397
+
398
+ static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): ListAgentVersionsRequest;
399
+
400
+ static equals(a: ListAgentVersionsRequest | PlainMessage<ListAgentVersionsRequest> | undefined, b: ListAgentVersionsRequest | PlainMessage<ListAgentVersionsRequest> | undefined): boolean;
401
+ }
402
+
403
+ /**
404
+ * @generated from message livekit.ListAgentVersionsResponse
405
+ */
406
+ export declare class ListAgentVersionsResponse extends Message<ListAgentVersionsResponse> {
407
+ /**
408
+ * @generated from field: repeated livekit.AgentVersion versions = 1;
409
+ */
410
+ versions: AgentVersion[];
411
+
412
+ constructor(data?: PartialMessage<ListAgentVersionsResponse>);
413
+
414
+ static readonly runtime: typeof proto3;
415
+ static readonly typeName = "livekit.ListAgentVersionsResponse";
416
+ static readonly fields: FieldList;
417
+
418
+ static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): ListAgentVersionsResponse;
419
+
420
+ static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): ListAgentVersionsResponse;
421
+
422
+ static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): ListAgentVersionsResponse;
423
+
424
+ static equals(a: ListAgentVersionsResponse | PlainMessage<ListAgentVersionsResponse> | undefined, b: ListAgentVersionsResponse | PlainMessage<ListAgentVersionsResponse> | undefined): boolean;
425
+ }
426
+
427
+ /**
428
+ * @generated from message livekit.UpdateAgentRequest
429
+ */
430
+ export declare class UpdateAgentRequest extends Message<UpdateAgentRequest> {
431
+ /**
432
+ * @generated from field: string agent_id = 1;
433
+ */
434
+ agentId: string;
435
+
436
+ /**
437
+ * @generated from field: string agent_name = 2 [deprecated = true];
438
+ * @deprecated
439
+ */
440
+ agentName: string;
441
+
442
+ /**
443
+ * @generated from field: int32 replicas = 3 [deprecated = true];
444
+ * @deprecated
445
+ */
446
+ replicas: number;
447
+
448
+ /**
449
+ * @generated from field: int32 max_replicas = 4 [deprecated = true];
450
+ * @deprecated
451
+ */
452
+ maxReplicas: number;
453
+
454
+ /**
455
+ * @generated from field: string cpu_req = 5 [deprecated = true];
456
+ * @deprecated
457
+ */
458
+ cpuReq: string;
459
+
460
+ /**
461
+ * @generated from field: repeated string regions = 6;
462
+ */
463
+ regions: string[];
464
+
465
+ /**
466
+ * @generated from field: repeated livekit.AgentSecret secrets = 7;
467
+ */
468
+ secrets: AgentSecret[];
469
+
470
+ constructor(data?: PartialMessage<UpdateAgentRequest>);
471
+
472
+ static readonly runtime: typeof proto3;
473
+ static readonly typeName = "livekit.UpdateAgentRequest";
474
+ static readonly fields: FieldList;
475
+
476
+ static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): UpdateAgentRequest;
477
+
478
+ static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): UpdateAgentRequest;
479
+
480
+ static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): UpdateAgentRequest;
481
+
482
+ static equals(a: UpdateAgentRequest | PlainMessage<UpdateAgentRequest> | undefined, b: UpdateAgentRequest | PlainMessage<UpdateAgentRequest> | undefined): boolean;
483
+ }
484
+
485
+ /**
486
+ * @generated from message livekit.UpdateAgentResponse
487
+ */
488
+ export declare class UpdateAgentResponse extends Message<UpdateAgentResponse> {
489
+ /**
490
+ * @generated from field: bool success = 1;
491
+ */
492
+ success: boolean;
493
+
494
+ /**
495
+ * @generated from field: string message = 2;
496
+ */
497
+ message: string;
498
+
499
+ constructor(data?: PartialMessage<UpdateAgentResponse>);
500
+
501
+ static readonly runtime: typeof proto3;
502
+ static readonly typeName = "livekit.UpdateAgentResponse";
503
+ static readonly fields: FieldList;
504
+
505
+ static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): UpdateAgentResponse;
506
+
507
+ static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): UpdateAgentResponse;
508
+
509
+ static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): UpdateAgentResponse;
510
+
511
+ static equals(a: UpdateAgentResponse | PlainMessage<UpdateAgentResponse> | undefined, b: UpdateAgentResponse | PlainMessage<UpdateAgentResponse> | undefined): boolean;
512
+ }
513
+
514
+ /**
515
+ * @generated from message livekit.DeployAgentRequest
516
+ */
517
+ export declare class DeployAgentRequest extends Message<DeployAgentRequest> {
518
+ /**
519
+ * @generated from field: string agent_id = 1;
520
+ */
521
+ agentId: string;
522
+
523
+ /**
524
+ * @generated from field: string agent_name = 2 [deprecated = true];
525
+ * @deprecated
526
+ */
527
+ agentName: string;
528
+
529
+ /**
530
+ * @generated from field: repeated livekit.AgentSecret secrets = 3;
531
+ */
532
+ secrets: AgentSecret[];
533
+
534
+ /**
535
+ * @generated from field: int32 replicas = 4 [deprecated = true];
536
+ * @deprecated
537
+ */
538
+ replicas: number;
539
+
540
+ /**
541
+ * @generated from field: int32 max_replicas = 5 [deprecated = true];
542
+ * @deprecated
543
+ */
544
+ maxReplicas: number;
545
+
546
+ /**
547
+ * @generated from field: string cpu_req = 6 [deprecated = true];
548
+ * @deprecated
549
+ */
550
+ cpuReq: string;
551
+
552
+ constructor(data?: PartialMessage<DeployAgentRequest>);
553
+
554
+ static readonly runtime: typeof proto3;
555
+ static readonly typeName = "livekit.DeployAgentRequest";
556
+ static readonly fields: FieldList;
557
+
558
+ static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): DeployAgentRequest;
559
+
560
+ static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): DeployAgentRequest;
561
+
562
+ static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): DeployAgentRequest;
563
+
564
+ static equals(a: DeployAgentRequest | PlainMessage<DeployAgentRequest> | undefined, b: DeployAgentRequest | PlainMessage<DeployAgentRequest> | undefined): boolean;
565
+ }
566
+
567
+ /**
568
+ * @generated from message livekit.DeployAgentResponse
569
+ */
570
+ export declare class DeployAgentResponse extends Message<DeployAgentResponse> {
571
+ /**
572
+ * @generated from field: bool success = 1;
573
+ */
574
+ success: boolean;
575
+
576
+ /**
577
+ * @generated from field: string message = 2;
578
+ */
579
+ message: string;
580
+
581
+ /**
582
+ * @generated from field: string agent_id = 3;
583
+ */
584
+ agentId: string;
585
+
586
+ /**
587
+ * @generated from field: string presigned_url = 4;
588
+ */
589
+ presignedUrl: string;
590
+
591
+ constructor(data?: PartialMessage<DeployAgentResponse>);
592
+
593
+ static readonly runtime: typeof proto3;
594
+ static readonly typeName = "livekit.DeployAgentResponse";
595
+ static readonly fields: FieldList;
596
+
597
+ static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): DeployAgentResponse;
598
+
599
+ static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): DeployAgentResponse;
600
+
601
+ static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): DeployAgentResponse;
602
+
603
+ static equals(a: DeployAgentResponse | PlainMessage<DeployAgentResponse> | undefined, b: DeployAgentResponse | PlainMessage<DeployAgentResponse> | undefined): boolean;
604
+ }
605
+
606
+ /**
607
+ * @generated from message livekit.UpdateAgentSecretsRequest
608
+ */
609
+ export declare class UpdateAgentSecretsRequest extends Message<UpdateAgentSecretsRequest> {
610
+ /**
611
+ * @generated from field: string agent_id = 1;
612
+ */
613
+ agentId: string;
614
+
615
+ /**
616
+ * @generated from field: string agent_name = 2;
617
+ */
618
+ agentName: string;
619
+
620
+ /**
621
+ * @generated from field: bool overwrite = 3;
622
+ */
623
+ overwrite: boolean;
624
+
625
+ /**
626
+ * @generated from field: repeated livekit.AgentSecret secrets = 4;
627
+ */
628
+ secrets: AgentSecret[];
629
+
630
+ constructor(data?: PartialMessage<UpdateAgentSecretsRequest>);
631
+
632
+ static readonly runtime: typeof proto3;
633
+ static readonly typeName = "livekit.UpdateAgentSecretsRequest";
634
+ static readonly fields: FieldList;
635
+
636
+ static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): UpdateAgentSecretsRequest;
637
+
638
+ static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): UpdateAgentSecretsRequest;
639
+
640
+ static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): UpdateAgentSecretsRequest;
641
+
642
+ static equals(a: UpdateAgentSecretsRequest | PlainMessage<UpdateAgentSecretsRequest> | undefined, b: UpdateAgentSecretsRequest | PlainMessage<UpdateAgentSecretsRequest> | undefined): boolean;
643
+ }
644
+
645
+ /**
646
+ * @generated from message livekit.UpdateAgentSecretsResponse
647
+ */
648
+ export declare class UpdateAgentSecretsResponse extends Message<UpdateAgentSecretsResponse> {
649
+ /**
650
+ * @generated from field: bool success = 1;
651
+ */
652
+ success: boolean;
653
+
654
+ /**
655
+ * @generated from field: string message = 2;
656
+ */
657
+ message: string;
658
+
659
+ constructor(data?: PartialMessage<UpdateAgentSecretsResponse>);
660
+
661
+ static readonly runtime: typeof proto3;
662
+ static readonly typeName = "livekit.UpdateAgentSecretsResponse";
663
+ static readonly fields: FieldList;
664
+
665
+ static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): UpdateAgentSecretsResponse;
666
+
667
+ static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): UpdateAgentSecretsResponse;
668
+
669
+ static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): UpdateAgentSecretsResponse;
670
+
671
+ static equals(a: UpdateAgentSecretsResponse | PlainMessage<UpdateAgentSecretsResponse> | undefined, b: UpdateAgentSecretsResponse | PlainMessage<UpdateAgentSecretsResponse> | undefined): boolean;
672
+ }
673
+
674
+ /**
675
+ * @generated from message livekit.RollbackAgentRequest
676
+ */
677
+ export declare class RollbackAgentRequest extends Message<RollbackAgentRequest> {
678
+ /**
679
+ * @generated from field: string agent_id = 1;
680
+ */
681
+ agentId: string;
682
+
683
+ /**
684
+ * @generated from field: string agent_name = 2;
685
+ */
686
+ agentName: string;
687
+
688
+ /**
689
+ * @generated from field: string version = 3;
690
+ */
691
+ version: string;
692
+
693
+ constructor(data?: PartialMessage<RollbackAgentRequest>);
694
+
695
+ static readonly runtime: typeof proto3;
696
+ static readonly typeName = "livekit.RollbackAgentRequest";
697
+ static readonly fields: FieldList;
698
+
699
+ static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): RollbackAgentRequest;
700
+
701
+ static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): RollbackAgentRequest;
702
+
703
+ static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): RollbackAgentRequest;
704
+
705
+ static equals(a: RollbackAgentRequest | PlainMessage<RollbackAgentRequest> | undefined, b: RollbackAgentRequest | PlainMessage<RollbackAgentRequest> | undefined): boolean;
706
+ }
707
+
708
+ /**
709
+ * @generated from message livekit.RollbackAgentResponse
710
+ */
711
+ export declare class RollbackAgentResponse extends Message<RollbackAgentResponse> {
712
+ /**
713
+ * @generated from field: bool success = 1;
714
+ */
715
+ success: boolean;
716
+
717
+ /**
718
+ * @generated from field: string message = 2;
719
+ */
720
+ message: string;
721
+
722
+ constructor(data?: PartialMessage<RollbackAgentResponse>);
723
+
724
+ static readonly runtime: typeof proto3;
725
+ static readonly typeName = "livekit.RollbackAgentResponse";
726
+ static readonly fields: FieldList;
727
+
728
+ static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): RollbackAgentResponse;
729
+
730
+ static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): RollbackAgentResponse;
731
+
732
+ static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): RollbackAgentResponse;
733
+
734
+ static equals(a: RollbackAgentResponse | PlainMessage<RollbackAgentResponse> | undefined, b: RollbackAgentResponse | PlainMessage<RollbackAgentResponse> | undefined): boolean;
735
+ }
736
+
737
+ /**
738
+ * @generated from message livekit.DeleteAgentRequest
739
+ */
740
+ export declare class DeleteAgentRequest extends Message<DeleteAgentRequest> {
741
+ /**
742
+ * @generated from field: string agent_id = 1;
743
+ */
744
+ agentId: string;
745
+
746
+ /**
747
+ * @generated from field: string agent_name = 2;
748
+ */
749
+ agentName: string;
750
+
751
+ constructor(data?: PartialMessage<DeleteAgentRequest>);
752
+
753
+ static readonly runtime: typeof proto3;
754
+ static readonly typeName = "livekit.DeleteAgentRequest";
755
+ static readonly fields: FieldList;
756
+
757
+ static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): DeleteAgentRequest;
758
+
759
+ static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): DeleteAgentRequest;
760
+
761
+ static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): DeleteAgentRequest;
762
+
763
+ static equals(a: DeleteAgentRequest | PlainMessage<DeleteAgentRequest> | undefined, b: DeleteAgentRequest | PlainMessage<DeleteAgentRequest> | undefined): boolean;
764
+ }
765
+
766
+ /**
767
+ * @generated from message livekit.DeleteAgentResponse
768
+ */
769
+ export declare class DeleteAgentResponse extends Message<DeleteAgentResponse> {
770
+ /**
771
+ * @generated from field: bool success = 1;
772
+ */
773
+ success: boolean;
774
+
775
+ /**
776
+ * @generated from field: string message = 2;
777
+ */
778
+ message: string;
779
+
780
+ constructor(data?: PartialMessage<DeleteAgentResponse>);
781
+
782
+ static readonly runtime: typeof proto3;
783
+ static readonly typeName = "livekit.DeleteAgentResponse";
784
+ static readonly fields: FieldList;
785
+
786
+ static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): DeleteAgentResponse;
787
+
788
+ static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): DeleteAgentResponse;
789
+
790
+ static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): DeleteAgentResponse;
791
+
792
+ static equals(a: DeleteAgentResponse | PlainMessage<DeleteAgentResponse> | undefined, b: DeleteAgentResponse | PlainMessage<DeleteAgentResponse> | undefined): boolean;
793
+ }
794
+
795
+ /**
796
+ * @generated from message livekit.ListAgentSecretsRequest
797
+ */
798
+ export declare class ListAgentSecretsRequest extends Message<ListAgentSecretsRequest> {
799
+ /**
800
+ * @generated from field: string agent_id = 1;
801
+ */
802
+ agentId: string;
803
+
804
+ /**
805
+ * @generated from field: string agent_name = 2;
806
+ */
807
+ agentName: string;
808
+
809
+ constructor(data?: PartialMessage<ListAgentSecretsRequest>);
810
+
811
+ static readonly runtime: typeof proto3;
812
+ static readonly typeName = "livekit.ListAgentSecretsRequest";
813
+ static readonly fields: FieldList;
814
+
815
+ static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): ListAgentSecretsRequest;
816
+
817
+ static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): ListAgentSecretsRequest;
818
+
819
+ static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): ListAgentSecretsRequest;
820
+
821
+ static equals(a: ListAgentSecretsRequest | PlainMessage<ListAgentSecretsRequest> | undefined, b: ListAgentSecretsRequest | PlainMessage<ListAgentSecretsRequest> | undefined): boolean;
822
+ }
823
+
824
+ /**
825
+ * @generated from message livekit.ListAgentSecretsResponse
826
+ */
827
+ export declare class ListAgentSecretsResponse extends Message<ListAgentSecretsResponse> {
828
+ /**
829
+ * @generated from field: repeated livekit.AgentSecret secrets = 1;
830
+ */
831
+ secrets: AgentSecret[];
832
+
833
+ constructor(data?: PartialMessage<ListAgentSecretsResponse>);
834
+
835
+ static readonly runtime: typeof proto3;
836
+ static readonly typeName = "livekit.ListAgentSecretsResponse";
837
+ static readonly fields: FieldList;
838
+
839
+ static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): ListAgentSecretsResponse;
840
+
841
+ static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): ListAgentSecretsResponse;
842
+
843
+ static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): ListAgentSecretsResponse;
844
+
845
+ static equals(a: ListAgentSecretsResponse | PlainMessage<ListAgentSecretsResponse> | undefined, b: ListAgentSecretsResponse | PlainMessage<ListAgentSecretsResponse> | undefined): boolean;
846
+ }
847
+
848
+ /**
849
+ * @generated from message livekit.SettingsParam
850
+ */
851
+ export declare class SettingsParam extends Message<SettingsParam> {
852
+ /**
853
+ * @generated from field: string name = 1;
854
+ */
855
+ name: string;
856
+
857
+ /**
858
+ * @generated from field: string value = 2;
859
+ */
860
+ value: string;
861
+
862
+ constructor(data?: PartialMessage<SettingsParam>);
863
+
864
+ static readonly runtime: typeof proto3;
865
+ static readonly typeName = "livekit.SettingsParam";
866
+ static readonly fields: FieldList;
867
+
868
+ static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): SettingsParam;
869
+
870
+ static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): SettingsParam;
871
+
872
+ static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): SettingsParam;
873
+
874
+ static equals(a: SettingsParam | PlainMessage<SettingsParam> | undefined, b: SettingsParam | PlainMessage<SettingsParam> | undefined): boolean;
875
+ }
876
+
877
+ /**
878
+ * @generated from message livekit.ClientSettingsResponse
879
+ */
880
+ export declare class ClientSettingsResponse extends Message<ClientSettingsResponse> {
881
+ /**
882
+ * @generated from field: repeated livekit.SettingsParam params = 1;
883
+ */
884
+ params: SettingsParam[];
885
+
886
+ constructor(data?: PartialMessage<ClientSettingsResponse>);
887
+
888
+ static readonly runtime: typeof proto3;
889
+ static readonly typeName = "livekit.ClientSettingsResponse";
890
+ static readonly fields: FieldList;
891
+
892
+ static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): ClientSettingsResponse;
893
+
894
+ static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): ClientSettingsResponse;
895
+
896
+ static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): ClientSettingsResponse;
897
+
898
+ static equals(a: ClientSettingsResponse | PlainMessage<ClientSettingsResponse> | undefined, b: ClientSettingsResponse | PlainMessage<ClientSettingsResponse> | undefined): boolean;
899
+ }
900
+
901
+ /**
902
+ * @generated from message livekit.ClientSettingsRequest
903
+ */
904
+ export declare class ClientSettingsRequest extends Message<ClientSettingsRequest> {
905
+ constructor(data?: PartialMessage<ClientSettingsRequest>);
906
+
907
+ static readonly runtime: typeof proto3;
908
+ static readonly typeName = "livekit.ClientSettingsRequest";
909
+ static readonly fields: FieldList;
910
+
911
+ static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): ClientSettingsRequest;
912
+
913
+ static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): ClientSettingsRequest;
914
+
915
+ static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): ClientSettingsRequest;
916
+
917
+ static equals(a: ClientSettingsRequest | PlainMessage<ClientSettingsRequest> | undefined, b: ClientSettingsRequest | PlainMessage<ClientSettingsRequest> | undefined): boolean;
918
+ }
919
+