twilio 5.3.3 → 5.3.5
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/lib/rest/conversations/V1.d.ts +5 -0
- package/lib/rest/conversations/V1.js +8 -0
- package/lib/rest/conversations/v1/conversationWithParticipants.d.ts +159 -0
- package/lib/rest/conversations/v1/conversationWithParticipants.js +126 -0
- package/lib/rest/conversations/v1/service/conversationWithParticipants.d.ts +160 -0
- package/lib/rest/conversations/v1/service/conversationWithParticipants.js +130 -0
- package/lib/rest/conversations/v1/service.d.ts +8 -0
- package/lib/rest/conversations/v1/service.js +13 -0
- package/lib/rest/marketplace/v1/referralConversion.d.ts +8 -45
- package/lib/rest/marketplace/v1/referralConversion.js +17 -49
- package/lib/rest/messaging/V1.d.ts +5 -0
- package/lib/rest/messaging/V1.js +7 -0
- package/lib/rest/messaging/v1/requestManagedCert.d.ts +127 -0
- package/lib/rest/messaging/v1/requestManagedCert.js +122 -0
- package/lib/rest/numbers/V1.d.ts +5 -5
- package/lib/rest/numbers/V1.js +8 -6
- package/lib/rest/numbers/v1/{webhook.d.ts → portingWebhookConfigurationFetch.d.ts} +10 -10
- package/lib/rest/numbers/v1/{webhook.js → portingWebhookConfigurationFetch.js} +6 -6
- package/lib/rest/video/v1/room.d.ts +14 -14
- package/package.json +1 -1
|
@@ -26,21 +26,21 @@ export interface RoomListInstanceCreateOptions {
|
|
|
26
26
|
type?: RoomRoomType;
|
|
27
27
|
/** An application-defined string that uniquely identifies the resource. It can be used as a `room_sid` in place of the resource\\\'s `sid` in the URL to address the resource, assuming it does not contain any [reserved characters](https://tools.ietf.org/html/rfc3986#section-2.2) that would need to be URL encoded. This value is unique for `in-progress` rooms. SDK clients can use this name to connect to the room. REST API clients can use this name in place of the Room SID to interact with the room as long as the room is `in-progress`. */
|
|
28
28
|
uniqueName?: string;
|
|
29
|
-
/** The URL
|
|
29
|
+
/** The URL Twilio should call using the `status_callback_method` to send status information to your application on every room event. See [Status Callbacks](https://www.twilio.com/docs/video/api/status-callbacks) for more info. */
|
|
30
30
|
statusCallback?: string;
|
|
31
|
-
/** The HTTP method
|
|
31
|
+
/** The HTTP method Twilio should use to call `status_callback`. Can be `POST` or `GET`. */
|
|
32
32
|
statusCallbackMethod?: string;
|
|
33
|
-
/** The maximum number of concurrent Participants allowed in the room.
|
|
33
|
+
/** The maximum number of concurrent Participants allowed in the room. The maximum allowed value is 50. */
|
|
34
34
|
maxParticipants?: number;
|
|
35
|
-
/** Whether to start recording when Participants connect.
|
|
35
|
+
/** Whether to start recording when Participants connect. */
|
|
36
36
|
recordParticipantsOnConnect?: boolean;
|
|
37
|
-
/** An array of the video codecs that are supported when publishing a track in the room. Can be: `VP8` and `H264`.
|
|
37
|
+
/** An array of the video codecs that are supported when publishing a track in the room. Can be: `VP8` and `H264`. */
|
|
38
38
|
videoCodecs?: Array<RoomVideoCodec>;
|
|
39
|
-
/** The region for the media server
|
|
39
|
+
/** The region for the Room\\\'s media server. Can be one of the [available Media Regions](https://www.twilio.com/docs/video/ip-addresses#group-rooms-media-servers). */
|
|
40
40
|
mediaRegion?: string;
|
|
41
41
|
/** A collection of Recording Rules that describe how to include or exclude matching tracks for recording */
|
|
42
42
|
recordingRules?: any;
|
|
43
|
-
/** When set to true, indicates that the participants in the room will only publish audio. No video tracks will be allowed.
|
|
43
|
+
/** When set to true, indicates that the participants in the room will only publish audio. No video tracks will be allowed. */
|
|
44
44
|
audioOnly?: boolean;
|
|
45
45
|
/** The maximum number of seconds a Participant can be connected to the room. The maximum possible value is 86400 seconds (24 hours). The default is 14400 seconds (4 hours). */
|
|
46
46
|
maxParticipantDuration?: number;
|
|
@@ -194,7 +194,7 @@ export declare class RoomInstance {
|
|
|
194
194
|
protected _context?: RoomContext;
|
|
195
195
|
constructor(_version: V1, payload: RoomResource, sid?: string);
|
|
196
196
|
/**
|
|
197
|
-
* The unique string that
|
|
197
|
+
* The unique string that Twilio created to identify the Room resource.
|
|
198
198
|
*/
|
|
199
199
|
sid: string;
|
|
200
200
|
status: RoomRoomStatus;
|
|
@@ -219,11 +219,11 @@ export declare class RoomInstance {
|
|
|
219
219
|
*/
|
|
220
220
|
uniqueName: string;
|
|
221
221
|
/**
|
|
222
|
-
* The URL
|
|
222
|
+
* The URL Twilio calls using the `status_callback_method` to send status information to your application on every room event. See [Status Callbacks](https://www.twilio.com/docs/video/api/status-callbacks) for more info.
|
|
223
223
|
*/
|
|
224
224
|
statusCallback: string;
|
|
225
225
|
/**
|
|
226
|
-
* The HTTP method
|
|
226
|
+
* The HTTP method Twilio uses to call `status_callback`. Can be `POST` or `GET` and defaults to `POST`.
|
|
227
227
|
*/
|
|
228
228
|
statusCallbackMethod: string;
|
|
229
229
|
/**
|
|
@@ -248,19 +248,19 @@ export declare class RoomInstance {
|
|
|
248
248
|
*/
|
|
249
249
|
maxConcurrentPublishedTracks: number;
|
|
250
250
|
/**
|
|
251
|
-
* Whether to start recording when Participants connect.
|
|
251
|
+
* Whether to start recording when Participants connect.
|
|
252
252
|
*/
|
|
253
253
|
recordParticipantsOnConnect: boolean;
|
|
254
254
|
/**
|
|
255
|
-
* An array of the video codecs that are supported when publishing a track in the room. Can be: `VP8` and `H264`.
|
|
255
|
+
* An array of the video codecs that are supported when publishing a track in the room. Can be: `VP8` and `H264`.
|
|
256
256
|
*/
|
|
257
257
|
videoCodecs: Array<RoomVideoCodec>;
|
|
258
258
|
/**
|
|
259
|
-
* The region for the media server
|
|
259
|
+
* The region for the Room\'s media server. Can be one of the [available Media Regions](https://www.twilio.com/docs/video/ip-addresses#media-servers).
|
|
260
260
|
*/
|
|
261
261
|
mediaRegion: string;
|
|
262
262
|
/**
|
|
263
|
-
* When set to true, indicates that the participants in the room will only publish audio. No video tracks will be allowed.
|
|
263
|
+
* When set to true, indicates that the participants in the room will only publish audio. No video tracks will be allowed.
|
|
264
264
|
*/
|
|
265
265
|
audioOnly: boolean;
|
|
266
266
|
/**
|