@@ -65,21 +65,31 @@ ParticipantList = function ParticipantList(version, accountSid, conferenceSid) {
65
65
* @param {number } [opts.timeout] - The timeout
66
66
* @param {string } [opts.record] - The record
67
67
* @param {string } [opts.muted] - The muted
68
- * @param {participant.beep } [opts.beep] - The beep
68
+ * @param {string } [opts.beep] - The beep
69
69
* @param {string } [opts.startConferenceOnEnter] - The start_conference_on_enter
70
70
* @param {string } [opts.endConferenceOnExit] - The end_conference_on_exit
71
71
* @param {string } [opts.waitUrl] - The wait_url
72
72
* @param {string } [opts.waitMethod] - The wait_method
73
73
* @param {string } [opts.earlyMedia] - The early_media
74
74
* @param {number } [opts.maxParticipants] - The max_participants
75
- * @param {participant.conference_record } [opts.conferenceRecord] -
76
- * The conference_record
75
+ * @param {string } [opts.conferenceRecord] - The conference_record
77
76
* @param {string } [opts.conferenceTrim] - The conference_trim
78
77
* @param {string } [opts.conferenceStatusCallback] - The conference_status_callback
79
78
* @param {string } [opts.conferenceStatusCallbackMethod] -
80
79
* The conference_status_callback_method
81
80
* @param {string|list } [opts.conferenceStatusCallbackEvent] -
82
81
* The conference_status_callback_event
82
+ * @param {string } [opts.recordingChannels] - The recording_channels
83
+ * @param {string } [opts.recordingStatusCallback] - The recording_status_callback
84
+ * @param {string } [opts.recordingStatusCallbackMethod] -
85
+ * The recording_status_callback_method
86
+ * @param {string } [opts.sipAuthUsername] - The sip_auth_username
87
+ * @param {string } [opts.sipAuthPassword] - The sip_auth_password
88
+ * @param {string } [opts.region] - The region
89
+ * @param {string } [opts.conferenceRecordingStatusCallback] -
90
+ * The conference_recording_status_callback
91
+ * @param {string } [opts.conferenceRecordingStatusCallbackMethod] -
92
+ * The conference_recording_status_callback_method
83
93
* @param {function } [callback] - Callback to handle processed record
84
94
*
85
95
* @returns {Promise } Resolves to processed ParticipantInstance
@@ -117,7 +127,15 @@ ParticipantList = function ParticipantList(version, accountSid, conferenceSid) {
117
127
'ConferenceTrim' : _ . get ( opts , 'conferenceTrim' ) ,
118
128
'ConferenceStatusCallback' : _ . get ( opts , 'conferenceStatusCallback' ) ,
119
129
'ConferenceStatusCallbackMethod' : _ . get ( opts , 'conferenceStatusCallbackMethod' ) ,
120
- 'ConferenceStatusCallbackEvent' : _ . get ( opts , 'conferenceStatusCallbackEvent' )
130
+ 'ConferenceStatusCallbackEvent' : _ . get ( opts , 'conferenceStatusCallbackEvent' ) ,
131
+ 'RecordingChannels' : _ . get ( opts , 'recordingChannels' ) ,
132
+ 'RecordingStatusCallback' : _ . get ( opts , 'recordingStatusCallback' ) ,
133
+ 'RecordingStatusCallbackMethod' : _ . get ( opts , 'recordingStatusCallbackMethod' ) ,
134
+ 'SipAuthUsername' : _ . get ( opts , 'sipAuthUsername' ) ,
135
+ 'SipAuthPassword' : _ . get ( opts , 'sipAuthPassword' ) ,
136
+ 'Region' : _ . get ( opts , 'region' ) ,
137
+ 'ConferenceRecordingStatusCallback' : _ . get ( opts , 'conferenceRecordingStatusCallback' ) ,
138
+ 'ConferenceRecordingStatusCallbackMethod' : _ . get ( opts , 'conferenceRecordingStatusCallbackMethod' )
121
139
} ) ;
122
140
123
141
var promise = this . _version . create ( {
@@ -239,7 +257,7 @@ ParticipantList = function ParticipantList(version, accountSid, conferenceSid) {
239
257
promise . catch ( onComplete ) ;
240
258
}
241
259
242
- fetchNextPage ( _ . bind ( this . page , this , _ . merge ( opts , limits ) ) ) ;
260
+ fetchNextPage ( _ . bind ( this . page , this , opts ) ) ;
243
261
} ;
244
262
245
263
/* jshint ignore:start */
0 commit comments