livekit-server-sdk 2.14.1 → 2.15.0
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/ConnectorClient.cjs +183 -0
- package/dist/ConnectorClient.cjs.map +1 -0
- package/dist/ConnectorClient.d.cts +134 -0
- package/dist/ConnectorClient.d.ts +131 -0
- package/dist/ConnectorClient.d.ts.map +1 -0
- package/dist/ConnectorClient.js +170 -0
- package/dist/ConnectorClient.js.map +1 -0
- package/dist/SipClient.cjs +4 -2
- package/dist/SipClient.cjs.map +1 -1
- package/dist/SipClient.d.cts +5 -1
- package/dist/SipClient.d.ts +5 -1
- package/dist/SipClient.d.ts.map +1 -1
- package/dist/SipClient.js +5 -2
- package/dist/SipClient.js.map +1 -1
- package/dist/index.cjs +35 -0
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +3 -1
- package/dist/index.d.ts +3 -1
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +33 -0
- package/dist/index.js.map +1 -1
- package/package.json +4 -3
- package/src/ConnectorClient.ts +282 -0
- package/src/SipClient.ts +7 -0
- package/src/index.ts +17 -0
package/src/index.ts
CHANGED
|
@@ -3,13 +3,20 @@
|
|
|
3
3
|
// SPDX-License-Identifier: Apache-2.0
|
|
4
4
|
|
|
5
5
|
export {
|
|
6
|
+
AcceptWhatsAppCallResponse,
|
|
6
7
|
AliOSSUpload,
|
|
8
|
+
AgentDispatch,
|
|
7
9
|
AudioCodec,
|
|
8
10
|
AutoParticipantEgress,
|
|
9
11
|
AutoTrackEgress,
|
|
10
12
|
AzureBlobUpload,
|
|
13
|
+
ConnectTwilioCallRequest_TwilioCallDirection,
|
|
14
|
+
ConnectTwilioCallResponse,
|
|
15
|
+
ConnectWhatsAppCallResponse,
|
|
11
16
|
DataPacket_Kind,
|
|
17
|
+
DialWhatsAppCallResponse,
|
|
12
18
|
DirectFileOutput,
|
|
19
|
+
DisconnectWhatsAppCallResponse,
|
|
13
20
|
EgressInfo,
|
|
14
21
|
EgressStatus,
|
|
15
22
|
EncodedFileOutput,
|
|
@@ -36,11 +43,19 @@ export {
|
|
|
36
43
|
Room,
|
|
37
44
|
RoomAgentDispatch,
|
|
38
45
|
RoomCompositeEgressRequest,
|
|
46
|
+
RoomConfiguration,
|
|
39
47
|
RoomEgress,
|
|
40
48
|
S3Upload,
|
|
49
|
+
SessionDescription,
|
|
50
|
+
SIPDispatchRule,
|
|
41
51
|
SIPDispatchRuleInfo,
|
|
52
|
+
SIPDispatchRuleDirect,
|
|
53
|
+
SIPDispatchRuleIndividual,
|
|
42
54
|
SIPParticipantInfo,
|
|
55
|
+
SIPOutboundTrunkInfo,
|
|
56
|
+
SIPInboundTrunkInfo,
|
|
43
57
|
SIPTrunkInfo,
|
|
58
|
+
SIPCallStatus,
|
|
44
59
|
SegmentedFileOutput,
|
|
45
60
|
SegmentedFileProtocol,
|
|
46
61
|
StreamOutput,
|
|
@@ -56,9 +71,11 @@ export {
|
|
|
56
71
|
} from '@livekit/protocol';
|
|
57
72
|
export * from './AccessToken.js';
|
|
58
73
|
export * from './AgentDispatchClient.js';
|
|
74
|
+
export * from './ConnectorClient.js';
|
|
59
75
|
export * from './EgressClient.js';
|
|
60
76
|
export * from './grants.js';
|
|
61
77
|
export * from './IngressClient.js';
|
|
62
78
|
export * from './RoomServiceClient.js';
|
|
63
79
|
export * from './SipClient.js';
|
|
80
|
+
export { TwirpError } from './TwirpRPC.js';
|
|
64
81
|
export * from './WebhookReceiver.js';
|