livekit-server-sdk 2.12.0 → 2.13.1
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/AccessToken.cjs.map +1 -1
- package/dist/AccessToken.d.cts +2 -2
- package/dist/AccessToken.d.ts +2 -2
- package/dist/AccessToken.js.map +1 -1
- package/dist/EgressClient.cjs +4 -1
- package/dist/EgressClient.cjs.map +1 -1
- package/dist/EgressClient.d.cts +6 -2
- package/dist/EgressClient.d.ts +6 -2
- package/dist/EgressClient.d.ts.map +1 -1
- package/dist/EgressClient.js +5 -1
- package/dist/EgressClient.js.map +1 -1
- package/dist/RoomServiceClient.cjs +19 -0
- package/dist/RoomServiceClient.cjs.map +1 -1
- package/dist/RoomServiceClient.d.cts +12 -0
- package/dist/RoomServiceClient.d.ts +12 -0
- package/dist/RoomServiceClient.d.ts.map +1 -1
- package/dist/RoomServiceClient.js +20 -0
- package/dist/RoomServiceClient.js.map +1 -1
- package/dist/SipClient.cjs +201 -15
- package/dist/SipClient.cjs.map +1 -1
- package/dist/SipClient.d.cts +161 -9
- package/dist/SipClient.d.ts +161 -9
- package/dist/SipClient.d.ts.map +1 -1
- package/dist/SipClient.js +205 -16
- package/dist/SipClient.js.map +1 -1
- package/dist/TwirpRPC.cjs +14 -6
- package/dist/TwirpRPC.cjs.map +1 -1
- package/dist/TwirpRPC.d.cts +7 -3
- package/dist/TwirpRPC.d.ts +7 -3
- package/dist/TwirpRPC.d.ts.map +1 -1
- package/dist/TwirpRPC.js +14 -6
- package/dist/TwirpRPC.js.map +1 -1
- package/dist/index.d.cts +1 -1
- package/package.json +2 -2
- package/src/AccessToken.ts +2 -2
- package/src/EgressClient.ts +10 -0
- package/src/RoomServiceClient.ts +21 -0
- package/src/SipClient.ts +315 -26
- package/src/TwirpRPC.ts +37 -9
package/dist/SipClient.d.cts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { SIPHeaderOptions, SIPTransport, RoomConfiguration, SIPTrunkInfo, SIPInboundTrunkInfo, SIPOutboundTrunkInfo, SIPDispatchRuleInfo, SIPParticipantInfo } from '@livekit/protocol';
|
|
1
|
+
import { SIPHeaderOptions, SIPTransport, RoomConfiguration, Pagination, ListUpdate, SIPDispatchRule, SIPTrunkInfo, SIPInboundTrunkInfo, SIPOutboundTrunkInfo, SIPDispatchRuleInfo, SIPParticipantInfo } from '@livekit/protocol';
|
|
2
2
|
import { ServiceBase } from './ServiceBase.cjs';
|
|
3
3
|
import './grants.cjs';
|
|
4
4
|
import 'jose';
|
|
@@ -43,6 +43,7 @@ interface CreateSipInboundTrunkOptions {
|
|
|
43
43
|
interface CreateSipOutboundTrunkOptions {
|
|
44
44
|
metadata?: string;
|
|
45
45
|
transport: SIPTransport;
|
|
46
|
+
destinationCountry?: string;
|
|
46
47
|
/** @deprecated - use `authUsername` instead */
|
|
47
48
|
auth_username?: string;
|
|
48
49
|
authUsername?: string;
|
|
@@ -79,25 +80,86 @@ interface CreateSipDispatchRuleOptions {
|
|
|
79
80
|
roomConfig?: RoomConfiguration;
|
|
80
81
|
}
|
|
81
82
|
interface CreateSipParticipantOptions {
|
|
83
|
+
/** Optional SIP From number to use. If empty, trunk number is used. */
|
|
82
84
|
fromNumber?: string;
|
|
85
|
+
/** Optional identity of the SIP participant */
|
|
83
86
|
participantIdentity?: string;
|
|
87
|
+
/** Optional name of the participant */
|
|
84
88
|
participantName?: string;
|
|
89
|
+
/** Optional metadata to attach to the participant */
|
|
85
90
|
participantMetadata?: string;
|
|
91
|
+
/** Optional attributes to attach to the participant */
|
|
86
92
|
participantAttributes?: {
|
|
87
93
|
[key: string]: string;
|
|
88
94
|
};
|
|
95
|
+
/** Optionally send following DTMF digits (extension codes) when making a call.
|
|
96
|
+
* Character 'w' can be used to add a 0.5 sec delay. */
|
|
89
97
|
dtmf?: string;
|
|
90
|
-
/** @deprecated
|
|
98
|
+
/** @deprecated use `playDialtone` instead */
|
|
91
99
|
playRingtone?: boolean;
|
|
100
|
+
/** If `true`, the SIP Participant plays a dial tone to the room until the phone is picked up. */
|
|
92
101
|
playDialtone?: boolean;
|
|
102
|
+
/** These headers are sent as-is and may help identify this call as coming from LiveKit for the other SIP endpoint. */
|
|
93
103
|
headers?: {
|
|
94
104
|
[key: string]: string;
|
|
95
105
|
};
|
|
106
|
+
/** Map SIP response headers from INVITE to sip.h.* participant attributes automatically. */
|
|
96
107
|
includeHeaders?: SIPHeaderOptions;
|
|
97
108
|
hidePhoneNumber?: boolean;
|
|
109
|
+
/** Maximum time for the call to ring in seconds. */
|
|
98
110
|
ringingTimeout?: number;
|
|
111
|
+
/** Maximum call duration in seconds. */
|
|
99
112
|
maxCallDuration?: number;
|
|
113
|
+
/** If `true`, Krisp noise cancellation will be enabled for the caller. */
|
|
100
114
|
krispEnabled?: boolean;
|
|
115
|
+
/** If `true`, this will wait until the call is answered before returning. */
|
|
116
|
+
waitUntilAnswered?: boolean;
|
|
117
|
+
/** Optional request timeout in seconds. default 60 seconds if waitUntilAnswered is true, otherwise 10 seconds */
|
|
118
|
+
timeout?: number;
|
|
119
|
+
}
|
|
120
|
+
interface ListSipDispatchRuleOptions {
|
|
121
|
+
/** Pagination options. */
|
|
122
|
+
page?: Pagination;
|
|
123
|
+
/** Rule IDs to list. If this option is set, the response will contains rules in the same order. If any of the rules is missing, a nil item in that position will be sent in the response. */
|
|
124
|
+
dispatchRuleIds?: string[];
|
|
125
|
+
/** Only list rules that contain one of the Trunk IDs, including wildcard rules. */
|
|
126
|
+
trunkIds?: string[];
|
|
127
|
+
}
|
|
128
|
+
interface ListSipTrunkOptions {
|
|
129
|
+
/** Pagination options. */
|
|
130
|
+
page?: Pagination;
|
|
131
|
+
/** Trunk IDs to list. If this option is set, the response will contains trunks in the same order. If any of the trunks is missing, a nil item in that position will be sent in the response. */
|
|
132
|
+
trunkIds?: string[];
|
|
133
|
+
/** Only list trunks that contain one of the numbers, including wildcard trunks. */
|
|
134
|
+
numbers?: string[];
|
|
135
|
+
}
|
|
136
|
+
interface SipDispatchRuleUpdateOptions {
|
|
137
|
+
trunkIds?: ListUpdate;
|
|
138
|
+
rule?: SIPDispatchRule;
|
|
139
|
+
name?: string;
|
|
140
|
+
metadata?: string;
|
|
141
|
+
attributes?: {
|
|
142
|
+
[key: string]: string;
|
|
143
|
+
};
|
|
144
|
+
}
|
|
145
|
+
interface SipInboundTrunkUpdateOptions {
|
|
146
|
+
numbers?: ListUpdate;
|
|
147
|
+
allowedAddresses?: ListUpdate;
|
|
148
|
+
allowedNumbers?: ListUpdate;
|
|
149
|
+
authUsername?: string;
|
|
150
|
+
authPassword?: string;
|
|
151
|
+
name?: string;
|
|
152
|
+
metadata?: string;
|
|
153
|
+
}
|
|
154
|
+
interface SipOutboundTrunkUpdateOptions {
|
|
155
|
+
numbers?: ListUpdate;
|
|
156
|
+
allowedAddresses?: ListUpdate;
|
|
157
|
+
allowedNumbers?: ListUpdate;
|
|
158
|
+
authUsername?: string;
|
|
159
|
+
authPassword?: string;
|
|
160
|
+
destinationCountry?: string;
|
|
161
|
+
name?: string;
|
|
162
|
+
metadata?: string;
|
|
101
163
|
}
|
|
102
164
|
interface TransferSipParticipantOptions {
|
|
103
165
|
playDialtone?: boolean;
|
|
@@ -123,51 +185,141 @@ declare class SipClient extends ServiceBase {
|
|
|
123
185
|
*/
|
|
124
186
|
createSipTrunk(number: string, opts?: CreateSipTrunkOptions): Promise<SIPTrunkInfo>;
|
|
125
187
|
/**
|
|
188
|
+
* Create a new SIP inbound trunk.
|
|
189
|
+
*
|
|
126
190
|
* @param name - human-readable name of the trunk
|
|
127
191
|
* @param numbers - phone numbers of the trunk
|
|
128
192
|
* @param opts - CreateSipTrunkOptions
|
|
193
|
+
* @returns Created SIP inbound trunk
|
|
129
194
|
*/
|
|
130
195
|
createSipInboundTrunk(name: string, numbers: string[], opts?: CreateSipInboundTrunkOptions): Promise<SIPInboundTrunkInfo>;
|
|
131
196
|
/**
|
|
197
|
+
* Create a new SIP outbound trunk.
|
|
198
|
+
*
|
|
132
199
|
* @param name - human-readable name of the trunk
|
|
133
200
|
* @param address - hostname and port of the SIP server to dial
|
|
134
201
|
* @param numbers - phone numbers of the trunk
|
|
135
202
|
* @param opts - CreateSipTrunkOptions
|
|
203
|
+
* @returns Created SIP outbound trunk
|
|
136
204
|
*/
|
|
137
205
|
createSipOutboundTrunk(name: string, address: string, numbers: string[], opts?: CreateSipOutboundTrunkOptions): Promise<SIPOutboundTrunkInfo>;
|
|
138
206
|
/**
|
|
139
207
|
* @deprecated use `listSipInboundTrunk` or `listSipOutboundTrunk`
|
|
140
208
|
*/
|
|
141
209
|
listSipTrunk(): Promise<Array<SIPTrunkInfo>>;
|
|
142
|
-
listSipInboundTrunk(): Promise<Array<SIPInboundTrunkInfo>>;
|
|
143
|
-
listSipOutboundTrunk(): Promise<Array<SIPOutboundTrunkInfo>>;
|
|
144
210
|
/**
|
|
145
|
-
*
|
|
211
|
+
* List SIP inbound trunks with optional filtering.
|
|
212
|
+
*
|
|
213
|
+
* @param list - Request with optional filtering parameters
|
|
214
|
+
* @returns Response containing list of SIP inbound trunks
|
|
215
|
+
*/
|
|
216
|
+
listSipInboundTrunk(list?: ListSipTrunkOptions): Promise<Array<SIPInboundTrunkInfo>>;
|
|
217
|
+
/**
|
|
218
|
+
* List SIP outbound trunks with optional filtering.
|
|
219
|
+
*
|
|
220
|
+
* @param list - Request with optional filtering parameters
|
|
221
|
+
* @returns Response containing list of SIP outbound trunks
|
|
222
|
+
*/
|
|
223
|
+
listSipOutboundTrunk(list?: ListSipTrunkOptions): Promise<Array<SIPOutboundTrunkInfo>>;
|
|
224
|
+
/**
|
|
225
|
+
* Delete a SIP trunk.
|
|
226
|
+
*
|
|
227
|
+
* @param sipTrunkId - ID of the SIP trunk to delete
|
|
228
|
+
* @returns Deleted trunk information
|
|
146
229
|
*/
|
|
147
230
|
deleteSipTrunk(sipTrunkId: string): Promise<SIPTrunkInfo>;
|
|
148
231
|
/**
|
|
149
|
-
*
|
|
232
|
+
* Create a new SIP dispatch rule.
|
|
233
|
+
*
|
|
234
|
+
* @param rule - SIP dispatch rule to create
|
|
150
235
|
* @param opts - CreateSipDispatchRuleOptions
|
|
236
|
+
* @returns Created SIP dispatch rule
|
|
151
237
|
*/
|
|
152
238
|
createSipDispatchRule(rule: SipDispatchRuleDirect | SipDispatchRuleIndividual, opts?: CreateSipDispatchRuleOptions): Promise<SIPDispatchRuleInfo>;
|
|
153
|
-
listSipDispatchRule(): Promise<Array<SIPDispatchRuleInfo>>;
|
|
154
239
|
/**
|
|
155
|
-
*
|
|
240
|
+
* Updates an existing SIP dispatch rule by replacing it entirely.
|
|
241
|
+
*
|
|
242
|
+
* @param sipDispatchRuleId - ID of the SIP dispatch rule to update
|
|
243
|
+
* @param rule - new SIP dispatch rule
|
|
244
|
+
* @returns Updated SIP dispatch rule
|
|
245
|
+
*/
|
|
246
|
+
updateSipDispatchRule(sipDispatchRuleId: string, rule: SIPDispatchRuleInfo): Promise<SIPDispatchRuleInfo>;
|
|
247
|
+
/**
|
|
248
|
+
* Updates specific fields of an existing SIP dispatch rule.
|
|
249
|
+
* Only provided fields will be updated.
|
|
250
|
+
*
|
|
251
|
+
* @param sipDispatchRuleId - ID of the SIP dispatch rule to update
|
|
252
|
+
* @param fields - Fields of the dispatch rule to update
|
|
253
|
+
* @returns Updated SIP dispatch rule
|
|
254
|
+
*/
|
|
255
|
+
updateSipDispatchRuleFields(sipDispatchRuleId: string, fields?: SipDispatchRuleUpdateOptions): Promise<SIPDispatchRuleInfo>;
|
|
256
|
+
/**
|
|
257
|
+
* Updates an existing SIP inbound trunk by replacing it entirely.
|
|
258
|
+
*
|
|
259
|
+
* @param sipTrunkId - ID of the SIP inbound trunk to update
|
|
260
|
+
* @param trunk - SIP inbound trunk to update with
|
|
261
|
+
* @returns Updated SIP inbound trunk
|
|
262
|
+
*/
|
|
263
|
+
updateSipInboundTrunk(sipTrunkId: string, trunk: SIPInboundTrunkInfo): Promise<SIPInboundTrunkInfo>;
|
|
264
|
+
/**
|
|
265
|
+
* Updates specific fields of an existing SIP inbound trunk.
|
|
266
|
+
* Only provided fields will be updated.
|
|
267
|
+
*
|
|
268
|
+
* @param sipTrunkId - ID of the SIP inbound trunk to update
|
|
269
|
+
* @param fields - Fields of the inbound trunk to update
|
|
270
|
+
* @returns Updated SIP inbound trunk
|
|
271
|
+
*/
|
|
272
|
+
updateSipInboundTrunkFields(sipTrunkId: string, fields: SipInboundTrunkUpdateOptions): Promise<SIPInboundTrunkInfo>;
|
|
273
|
+
/**
|
|
274
|
+
* Updates an existing SIP outbound trunk by replacing it entirely.
|
|
275
|
+
*
|
|
276
|
+
* @param sipTrunkId - ID of the SIP outbound trunk to update
|
|
277
|
+
* @param trunk - SIP outbound trunk to update with
|
|
278
|
+
* @returns Updated SIP outbound trunk
|
|
279
|
+
*/
|
|
280
|
+
updateSipOutboundTrunk(sipTrunkId: string, trunk: SIPOutboundTrunkInfo): Promise<SIPOutboundTrunkInfo>;
|
|
281
|
+
/**
|
|
282
|
+
* Updates specific fields of an existing SIP outbound trunk.
|
|
283
|
+
* Only provided fields will be updated.
|
|
284
|
+
*
|
|
285
|
+
* @param sipTrunkId - ID of the SIP outbound trunk to update
|
|
286
|
+
* @param fields - Fields of the outbound trunk to update
|
|
287
|
+
* @returns Updated SIP outbound trunk
|
|
288
|
+
*/
|
|
289
|
+
updateSipOutboundTrunkFields(sipTrunkId: string, fields: SipOutboundTrunkUpdateOptions): Promise<SIPOutboundTrunkInfo>;
|
|
290
|
+
/**
|
|
291
|
+
* List SIP dispatch rules with optional filtering.
|
|
292
|
+
*
|
|
293
|
+
* @param list - Request with optional filtering parameters
|
|
294
|
+
* @returns Response containing list of SIP dispatch rules
|
|
295
|
+
*/
|
|
296
|
+
listSipDispatchRule(list?: ListSipDispatchRuleOptions): Promise<Array<SIPDispatchRuleInfo>>;
|
|
297
|
+
/**
|
|
298
|
+
* Delete a SIP dispatch rule.
|
|
299
|
+
*
|
|
300
|
+
* @param sipDispatchRuleId - ID of the SIP dispatch rule to delete
|
|
301
|
+
* @returns Deleted rule information
|
|
156
302
|
*/
|
|
157
303
|
deleteSipDispatchRule(sipDispatchRuleId: string): Promise<SIPDispatchRuleInfo>;
|
|
158
304
|
/**
|
|
305
|
+
* Create a new SIP participant.
|
|
306
|
+
*
|
|
159
307
|
* @param sipTrunkId - sip trunk to use for the call
|
|
160
308
|
* @param number - number to dial
|
|
161
309
|
* @param roomName - room to attach the call to
|
|
162
310
|
* @param opts - CreateSipParticipantOptions
|
|
311
|
+
* @returns Created SIP participant
|
|
163
312
|
*/
|
|
164
313
|
createSipParticipant(sipTrunkId: string, number: string, roomName: string, opts?: CreateSipParticipantOptions): Promise<SIPParticipantInfo>;
|
|
165
314
|
/**
|
|
315
|
+
* Transfer a SIP participant to a different room.
|
|
316
|
+
*
|
|
166
317
|
* @param roomName - room the SIP participant to transfer is connectd to
|
|
167
318
|
* @param participantIdentity - identity of the SIP participant to transfer
|
|
168
319
|
* @param transferTo - SIP URL to transfer the participant to
|
|
320
|
+
* @param opts - TransferSipParticipantOptions
|
|
169
321
|
*/
|
|
170
322
|
transferSipParticipant(roomName: string, participantIdentity: string, transferTo: string, opts?: TransferSipParticipantOptions): Promise<void>;
|
|
171
323
|
}
|
|
172
324
|
|
|
173
|
-
export { type CreateSipDispatchRuleOptions, type CreateSipInboundTrunkOptions, type CreateSipOutboundTrunkOptions, type CreateSipParticipantOptions, type CreateSipTrunkOptions, SipClient, type SipDispatchRuleDirect, type SipDispatchRuleIndividual, type TransferSipParticipantOptions };
|
|
325
|
+
export { type CreateSipDispatchRuleOptions, type CreateSipInboundTrunkOptions, type CreateSipOutboundTrunkOptions, type CreateSipParticipantOptions, type CreateSipTrunkOptions, type ListSipDispatchRuleOptions, type ListSipTrunkOptions, SipClient, type SipDispatchRuleDirect, type SipDispatchRuleIndividual, type SipDispatchRuleUpdateOptions, type SipInboundTrunkUpdateOptions, type SipOutboundTrunkUpdateOptions, type TransferSipParticipantOptions };
|
package/dist/SipClient.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import type { RoomConfiguration, SIPHeaderOptions } from '@livekit/protocol';
|
|
2
|
-
import { SIPDispatchRuleInfo, SIPInboundTrunkInfo, SIPOutboundTrunkInfo, SIPParticipantInfo, SIPTransport, SIPTrunkInfo } from '@livekit/protocol';
|
|
1
|
+
import type { ListUpdate, Pagination, RoomConfiguration, SIPHeaderOptions } from '@livekit/protocol';
|
|
2
|
+
import { SIPDispatchRule, SIPDispatchRuleInfo, SIPInboundTrunkInfo, SIPOutboundTrunkInfo, SIPParticipantInfo, SIPTransport, SIPTrunkInfo } from '@livekit/protocol';
|
|
3
3
|
import { ServiceBase } from './ServiceBase.js';
|
|
4
4
|
/**
|
|
5
5
|
* @deprecated use CreateSipInboundTrunkOptions or CreateSipOutboundTrunkOptions
|
|
@@ -41,6 +41,7 @@ export interface CreateSipInboundTrunkOptions {
|
|
|
41
41
|
export interface CreateSipOutboundTrunkOptions {
|
|
42
42
|
metadata?: string;
|
|
43
43
|
transport: SIPTransport;
|
|
44
|
+
destinationCountry?: string;
|
|
44
45
|
/** @deprecated - use `authUsername` instead */
|
|
45
46
|
auth_username?: string;
|
|
46
47
|
authUsername?: string;
|
|
@@ -77,25 +78,86 @@ export interface CreateSipDispatchRuleOptions {
|
|
|
77
78
|
roomConfig?: RoomConfiguration;
|
|
78
79
|
}
|
|
79
80
|
export interface CreateSipParticipantOptions {
|
|
81
|
+
/** Optional SIP From number to use. If empty, trunk number is used. */
|
|
80
82
|
fromNumber?: string;
|
|
83
|
+
/** Optional identity of the SIP participant */
|
|
81
84
|
participantIdentity?: string;
|
|
85
|
+
/** Optional name of the participant */
|
|
82
86
|
participantName?: string;
|
|
87
|
+
/** Optional metadata to attach to the participant */
|
|
83
88
|
participantMetadata?: string;
|
|
89
|
+
/** Optional attributes to attach to the participant */
|
|
84
90
|
participantAttributes?: {
|
|
85
91
|
[key: string]: string;
|
|
86
92
|
};
|
|
93
|
+
/** Optionally send following DTMF digits (extension codes) when making a call.
|
|
94
|
+
* Character 'w' can be used to add a 0.5 sec delay. */
|
|
87
95
|
dtmf?: string;
|
|
88
|
-
/** @deprecated
|
|
96
|
+
/** @deprecated use `playDialtone` instead */
|
|
89
97
|
playRingtone?: boolean;
|
|
98
|
+
/** If `true`, the SIP Participant plays a dial tone to the room until the phone is picked up. */
|
|
90
99
|
playDialtone?: boolean;
|
|
100
|
+
/** These headers are sent as-is and may help identify this call as coming from LiveKit for the other SIP endpoint. */
|
|
91
101
|
headers?: {
|
|
92
102
|
[key: string]: string;
|
|
93
103
|
};
|
|
104
|
+
/** Map SIP response headers from INVITE to sip.h.* participant attributes automatically. */
|
|
94
105
|
includeHeaders?: SIPHeaderOptions;
|
|
95
106
|
hidePhoneNumber?: boolean;
|
|
107
|
+
/** Maximum time for the call to ring in seconds. */
|
|
96
108
|
ringingTimeout?: number;
|
|
109
|
+
/** Maximum call duration in seconds. */
|
|
97
110
|
maxCallDuration?: number;
|
|
111
|
+
/** If `true`, Krisp noise cancellation will be enabled for the caller. */
|
|
98
112
|
krispEnabled?: boolean;
|
|
113
|
+
/** If `true`, this will wait until the call is answered before returning. */
|
|
114
|
+
waitUntilAnswered?: boolean;
|
|
115
|
+
/** Optional request timeout in seconds. default 60 seconds if waitUntilAnswered is true, otherwise 10 seconds */
|
|
116
|
+
timeout?: number;
|
|
117
|
+
}
|
|
118
|
+
export interface ListSipDispatchRuleOptions {
|
|
119
|
+
/** Pagination options. */
|
|
120
|
+
page?: Pagination;
|
|
121
|
+
/** Rule IDs to list. If this option is set, the response will contains rules in the same order. If any of the rules is missing, a nil item in that position will be sent in the response. */
|
|
122
|
+
dispatchRuleIds?: string[];
|
|
123
|
+
/** Only list rules that contain one of the Trunk IDs, including wildcard rules. */
|
|
124
|
+
trunkIds?: string[];
|
|
125
|
+
}
|
|
126
|
+
export interface ListSipTrunkOptions {
|
|
127
|
+
/** Pagination options. */
|
|
128
|
+
page?: Pagination;
|
|
129
|
+
/** Trunk IDs to list. If this option is set, the response will contains trunks in the same order. If any of the trunks is missing, a nil item in that position will be sent in the response. */
|
|
130
|
+
trunkIds?: string[];
|
|
131
|
+
/** Only list trunks that contain one of the numbers, including wildcard trunks. */
|
|
132
|
+
numbers?: string[];
|
|
133
|
+
}
|
|
134
|
+
export interface SipDispatchRuleUpdateOptions {
|
|
135
|
+
trunkIds?: ListUpdate;
|
|
136
|
+
rule?: SIPDispatchRule;
|
|
137
|
+
name?: string;
|
|
138
|
+
metadata?: string;
|
|
139
|
+
attributes?: {
|
|
140
|
+
[key: string]: string;
|
|
141
|
+
};
|
|
142
|
+
}
|
|
143
|
+
export interface SipInboundTrunkUpdateOptions {
|
|
144
|
+
numbers?: ListUpdate;
|
|
145
|
+
allowedAddresses?: ListUpdate;
|
|
146
|
+
allowedNumbers?: ListUpdate;
|
|
147
|
+
authUsername?: string;
|
|
148
|
+
authPassword?: string;
|
|
149
|
+
name?: string;
|
|
150
|
+
metadata?: string;
|
|
151
|
+
}
|
|
152
|
+
export interface SipOutboundTrunkUpdateOptions {
|
|
153
|
+
numbers?: ListUpdate;
|
|
154
|
+
allowedAddresses?: ListUpdate;
|
|
155
|
+
allowedNumbers?: ListUpdate;
|
|
156
|
+
authUsername?: string;
|
|
157
|
+
authPassword?: string;
|
|
158
|
+
destinationCountry?: string;
|
|
159
|
+
name?: string;
|
|
160
|
+
metadata?: string;
|
|
99
161
|
}
|
|
100
162
|
export interface TransferSipParticipantOptions {
|
|
101
163
|
playDialtone?: boolean;
|
|
@@ -121,49 +183,139 @@ export declare class SipClient extends ServiceBase {
|
|
|
121
183
|
*/
|
|
122
184
|
createSipTrunk(number: string, opts?: CreateSipTrunkOptions): Promise<SIPTrunkInfo>;
|
|
123
185
|
/**
|
|
186
|
+
* Create a new SIP inbound trunk.
|
|
187
|
+
*
|
|
124
188
|
* @param name - human-readable name of the trunk
|
|
125
189
|
* @param numbers - phone numbers of the trunk
|
|
126
190
|
* @param opts - CreateSipTrunkOptions
|
|
191
|
+
* @returns Created SIP inbound trunk
|
|
127
192
|
*/
|
|
128
193
|
createSipInboundTrunk(name: string, numbers: string[], opts?: CreateSipInboundTrunkOptions): Promise<SIPInboundTrunkInfo>;
|
|
129
194
|
/**
|
|
195
|
+
* Create a new SIP outbound trunk.
|
|
196
|
+
*
|
|
130
197
|
* @param name - human-readable name of the trunk
|
|
131
198
|
* @param address - hostname and port of the SIP server to dial
|
|
132
199
|
* @param numbers - phone numbers of the trunk
|
|
133
200
|
* @param opts - CreateSipTrunkOptions
|
|
201
|
+
* @returns Created SIP outbound trunk
|
|
134
202
|
*/
|
|
135
203
|
createSipOutboundTrunk(name: string, address: string, numbers: string[], opts?: CreateSipOutboundTrunkOptions): Promise<SIPOutboundTrunkInfo>;
|
|
136
204
|
/**
|
|
137
205
|
* @deprecated use `listSipInboundTrunk` or `listSipOutboundTrunk`
|
|
138
206
|
*/
|
|
139
207
|
listSipTrunk(): Promise<Array<SIPTrunkInfo>>;
|
|
140
|
-
listSipInboundTrunk(): Promise<Array<SIPInboundTrunkInfo>>;
|
|
141
|
-
listSipOutboundTrunk(): Promise<Array<SIPOutboundTrunkInfo>>;
|
|
142
208
|
/**
|
|
143
|
-
*
|
|
209
|
+
* List SIP inbound trunks with optional filtering.
|
|
210
|
+
*
|
|
211
|
+
* @param list - Request with optional filtering parameters
|
|
212
|
+
* @returns Response containing list of SIP inbound trunks
|
|
213
|
+
*/
|
|
214
|
+
listSipInboundTrunk(list?: ListSipTrunkOptions): Promise<Array<SIPInboundTrunkInfo>>;
|
|
215
|
+
/**
|
|
216
|
+
* List SIP outbound trunks with optional filtering.
|
|
217
|
+
*
|
|
218
|
+
* @param list - Request with optional filtering parameters
|
|
219
|
+
* @returns Response containing list of SIP outbound trunks
|
|
220
|
+
*/
|
|
221
|
+
listSipOutboundTrunk(list?: ListSipTrunkOptions): Promise<Array<SIPOutboundTrunkInfo>>;
|
|
222
|
+
/**
|
|
223
|
+
* Delete a SIP trunk.
|
|
224
|
+
*
|
|
225
|
+
* @param sipTrunkId - ID of the SIP trunk to delete
|
|
226
|
+
* @returns Deleted trunk information
|
|
144
227
|
*/
|
|
145
228
|
deleteSipTrunk(sipTrunkId: string): Promise<SIPTrunkInfo>;
|
|
146
229
|
/**
|
|
147
|
-
*
|
|
230
|
+
* Create a new SIP dispatch rule.
|
|
231
|
+
*
|
|
232
|
+
* @param rule - SIP dispatch rule to create
|
|
148
233
|
* @param opts - CreateSipDispatchRuleOptions
|
|
234
|
+
* @returns Created SIP dispatch rule
|
|
149
235
|
*/
|
|
150
236
|
createSipDispatchRule(rule: SipDispatchRuleDirect | SipDispatchRuleIndividual, opts?: CreateSipDispatchRuleOptions): Promise<SIPDispatchRuleInfo>;
|
|
151
|
-
listSipDispatchRule(): Promise<Array<SIPDispatchRuleInfo>>;
|
|
152
237
|
/**
|
|
153
|
-
*
|
|
238
|
+
* Updates an existing SIP dispatch rule by replacing it entirely.
|
|
239
|
+
*
|
|
240
|
+
* @param sipDispatchRuleId - ID of the SIP dispatch rule to update
|
|
241
|
+
* @param rule - new SIP dispatch rule
|
|
242
|
+
* @returns Updated SIP dispatch rule
|
|
243
|
+
*/
|
|
244
|
+
updateSipDispatchRule(sipDispatchRuleId: string, rule: SIPDispatchRuleInfo): Promise<SIPDispatchRuleInfo>;
|
|
245
|
+
/**
|
|
246
|
+
* Updates specific fields of an existing SIP dispatch rule.
|
|
247
|
+
* Only provided fields will be updated.
|
|
248
|
+
*
|
|
249
|
+
* @param sipDispatchRuleId - ID of the SIP dispatch rule to update
|
|
250
|
+
* @param fields - Fields of the dispatch rule to update
|
|
251
|
+
* @returns Updated SIP dispatch rule
|
|
252
|
+
*/
|
|
253
|
+
updateSipDispatchRuleFields(sipDispatchRuleId: string, fields?: SipDispatchRuleUpdateOptions): Promise<SIPDispatchRuleInfo>;
|
|
254
|
+
/**
|
|
255
|
+
* Updates an existing SIP inbound trunk by replacing it entirely.
|
|
256
|
+
*
|
|
257
|
+
* @param sipTrunkId - ID of the SIP inbound trunk to update
|
|
258
|
+
* @param trunk - SIP inbound trunk to update with
|
|
259
|
+
* @returns Updated SIP inbound trunk
|
|
260
|
+
*/
|
|
261
|
+
updateSipInboundTrunk(sipTrunkId: string, trunk: SIPInboundTrunkInfo): Promise<SIPInboundTrunkInfo>;
|
|
262
|
+
/**
|
|
263
|
+
* Updates specific fields of an existing SIP inbound trunk.
|
|
264
|
+
* Only provided fields will be updated.
|
|
265
|
+
*
|
|
266
|
+
* @param sipTrunkId - ID of the SIP inbound trunk to update
|
|
267
|
+
* @param fields - Fields of the inbound trunk to update
|
|
268
|
+
* @returns Updated SIP inbound trunk
|
|
269
|
+
*/
|
|
270
|
+
updateSipInboundTrunkFields(sipTrunkId: string, fields: SipInboundTrunkUpdateOptions): Promise<SIPInboundTrunkInfo>;
|
|
271
|
+
/**
|
|
272
|
+
* Updates an existing SIP outbound trunk by replacing it entirely.
|
|
273
|
+
*
|
|
274
|
+
* @param sipTrunkId - ID of the SIP outbound trunk to update
|
|
275
|
+
* @param trunk - SIP outbound trunk to update with
|
|
276
|
+
* @returns Updated SIP outbound trunk
|
|
277
|
+
*/
|
|
278
|
+
updateSipOutboundTrunk(sipTrunkId: string, trunk: SIPOutboundTrunkInfo): Promise<SIPOutboundTrunkInfo>;
|
|
279
|
+
/**
|
|
280
|
+
* Updates specific fields of an existing SIP outbound trunk.
|
|
281
|
+
* Only provided fields will be updated.
|
|
282
|
+
*
|
|
283
|
+
* @param sipTrunkId - ID of the SIP outbound trunk to update
|
|
284
|
+
* @param fields - Fields of the outbound trunk to update
|
|
285
|
+
* @returns Updated SIP outbound trunk
|
|
286
|
+
*/
|
|
287
|
+
updateSipOutboundTrunkFields(sipTrunkId: string, fields: SipOutboundTrunkUpdateOptions): Promise<SIPOutboundTrunkInfo>;
|
|
288
|
+
/**
|
|
289
|
+
* List SIP dispatch rules with optional filtering.
|
|
290
|
+
*
|
|
291
|
+
* @param list - Request with optional filtering parameters
|
|
292
|
+
* @returns Response containing list of SIP dispatch rules
|
|
293
|
+
*/
|
|
294
|
+
listSipDispatchRule(list?: ListSipDispatchRuleOptions): Promise<Array<SIPDispatchRuleInfo>>;
|
|
295
|
+
/**
|
|
296
|
+
* Delete a SIP dispatch rule.
|
|
297
|
+
*
|
|
298
|
+
* @param sipDispatchRuleId - ID of the SIP dispatch rule to delete
|
|
299
|
+
* @returns Deleted rule information
|
|
154
300
|
*/
|
|
155
301
|
deleteSipDispatchRule(sipDispatchRuleId: string): Promise<SIPDispatchRuleInfo>;
|
|
156
302
|
/**
|
|
303
|
+
* Create a new SIP participant.
|
|
304
|
+
*
|
|
157
305
|
* @param sipTrunkId - sip trunk to use for the call
|
|
158
306
|
* @param number - number to dial
|
|
159
307
|
* @param roomName - room to attach the call to
|
|
160
308
|
* @param opts - CreateSipParticipantOptions
|
|
309
|
+
* @returns Created SIP participant
|
|
161
310
|
*/
|
|
162
311
|
createSipParticipant(sipTrunkId: string, number: string, roomName: string, opts?: CreateSipParticipantOptions): Promise<SIPParticipantInfo>;
|
|
163
312
|
/**
|
|
313
|
+
* Transfer a SIP participant to a different room.
|
|
314
|
+
*
|
|
164
315
|
* @param roomName - room the SIP participant to transfer is connectd to
|
|
165
316
|
* @param participantIdentity - identity of the SIP participant to transfer
|
|
166
317
|
* @param transferTo - SIP URL to transfer the participant to
|
|
318
|
+
* @param opts - TransferSipParticipantOptions
|
|
167
319
|
*/
|
|
168
320
|
transferSipParticipant(roomName: string, participantIdentity: string, transferTo: string, opts?: TransferSipParticipantOptions): Promise<void>;
|
|
169
321
|
}
|
package/dist/SipClient.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"SipClient.d.ts","sourceRoot":"","sources":["../src/SipClient.ts"],"names":[],"mappings":"AAIA,OAAO,KAAK,
|
|
1
|
+
{"version":3,"file":"SipClient.d.ts","sourceRoot":"","sources":["../src/SipClient.ts"],"names":[],"mappings":"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"}
|