New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

@livekit/protocol

Package Overview
Dependencies
Maintainers
0
Versions
37
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@livekit/protocol - npm Package Compare versions

Comparing version 1.26.0 to 1.27.0

2

package.json
{
"name": "@livekit/protocol",
"version": "1.26.0",
"version": "1.27.0",
"description": "",

@@ -5,0 +5,0 @@ "type": "module",

@@ -1672,2 +1672,14 @@ // Copyright 2023 LiveKit, Inc.

/**
* @generated from field: string manifest_location = 23;
*/
manifestLocation: string;
/**
* next ID: 24
*
* @generated from field: string manifest_presigned_url = 24;
*/
manifestPresignedUrl: string;
constructor(data?: PartialMessage<EgressInfo>);

@@ -1674,0 +1686,0 @@

@@ -478,2 +478,4 @@ // Copyright 2023 LiveKit, Inc.

{ no: 20, name: "image_results", kind: "message", T: ImagesInfo, repeated: true },
{ no: 23, name: "manifest_location", kind: "scalar", T: 9 /* ScalarType.STRING */ },
{ no: 24, name: "manifest_presigned_url", kind: "scalar", T: 9 /* ScalarType.STRING */ },
],

@@ -480,0 +482,0 @@ );

@@ -22,4 +22,4 @@ // Copyright 2023 LiveKit, Inc.

import { Message, proto3 } from "@bufbuild/protobuf";
import type { RoomAgentDispatch } from "./livekit_agent_dispatch_pb.js";
import type { AutoParticipantEgress, AutoTrackEgress, RoomCompositeEgressRequest } from "./livekit_egress_pb.js";
import type { RoomAgentDispatch } from "./livekit_agent_dispatch_pb.js";
import type { DataPacket_Kind, ParticipantInfo, ParticipantPermission, ParticipantTracks, Room, TrackInfo } from "./livekit_models_pb.js";

@@ -41,5 +41,5 @@

*
* @generated from field: string config_name = 12;
* @generated from field: string room_preset = 12;
*/
configName: string;
roomPreset: string;

@@ -82,3 +82,3 @@ /**

/**
* egress
* auto-egress configurations
*

@@ -90,9 +90,2 @@ * @generated from field: livekit.RoomEgress egress = 6;

/**
* agent
*
* @generated from field: livekit.RoomAgent agent = 11;
*/
agent?: RoomAgent;
/**
* playout delay of subscriber

@@ -120,4 +113,2 @@ *

*
* NEXT-ID: 14
*
* @generated from field: bool replay_enabled = 13;

@@ -127,2 +118,11 @@ */

/**
* Define agents that should be dispatched to this room
*
* NEXT-ID: 15
*
* @generated from field: repeated livekit.RoomAgentDispatch agents = 14;
*/
agents: RoomAgentDispatch[];
constructor(data?: PartialMessage<CreateRoomRequest>);

@@ -726,3 +726,3 @@

/**
* limit number of participants that can be in a room
* limit number of participants that can be in a room, excluding Egress and Ingress participants
*

@@ -741,9 +741,2 @@ * @generated from field: uint32 max_participants = 4;

/**
* agent
*
* @generated from field: livekit.RoomAgent agent = 6;
*/
agent?: RoomAgent;
/**
* playout delay of subscriber

@@ -768,2 +761,9 @@ *

/**
* Define agents that should be dispatched to this room
*
* @generated from field: repeated livekit.RoomAgentDispatch agents = 10;
*/
agents: RoomAgentDispatch[];
constructor(data?: PartialMessage<RoomConfiguration>);

@@ -770,0 +770,0 @@

@@ -21,4 +21,4 @@ // Copyright 2023 LiveKit, Inc.

import { proto3 } from "@bufbuild/protobuf";
import { RoomAgentDispatch } from "./livekit_agent_dispatch_pb.js";
import { AutoParticipantEgress, AutoTrackEgress, RoomCompositeEgressRequest } from "./livekit_egress_pb.js";
import { RoomAgentDispatch } from "./livekit_agent_dispatch_pb.js";
import { DataPacket_Kind, ParticipantInfo, ParticipantPermission, ParticipantTracks, Room, TrackInfo } from "./livekit_models_pb.js";

@@ -33,3 +33,3 @@

{ no: 1, name: "name", kind: "scalar", T: 9 /* ScalarType.STRING */ },
{ no: 12, name: "config_name", kind: "scalar", T: 9 /* ScalarType.STRING */ },
{ no: 12, name: "room_preset", kind: "scalar", T: 9 /* ScalarType.STRING */ },
{ no: 2, name: "empty_timeout", kind: "scalar", T: 13 /* ScalarType.UINT32 */ },

@@ -41,3 +41,2 @@ { no: 10, name: "departure_timeout", kind: "scalar", T: 13 /* ScalarType.UINT32 */ },

