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.
@@ -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 we 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. */
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 we should use to call `status_callback`. Can be `POST` or `GET`. */
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. Peer-to-peer rooms can have up to 10 Participants. Small Group rooms can have up to 4 Participants. Group rooms can have up to 50 Participants. */
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. ***This feature is not available in `peer-to-peer` rooms.*** */
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`. ***This feature is not available in `peer-to-peer` rooms*** */
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 in Group Rooms. Can be: one of the [available Media Regions](https://www.twilio.com/docs/video/ip-addresses#group-rooms-media-servers). ***This feature is not available in `peer-to-peer` rooms.*** */
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. Group rooms only. */
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 we created to identify the Room resource.
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 we 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.
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 we use to call `status_callback`. Can be `POST` or `GET` and defaults to `POST`.
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. ***This feature is not available in `peer-to-peer` rooms.***
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`. ***This feature is not available in `peer-to-peer` rooms***
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 in Group Rooms. Can be: one of the [available Media Regions](https://www.twilio.com/docs/video/ip-addresses#media-servers). ***This feature is not available in `peer-to-peer` rooms.***
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. Group rooms only.
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
  /**
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "twilio",
3
3
  "description": "A Twilio helper library",
4
- "version": "5.3.3",
4
+ "version": "5.3.5",
5
5
  "author": "API Team <api@twilio.com>",
6
6
  "contributors": [
7
7
  {