{ no: 6, name: "egress", kind: "message", T: RoomEgress },
{ no: 11, name: "agent", kind: "message", T: RoomAgent },
{ no: 7, name: "min_playout_delay", kind: "scalar", T: 13 /* ScalarType.UINT32 */ },

@@ -47,2 +46,3 @@ { no: 8, name: "max_playout_delay", kind: "scalar", T: 13 /* ScalarType.UINT32 */ },

{ no: 13, name: "replay_enabled", kind: "scalar", T: 8 /* ScalarType.BOOL */ },
{ no: 14, name: "agents", kind: "message", T: RoomAgentDispatch, repeated: true },
],

@@ -257,8 +257,8 @@ );

{ no: 5, name: "egress", kind: "message", T: RoomEgress },
{ no: 6, name: "agent", kind: "message", T: RoomAgent },
{ no: 7, name: "min_playout_delay", kind: "scalar", T: 13 /* ScalarType.UINT32 */ },
{ no: 8, name: "max_playout_delay", kind: "scalar", T: 13 /* ScalarType.UINT32 */ },
{ no: 9, name: "sync_streams", kind: "scalar", T: 8 /* ScalarType.BOOL */ },
{ no: 10, name: "agents", kind: "message", T: RoomAgentDispatch, repeated: true },
],
);

@@ -421,2 +421,7 @@ // Copyright 2023 LiveKit, Inc.

/**
* @generated from field: bool krisp_enabled = 13;
*/
krispEnabled: boolean;
constructor(data?: PartialMessage<SIPInboundTrunkInfo>);

@@ -1230,5 +1235,6 @@

/**
* Optionally play ringtone in the room as an audible indicator for existing participants
* Optionally play dialtone in the room as an audible indicator for existing participants. The `play_ringtone` option is deprectated but has the same effect.
*
* @generated from field: bool play_ringtone = 6;
* @generated from field: bool play_ringtone = 6 [deprecated = true];
* @deprecated
*/

@@ -1238,2 +1244,7 @@ playRingtone: boolean;

/**
* @generated from field: bool play_dialtone = 13;
*/
playDialtone: boolean;
/**
* By default the From value (Phone number) is used for participant name/identity (if not set) and added to attributes.

@@ -1333,2 +1344,9 @@ * If true, a random value for identity will be used and numbers will be omitted from attributes.

/**
* Optionally play dialtone to the SIP participant as an audible indicator of being transferred
*
* @generated from field: bool play_dialtone = 4;
*/
playDialtone: boolean;
constructor(data?: PartialMessage<TransferSIPParticipantRequest>);

@@ -1335,0 +1353,0 @@

@@ -134,2 +134,3 @@ // Copyright 2023 LiveKit, Inc.

{ no: 12, name: "max_call_duration", kind: "message", T: Duration },
{ no: 13, name: "krisp_enabled", kind: "scalar", T: 8 /* ScalarType.BOOL */ },
],

@@ -398,2 +399,3 @@ );

{ no: 6, name: "play_ringtone", kind: "scalar", T: 8 /* ScalarType.BOOL */ },
{ no: 13, name: "play_dialtone", kind: "scalar", T: 8 /* ScalarType.BOOL */ },
{ no: 10, name: "hide_phone_number", kind: "scalar", T: 8 /* ScalarType.BOOL */ },

@@ -427,2 +429,3 @@ { no: 11, name: "ringing_timeout", kind: "message", T: Duration },

{ no: 3, name: "transfer_to", kind: "scalar", T: 9 /* ScalarType.STRING */ },
{ no: 4, name: "play_dialtone", kind: "scalar", T: 8 /* ScalarType.BOOL */ },
],

@@ -429,0 +432,0 @@ );

// Generated by genversion.
export const version = '1.26.0';
export const version = '1.27.0';
// @ts-check
export * from "./gen/version.js";
export * from "./gen/livekit_room_pb.js";
export { protoInt64 } from "@bufbuild/protobuf";
export * from "./gen/livekit_agent_dispatch_pb.js";
export * from "./gen/livekit_agent_pb.js";
export * from "./gen/livekit_egress_pb.js";
export * from "./gen/livekit_ingress_pb.js";
export * from "./gen/livekit_metrics_pb.js";
export * from "./gen/livekit_models_pb.js";
export * from "./gen/livekit_room_pb.js";
export * from "./gen/livekit_rtc_pb.js";
export * from "./gen/livekit_sip_pb.js";
export * from "./gen/livekit_webhook_pb.js";
export * from "./gen/livekit_egress_pb.js";
export * from "./gen/livekit_ingress_pb.js";
export * from "./gen/livekit_sip_pb.js";
export * from "./gen/livekit_metrics_pb.js";
export { protoInt64 } from "@bufbuild/protobuf";
export * from "./gen/version.js";
SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc