twilio 3.73.0 → 3.73.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/CHANGES.md +17 -0
- package/lib/rest/Insights.d.ts +2 -0
- package/lib/rest/Insights.js +8 -0
- package/lib/rest/Supersim.d.ts +2 -0
- package/lib/rest/Supersim.js +9 -0
- package/lib/rest/flexApi/v1/flexFlow.d.ts +2 -2
- package/lib/rest/flexApi/v1/flexFlow.js +3 -3
- package/lib/rest/insights/V1.d.ts +3 -0
- package/lib/rest/insights/V1.js +11 -0
- package/lib/rest/insights/v1/conference/conferenceParticipant.d.ts +385 -0
- package/lib/rest/insights/v1/conference/conferenceParticipant.js +663 -0
- package/lib/rest/insights/v1/conference.d.ts +387 -0
- package/lib/rest/insights/v1/conference.js +669 -0
- package/lib/rest/messaging/v1/brandRegistration.d.ts +2 -0
- package/lib/rest/messaging/v1/brandRegistration.js +2 -0
- package/lib/rest/supersim/V1.d.ts +3 -0
- package/lib/rest/supersim/V1.js +12 -0
- package/lib/rest/supersim/v1/esimProfile.d.ts +344 -0
- package/lib/rest/supersim/v1/esimProfile.js +664 -0
- package/lib/rest/verify/v2/service/accessToken.d.ts +62 -4
- package/lib/rest/verify/v2/service/accessToken.js +155 -7
- package/package.json +2 -2
package/CHANGES.md
CHANGED
|
@@ -1,6 +1,23 @@
|
|
|
1
1
|
twilio-node changelog
|
|
2
2
|
=====================
|
|
3
3
|
|
|
4
|
+
[2022-01-26] Version 3.73.1
|
|
5
|
+
---------------------------
|
|
6
|
+
**Library - Chore**
|
|
7
|
+
- [PR #727](https://github.com/twilio/twilio-node/pull/727): run audit only on non dev dependencies. Thanks to [@shwetha-manvinkurke](https://github.com/shwetha-manvinkurke)!
|
|
8
|
+
|
|
9
|
+
**Insights**
|
|
10
|
+
- Added new endpoint to fetch Conference Participant Summary
|
|
11
|
+
- Added new endpoint to fetch Conference Summary
|
|
12
|
+
|
|
13
|
+
**Messaging**
|
|
14
|
+
- Add government_entity parameter to brand apis
|
|
15
|
+
|
|
16
|
+
**Verify**
|
|
17
|
+
- Add Access Token fetch endpoint to retrieve a previously created token.
|
|
18
|
+
- Add Access Token payload to the Access Token creation endpoint, including a unique Sid, so it's addressable while it's TTL is valid.
|
|
19
|
+
|
|
20
|
+
|
|
4
21
|
[2022-01-12] Version 3.73.0
|
|
5
22
|
---------------------------
|
|
6
23
|
**Library - Chore**
|
package/lib/rest/Insights.d.ts
CHANGED
|
@@ -10,6 +10,7 @@ import Twilio = require('./Twilio');
|
|
|
10
10
|
import V1 = require('./insights/V1');
|
|
11
11
|
import { CallListInstance } from './insights/v1/call';
|
|
12
12
|
import { CallSummariesListInstance } from './insights/v1/callSummaries';
|
|
13
|
+
import { ConferenceListInstance } from './insights/v1/conference';
|
|
13
14
|
import { RoomListInstance } from './insights/v1/room';
|
|
14
15
|
import { SettingListInstance } from './insights/v1/setting';
|
|
15
16
|
|
|
@@ -24,6 +25,7 @@ declare class Insights extends Domain {
|
|
|
24
25
|
|
|
25
26
|
readonly callSummaries: CallSummariesListInstance;
|
|
26
27
|
readonly calls: CallListInstance;
|
|
28
|
+
readonly conferences: ConferenceListInstance;
|
|
27
29
|
readonly rooms: RoomListInstance;
|
|
28
30
|
readonly settings: SettingListInstance;
|
|
29
31
|
readonly v1: V1;
|
package/lib/rest/Insights.js
CHANGED
|
@@ -25,6 +25,7 @@ var V1 = require('./insights/V1'); /* jshint ignore:line */
|
|
|
25
25
|
* @property {Twilio.Insights.V1.CallList} calls - calls resource
|
|
26
26
|
* @property {Twilio.Insights.V1.CallSummariesList} callSummaries -
|
|
27
27
|
* callSummaries resource
|
|
28
|
+
* @property {Twilio.Insights.V1.ConferenceList} conferences - conferences resource
|
|
28
29
|
* @property {Twilio.Insights.V1.RoomList} rooms - rooms resource
|
|
29
30
|
*
|
|
30
31
|
* @param {Twilio} twilio - The twilio client
|
|
@@ -69,6 +70,13 @@ Object.defineProperty(Insights.prototype,
|
|
|
69
70
|
}
|
|
70
71
|
});
|
|
71
72
|
|
|
73
|
+
Object.defineProperty(Insights.prototype,
|
|
74
|
+
'conferences', {
|
|
75
|
+
get: function() {
|
|
76
|
+
return this.v1.conferences;
|
|
77
|
+
}
|
|
78
|
+
});
|
|
79
|
+
|
|
72
80
|
Object.defineProperty(Insights.prototype,
|
|
73
81
|
'rooms', {
|
|
74
82
|
get: function() {
|
package/lib/rest/Supersim.d.ts
CHANGED
|
@@ -9,6 +9,7 @@ import Domain = require('../base/Domain');
|
|
|
9
9
|
import Twilio = require('./Twilio');
|
|
10
10
|
import V1 = require('./supersim/V1');
|
|
11
11
|
import { CommandListInstance } from './supersim/v1/command';
|
|
12
|
+
import { EsimProfileListInstance } from './supersim/v1/esimProfile';
|
|
12
13
|
import { FleetListInstance } from './supersim/v1/fleet';
|
|
13
14
|
import { IpCommandListInstance } from './supersim/v1/ipCommand';
|
|
14
15
|
import { NetworkAccessProfileListInstance } from './supersim/v1/networkAccessProfile';
|
|
@@ -27,6 +28,7 @@ declare class Supersim extends Domain {
|
|
|
27
28
|
constructor(twilio: Twilio);
|
|
28
29
|
|
|
29
30
|
readonly commands: CommandListInstance;
|
|
31
|
+
readonly esimProfiles: EsimProfileListInstance;
|
|
30
32
|
readonly fleets: FleetListInstance;
|
|
31
33
|
readonly ipCommands: IpCommandListInstance;
|
|
32
34
|
readonly networkAccessProfiles: NetworkAccessProfileListInstance;
|
package/lib/rest/Supersim.js
CHANGED
|
@@ -22,6 +22,8 @@ var V1 = require('./supersim/V1'); /* jshint ignore:line */
|
|
|
22
22
|
*
|
|
23
23
|
* @property {Twilio.Supersim.V1} v1 - v1 version
|
|
24
24
|
* @property {Twilio.Supersim.V1.CommandList} commands - commands resource
|
|
25
|
+
* @property {Twilio.Supersim.V1.EsimProfileList} esimProfiles -
|
|
26
|
+
* esimProfiles resource
|
|
25
27
|
* @property {Twilio.Supersim.V1.FleetList} fleets - fleets resource
|
|
26
28
|
* @property {Twilio.Supersim.V1.IpCommandList} ipCommands - ipCommands resource
|
|
27
29
|
* @property {Twilio.Supersim.V1.NetworkList} networks - networks resource
|
|
@@ -60,6 +62,13 @@ Object.defineProperty(Supersim.prototype,
|
|
|
60
62
|
}
|
|
61
63
|
});
|
|
62
64
|
|
|
65
|
+
Object.defineProperty(Supersim.prototype,
|
|
66
|
+
'esimProfiles', {
|
|
67
|
+
get: function() {
|
|
68
|
+
return this.v1.esimProfiles;
|
|
69
|
+
}
|
|
70
|
+
});
|
|
71
|
+
|
|
63
72
|
Object.defineProperty(Supersim.prototype,
|
|
64
73
|
'fleets', {
|
|
65
74
|
get: function() {
|
|
@@ -33,7 +33,7 @@ declare function FlexFlowList(version: V1): FlexFlowListInstance;
|
|
|
33
33
|
* @property integration.creationOnMessage - Whether to create a Task when the first message arrives
|
|
34
34
|
* @property integration.flowSid - The SID of the Studio Flow
|
|
35
35
|
* @property integration.priority - The Task priority of a new Task
|
|
36
|
-
* @property integration.retryCount - The number of times to retry the webhook
|
|
36
|
+
* @property integration.retryCount - The number of times to retry the Studio Flow or webhook in case of failure
|
|
37
37
|
* @property integration.timeout - The Task timeout in seconds for a new Task
|
|
38
38
|
* @property integration.url - The External Webhook URL
|
|
39
39
|
* @property integration.workflowSid - The Workflow SID for a new Task
|
|
@@ -196,7 +196,7 @@ interface FlexFlowListInstance {
|
|
|
196
196
|
* @property integration.creationOnMessage - Whether to create a Task when the first message arrives
|
|
197
197
|
* @property integration.flowSid - The SID of the Studio Flow
|
|
198
198
|
* @property integration.priority - The Task priority of a new Task
|
|
199
|
-
* @property integration.retryCount - The number of times to retry the webhook
|
|
199
|
+
* @property integration.retryCount - The number of times to retry the Studio Flow or webhook in case of failure
|
|
200
200
|
* @property integration.timeout - The Task timeout in seconds for a new Task
|
|
201
201
|
* @property integration.url - The External Webhook URL
|
|
202
202
|
* @property integration.workflowSid - The Workflow SID for a new Task
|
|
@@ -333,7 +333,7 @@ FlexFlowList = function FlexFlowList(version) {
|
|
|
333
333
|
* @param {boolean} [opts.janitorEnabled] -
|
|
334
334
|
* Remove active Proxy sessions if the corresponding Task is deleted
|
|
335
335
|
* @param {number} [opts.integration.retryCount] -
|
|
336
|
-
* The number of times to retry the webhook
|
|
336
|
+
* The number of times to retry the Studio Flow or webhook in case of failure
|
|
337
337
|
* @param {function} [callback] - Callback to handle processed record
|
|
338
338
|
*
|
|
339
339
|
* @returns {Promise} Resolves to processed FlexFlowInstance
|
|
@@ -608,7 +608,7 @@ FlexFlowInstance.prototype.fetch = function fetch(callback) {
|
|
|
608
608
|
* @param {boolean} [opts.janitorEnabled] -
|
|
609
609
|
* Remove active Proxy sessions if the corresponding Task is deleted
|
|
610
610
|
* @param {number} [opts.integration.retryCount] -
|
|
611
|
-
* The number of times to retry the webhook
|
|
611
|
+
* The number of times to retry the Studio Flow or webhook in case of failure
|
|
612
612
|
* @param {function} [callback] - Callback to handle processed record
|
|
613
613
|
*
|
|
614
614
|
* @returns {Promise} Resolves to processed FlexFlowInstance
|
|
@@ -740,7 +740,7 @@ FlexFlowContext.prototype.fetch = function fetch(callback) {
|
|
|
740
740
|
* @param {boolean} [opts.janitorEnabled] -
|
|
741
741
|
* Remove active Proxy sessions if the corresponding Task is deleted
|
|
742
742
|
* @param {number} [opts.integration.retryCount] -
|
|
743
|
-
* The number of times to retry the webhook
|
|
743
|
+
* The number of times to retry the Studio Flow or webhook in case of failure
|
|
744
744
|
* @param {function} [callback] - Callback to handle processed record
|
|
745
745
|
*
|
|
746
746
|
* @returns {Promise} Resolves to processed FlexFlowInstance
|
|
@@ -11,6 +11,8 @@ import { CallList } from './v1/call';
|
|
|
11
11
|
import { CallListInstance } from './v1/call';
|
|
12
12
|
import { CallSummariesList } from './v1/callSummaries';
|
|
13
13
|
import { CallSummariesListInstance } from './v1/callSummaries';
|
|
14
|
+
import { ConferenceList } from './v1/conference';
|
|
15
|
+
import { ConferenceListInstance } from './v1/conference';
|
|
14
16
|
import { RoomList } from './v1/room';
|
|
15
17
|
import { RoomListInstance } from './v1/room';
|
|
16
18
|
import { SettingList } from './v1/setting';
|
|
@@ -27,6 +29,7 @@ declare class V1 extends Version {
|
|
|
27
29
|
|
|
28
30
|
readonly callSummaries: CallSummariesListInstance;
|
|
29
31
|
readonly calls: CallListInstance;
|
|
32
|
+
readonly conferences: ConferenceListInstance;
|
|
30
33
|
readonly rooms: RoomListInstance;
|
|
31
34
|
readonly settings: SettingListInstance;
|
|
32
35
|
}
|
package/lib/rest/insights/V1.js
CHANGED
|
@@ -12,6 +12,7 @@
|
|
|
12
12
|
var _ = require('lodash'); /* jshint ignore:line */
|
|
13
13
|
var CallList = require('./v1/call').CallList;
|
|
14
14
|
var CallSummariesList = require('./v1/callSummaries').CallSummariesList;
|
|
15
|
+
var ConferenceList = require('./v1/conference').ConferenceList;
|
|
15
16
|
var RoomList = require('./v1/room').RoomList;
|
|
16
17
|
var SettingList = require('./v1/setting').SettingList;
|
|
17
18
|
var Version = require('../../base/Version'); /* jshint ignore:line */
|
|
@@ -27,6 +28,7 @@ var Version = require('../../base/Version'); /* jshint ignore:line */
|
|
|
27
28
|
* @property {Twilio.Insights.V1.CallList} calls - calls resource
|
|
28
29
|
* @property {Twilio.Insights.V1.CallSummariesList} callSummaries -
|
|
29
30
|
* callSummaries resource
|
|
31
|
+
* @property {Twilio.Insights.V1.ConferenceList} conferences - conferences resource
|
|
30
32
|
* @property {Twilio.Insights.V1.RoomList} rooms - rooms resource
|
|
31
33
|
*
|
|
32
34
|
* @param {Twilio.Insights} domain - The twilio domain
|
|
@@ -39,6 +41,7 @@ function V1(domain) {
|
|
|
39
41
|
this._settings = undefined;
|
|
40
42
|
this._calls = undefined;
|
|
41
43
|
this._callSummaries = undefined;
|
|
44
|
+
this._conferences = undefined;
|
|
42
45
|
this._rooms = undefined;
|
|
43
46
|
}
|
|
44
47
|
|
|
@@ -69,6 +72,14 @@ Object.defineProperty(V1.prototype,
|
|
|
69
72
|
}
|
|
70
73
|
});
|
|
71
74
|
|
|
75
|
+
Object.defineProperty(V1.prototype,
|
|
76
|
+
'conferences', {
|
|
77
|
+
get: function() {
|
|
78
|
+
this._conferences = this._conferences || new ConferenceList(this);
|
|
79
|
+
return this._conferences;
|
|
80
|
+
}
|
|
81
|
+
});
|
|
82
|
+
|
|
72
83
|
Object.defineProperty(V1.prototype,
|
|
73
84
|
'rooms', {
|
|
74
85
|
get: function() {
|
|
@@ -0,0 +1,385 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* This code was generated by
|
|
3
|
+
* \ / _ _ _| _ _
|
|
4
|
+
* | (_)\/(_)(_|\/| |(/_ v1.0.0
|
|
5
|
+
* / /
|
|
6
|
+
*/
|
|
7
|
+
|
|
8
|
+
import Page = require('../../../../base/Page');
|
|
9
|
+
import Response = require('../../../../http/response');
|
|
10
|
+
import V1 = require('../../V1');
|
|
11
|
+
import { SerializableClass } from '../../../../interfaces';
|
|
12
|
+
|
|
13
|
+
type ConferenceParticipantCallDirection = 'inbound'|'outbound';
|
|
14
|
+
|
|
15
|
+
type ConferenceParticipantCallState = 'answered'|'completed'|'busy'|'fail'|'noanswer'|'ringing'|'canceled';
|
|
16
|
+
|
|
17
|
+
type ConferenceParticipantCallType = 'carrier'|'client'|'sip';
|
|
18
|
+
|
|
19
|
+
type ConferenceParticipantJitterBufferSize = 'large'|'small'|'medium'|'off';
|
|
20
|
+
|
|
21
|
+
type ConferenceParticipantRegion = 'us1'|'us2'|'au1'|'br1'|'ie1'|'jp1'|'sg1'|'de1';
|
|
22
|
+
|
|
23
|
+
/**
|
|
24
|
+
* Initialize the ConferenceParticipantList
|
|
25
|
+
*
|
|
26
|
+
* @param version - Version of the resource
|
|
27
|
+
* @param conferenceSid - The conference_sid
|
|
28
|
+
*/
|
|
29
|
+
declare function ConferenceParticipantList(version: V1, conferenceSid: string): ConferenceParticipantListInstance;
|
|
30
|
+
|
|
31
|
+
/**
|
|
32
|
+
* Options to pass to fetch
|
|
33
|
+
*
|
|
34
|
+
* @property events - The events
|
|
35
|
+
* @property metrics - The metrics
|
|
36
|
+
*/
|
|
37
|
+
interface ConferenceParticipantInstanceFetchOptions {
|
|
38
|
+
events?: string;
|
|
39
|
+
metrics?: string;
|
|
40
|
+
}
|
|
41
|
+
|
|
42
|
+
interface ConferenceParticipantListInstance {
|
|
43
|
+
/**
|
|
44
|
+
* @param sid - sid of instance
|
|
45
|
+
*/
|
|
46
|
+
(sid: string): ConferenceParticipantContext;
|
|
47
|
+
/**
|
|
48
|
+
* Streams ConferenceParticipantInstance records from the API.
|
|
49
|
+
*
|
|
50
|
+
* This operation lazily loads records as efficiently as possible until the limit
|
|
51
|
+
* is reached.
|
|
52
|
+
*
|
|
53
|
+
* The results are passed into the callback function, so this operation is memory
|
|
54
|
+
* efficient.
|
|
55
|
+
*
|
|
56
|
+
* If a function is passed as the first argument, it will be used as the callback
|
|
57
|
+
* function.
|
|
58
|
+
*
|
|
59
|
+
* @param callback - Function to process each record
|
|
60
|
+
*/
|
|
61
|
+
each(callback?: (item: ConferenceParticipantInstance, done: (err?: Error) => void) => void): void;
|
|
62
|
+
/**
|
|
63
|
+
* Streams ConferenceParticipantInstance records from the API.
|
|
64
|
+
*
|
|
65
|
+
* This operation lazily loads records as efficiently as possible until the limit
|
|
66
|
+
* is reached.
|
|
67
|
+
*
|
|
68
|
+
* The results are passed into the callback function, so this operation is memory
|
|
69
|
+
* efficient.
|
|
70
|
+
*
|
|
71
|
+
* If a function is passed as the first argument, it will be used as the callback
|
|
72
|
+
* function.
|
|
73
|
+
*
|
|
74
|
+
* @param opts - Options for request
|
|
75
|
+
* @param callback - Function to process each record
|
|
76
|
+
*/
|
|
77
|
+
each(opts?: ConferenceParticipantListInstanceEachOptions, callback?: (item: ConferenceParticipantInstance, done: (err?: Error) => void) => void): void;
|
|
78
|
+
/**
|
|
79
|
+
* Constructs a conference_participant
|
|
80
|
+
*
|
|
81
|
+
* @param participantSid - The participant_sid
|
|
82
|
+
*/
|
|
83
|
+
get(participantSid: string): ConferenceParticipantContext;
|
|
84
|
+
/**
|
|
85
|
+
* Retrieve a single target page of ConferenceParticipantInstance records from the
|
|
86
|
+
* API.
|
|
87
|
+
*
|
|
88
|
+
* The request is executed immediately.
|
|
89
|
+
*
|
|
90
|
+
* If a function is passed as the first argument, it will be used as the callback
|
|
91
|
+
* function.
|
|
92
|
+
*
|
|
93
|
+
* @param callback - Callback to handle list of records
|
|
94
|
+
*/
|
|
95
|
+
getPage(callback?: (error: Error | null, items: ConferenceParticipantPage) => any): Promise<ConferenceParticipantPage>;
|
|
96
|
+
/**
|
|
97
|
+
* Retrieve a single target page of ConferenceParticipantInstance records from the
|
|
98
|
+
* API.
|
|
99
|
+
*
|
|
100
|
+
* The request is executed immediately.
|
|
101
|
+
*
|
|
102
|
+
* If a function is passed as the first argument, it will be used as the callback
|
|
103
|
+
* function.
|
|
104
|
+
*
|
|
105
|
+
* @param targetUrl - API-generated URL for the requested results page
|
|
106
|
+
* @param callback - Callback to handle list of records
|
|
107
|
+
*/
|
|
108
|
+
getPage(targetUrl?: string, callback?: (error: Error | null, items: ConferenceParticipantPage) => any): Promise<ConferenceParticipantPage>;
|
|
109
|
+
/**
|
|
110
|
+
* Lists ConferenceParticipantInstance records from the API as a list.
|
|
111
|
+
*
|
|
112
|
+
* If a function is passed as the first argument, it will be used as the callback
|
|
113
|
+
* function.
|
|
114
|
+
*
|
|
115
|
+
* @param callback - Callback to handle list of records
|
|
116
|
+
*/
|
|
117
|
+
list(callback?: (error: Error | null, items: ConferenceParticipantInstance[]) => any): Promise<ConferenceParticipantInstance[]>;
|
|
118
|
+
/**
|
|
119
|
+
* Lists ConferenceParticipantInstance records from the API as a list.
|
|
120
|
+
*
|
|
121
|
+
* If a function is passed as the first argument, it will be used as the callback
|
|
122
|
+
* function.
|
|
123
|
+
*
|
|
124
|
+
* @param opts - Options for request
|
|
125
|
+
* @param callback - Callback to handle list of records
|
|
126
|
+
*/
|
|
127
|
+
list(opts?: ConferenceParticipantListInstanceOptions, callback?: (error: Error | null, items: ConferenceParticipantInstance[]) => any): Promise<ConferenceParticipantInstance[]>;
|
|
128
|
+
/**
|
|
129
|
+
* Retrieve a single page of ConferenceParticipantInstance records from the API.
|
|
130
|
+
*
|
|
131
|
+
* The request is executed immediately.
|
|
132
|
+
*
|
|
133
|
+
* If a function is passed as the first argument, it will be used as the callback
|
|
134
|
+
* function.
|
|
135
|
+
*
|
|
136
|
+
* @param callback - Callback to handle list of records
|
|
137
|
+
*/
|
|
138
|
+
page(callback?: (error: Error | null, items: ConferenceParticipantPage) => any): Promise<ConferenceParticipantPage>;
|
|
139
|
+
/**
|
|
140
|
+
* Retrieve a single page of ConferenceParticipantInstance records from the API.
|
|
141
|
+
*
|
|
142
|
+
* The request is executed immediately.
|
|
143
|
+
*
|
|
144
|
+
* If a function is passed as the first argument, it will be used as the callback
|
|
145
|
+
* function.
|
|
146
|
+
*
|
|
147
|
+
* @param opts - Options for request
|
|
148
|
+
* @param callback - Callback to handle list of records
|
|
149
|
+
*/
|
|
150
|
+
page(opts?: ConferenceParticipantListInstancePageOptions, callback?: (error: Error | null, items: ConferenceParticipantPage) => any): Promise<ConferenceParticipantPage>;
|
|
151
|
+
/**
|
|
152
|
+
* Provide a user-friendly representation
|
|
153
|
+
*/
|
|
154
|
+
toJSON(): any;
|
|
155
|
+
}
|
|
156
|
+
|
|
157
|
+
/**
|
|
158
|
+
* Options to pass to each
|
|
159
|
+
*
|
|
160
|
+
* @property callback -
|
|
161
|
+
* Function to process each record. If this and a positional
|
|
162
|
+
* callback are passed, this one will be used
|
|
163
|
+
* @property done - Function to be called upon completion of streaming
|
|
164
|
+
* @property events - The events
|
|
165
|
+
* @property label - The label
|
|
166
|
+
* @property limit -
|
|
167
|
+
* Upper limit for the number of records to return.
|
|
168
|
+
* each() guarantees never to return more than limit.
|
|
169
|
+
* Default is no limit
|
|
170
|
+
* @property pageSize -
|
|
171
|
+
* Number of records to fetch per request,
|
|
172
|
+
* when not set will use the default value of 50 records.
|
|
173
|
+
* If no pageSize is defined but a limit is defined,
|
|
174
|
+
* each() will attempt to read the limit with the most efficient
|
|
175
|
+
* page size, i.e. min(limit, 1000)
|
|
176
|
+
* @property participantSid - The participant_sid
|
|
177
|
+
*/
|
|
178
|
+
interface ConferenceParticipantListInstanceEachOptions {
|
|
179
|
+
callback?: (item: ConferenceParticipantInstance, done: (err?: Error) => void) => void;
|
|
180
|
+
done?: Function;
|
|
181
|
+
events?: string;
|
|
182
|
+
label?: string;
|
|
183
|
+
limit?: number;
|
|
184
|
+
pageSize?: number;
|
|
185
|
+
participantSid?: string;
|
|
186
|
+
}
|
|
187
|
+
|
|
188
|
+
/**
|
|
189
|
+
* Options to pass to list
|
|
190
|
+
*
|
|
191
|
+
* @property events - The events
|
|
192
|
+
* @property label - The label
|
|
193
|
+
* @property limit -
|
|
194
|
+
* Upper limit for the number of records to return.
|
|
195
|
+
* list() guarantees never to return more than limit.
|
|
196
|
+
* Default is no limit
|
|
197
|
+
* @property pageSize -
|
|
198
|
+
* Number of records to fetch per request,
|
|
199
|
+
* when not set will use the default value of 50 records.
|
|
200
|
+
* If no page_size is defined but a limit is defined,
|
|
201
|
+
* list() will attempt to read the limit with the most
|
|
202
|
+
* efficient page size, i.e. min(limit, 1000)
|
|
203
|
+
* @property participantSid - The participant_sid
|
|
204
|
+
*/
|
|
205
|
+
interface ConferenceParticipantListInstanceOptions {
|
|
206
|
+
events?: string;
|
|
207
|
+
label?: string;
|
|
208
|
+
limit?: number;
|
|
209
|
+
pageSize?: number;
|
|
210
|
+
participantSid?: string;
|
|
211
|
+
}
|
|
212
|
+
|
|
213
|
+
/**
|
|
214
|
+
* Options to pass to page
|
|
215
|
+
*
|
|
216
|
+
* @property events - The events
|
|
217
|
+
* @property label - The label
|
|
218
|
+
* @property pageNumber - Page Number, this value is simply for client state
|
|
219
|
+
* @property pageSize - Number of records to return, defaults to 50
|
|
220
|
+
* @property pageToken - PageToken provided by the API
|
|
221
|
+
* @property participantSid - The participant_sid
|
|
222
|
+
*/
|
|
223
|
+
interface ConferenceParticipantListInstancePageOptions {
|
|
224
|
+
events?: string;
|
|
225
|
+
label?: string;
|
|
226
|
+
pageNumber?: number;
|
|
227
|
+
pageSize?: number;
|
|
228
|
+
pageToken?: string;
|
|
229
|
+
participantSid?: string;
|
|
230
|
+
}
|
|
231
|
+
|
|
232
|
+
interface ConferenceParticipantPayload extends ConferenceParticipantResource, Page.TwilioResponsePayload {
|
|
233
|
+
}
|
|
234
|
+
|
|
235
|
+
interface ConferenceParticipantResource {
|
|
236
|
+
account_sid: string;
|
|
237
|
+
agent_audio: boolean;
|
|
238
|
+
call_direction: ConferenceParticipantCallDirection;
|
|
239
|
+
call_sid: string;
|
|
240
|
+
call_state: ConferenceParticipantCallState;
|
|
241
|
+
call_type: ConferenceParticipantCallType;
|
|
242
|
+
coached_participants: string[];
|
|
243
|
+
conference_region: ConferenceParticipantRegion;
|
|
244
|
+
conference_sid: string;
|
|
245
|
+
country_code: string;
|
|
246
|
+
duration_seconds: number;
|
|
247
|
+
events: object;
|
|
248
|
+
from: string;
|
|
249
|
+
is_coach: boolean;
|
|
250
|
+
is_moderator: boolean;
|
|
251
|
+
jitter_buffer_size: ConferenceParticipantJitterBufferSize;
|
|
252
|
+
join_time: Date;
|
|
253
|
+
label: string;
|
|
254
|
+
leave_time: Date;
|
|
255
|
+
metrics: object;
|
|
256
|
+
outbound_queue_length: number;
|
|
257
|
+
outbound_time_in_queue: number;
|
|
258
|
+
participant_region: ConferenceParticipantRegion;
|
|
259
|
+
participant_sid: string;
|
|
260
|
+
properties: object;
|
|
261
|
+
quality_issues: number;
|
|
262
|
+
to: string;
|
|
263
|
+
url: string;
|
|
264
|
+
whisper: string;
|
|
265
|
+
}
|
|
266
|
+
|
|
267
|
+
interface ConferenceParticipantSolution {
|
|
268
|
+
conferenceSid?: string;
|
|
269
|
+
}
|
|
270
|
+
|
|
271
|
+
|
|
272
|
+
declare class ConferenceParticipantContext {
|
|
273
|
+
/**
|
|
274
|
+
* Initialize the ConferenceParticipantContext
|
|
275
|
+
*
|
|
276
|
+
* @param version - Version of the resource
|
|
277
|
+
* @param conferenceSid - The conference_sid
|
|
278
|
+
* @param participantSid - The participant_sid
|
|
279
|
+
*/
|
|
280
|
+
constructor(version: V1, conferenceSid: string, participantSid: string);
|
|
281
|
+
|
|
282
|
+
/**
|
|
283
|
+
* fetch a ConferenceParticipantInstance
|
|
284
|
+
*
|
|
285
|
+
* @param callback - Callback to handle processed record
|
|
286
|
+
*/
|
|
287
|
+
fetch(callback?: (error: Error | null, items: ConferenceParticipantInstance) => any): Promise<ConferenceParticipantInstance>;
|
|
288
|
+
/**
|
|
289
|
+
* fetch a ConferenceParticipantInstance
|
|
290
|
+
*
|
|
291
|
+
* @param opts - Options for request
|
|
292
|
+
* @param callback - Callback to handle processed record
|
|
293
|
+
*/
|
|
294
|
+
fetch(opts?: ConferenceParticipantInstanceFetchOptions, callback?: (error: Error | null, items: ConferenceParticipantInstance) => any): Promise<ConferenceParticipantInstance>;
|
|
295
|
+
/**
|
|
296
|
+
* Provide a user-friendly representation
|
|
297
|
+
*/
|
|
298
|
+
toJSON(): any;
|
|
299
|
+
}
|
|
300
|
+
|
|
301
|
+
|
|
302
|
+
declare class ConferenceParticipantInstance extends SerializableClass {
|
|
303
|
+
/**
|
|
304
|
+
* Initialize the ConferenceParticipantContext
|
|
305
|
+
*
|
|
306
|
+
* @param version - Version of the resource
|
|
307
|
+
* @param payload - The instance payload
|
|
308
|
+
* @param conferenceSid - The conference_sid
|
|
309
|
+
* @param participantSid - The participant_sid
|
|
310
|
+
*/
|
|
311
|
+
constructor(version: V1, payload: ConferenceParticipantPayload, conferenceSid: string, participantSid: string);
|
|
312
|
+
|
|
313
|
+
private _proxy: ConferenceParticipantContext;
|
|
314
|
+
accountSid: string;
|
|
315
|
+
agentAudio: boolean;
|
|
316
|
+
callDirection: ConferenceParticipantCallDirection;
|
|
317
|
+
callSid: string;
|
|
318
|
+
callState: ConferenceParticipantCallState;
|
|
319
|
+
callType: ConferenceParticipantCallType;
|
|
320
|
+
coachedParticipants: string[];
|
|
321
|
+
conferenceRegion: ConferenceParticipantRegion;
|
|
322
|
+
conferenceSid: string;
|
|
323
|
+
countryCode: string;
|
|
324
|
+
durationSeconds: number;
|
|
325
|
+
events: any;
|
|
326
|
+
/**
|
|
327
|
+
* fetch a ConferenceParticipantInstance
|
|
328
|
+
*
|
|
329
|
+
* @param callback - Callback to handle processed record
|
|
330
|
+
*/
|
|
331
|
+
fetch(callback?: (error: Error | null, items: ConferenceParticipantInstance) => any): Promise<ConferenceParticipantInstance>;
|
|
332
|
+
/**
|
|
333
|
+
* fetch a ConferenceParticipantInstance
|
|
334
|
+
*
|
|
335
|
+
* @param opts - Options for request
|
|
336
|
+
* @param callback - Callback to handle processed record
|
|
337
|
+
*/
|
|
338
|
+
fetch(opts?: ConferenceParticipantInstanceFetchOptions, callback?: (error: Error | null, items: ConferenceParticipantInstance) => any): Promise<ConferenceParticipantInstance>;
|
|
339
|
+
from: string;
|
|
340
|
+
isCoach: boolean;
|
|
341
|
+
isModerator: boolean;
|
|
342
|
+
jitterBufferSize: ConferenceParticipantJitterBufferSize;
|
|
343
|
+
joinTime: Date;
|
|
344
|
+
label: string;
|
|
345
|
+
leaveTime: Date;
|
|
346
|
+
metrics: any;
|
|
347
|
+
outboundQueueLength: number;
|
|
348
|
+
outboundTimeInQueue: number;
|
|
349
|
+
participantRegion: ConferenceParticipantRegion;
|
|
350
|
+
participantSid: string;
|
|
351
|
+
properties: any;
|
|
352
|
+
qualityIssues: number;
|
|
353
|
+
to: string;
|
|
354
|
+
/**
|
|
355
|
+
* Provide a user-friendly representation
|
|
356
|
+
*/
|
|
357
|
+
toJSON(): any;
|
|
358
|
+
url: string;
|
|
359
|
+
whisper: string;
|
|
360
|
+
}
|
|
361
|
+
|
|
362
|
+
|
|
363
|
+
declare class ConferenceParticipantPage extends Page<V1, ConferenceParticipantPayload, ConferenceParticipantResource, ConferenceParticipantInstance> {
|
|
364
|
+
/**
|
|
365
|
+
* Initialize the ConferenceParticipantPage
|
|
366
|
+
*
|
|
367
|
+
* @param version - Version of the resource
|
|
368
|
+
* @param response - Response from the API
|
|
369
|
+
* @param solution - Path solution
|
|
370
|
+
*/
|
|
371
|
+
constructor(version: V1, response: Response<string>, solution: ConferenceParticipantSolution);
|
|
372
|
+
|
|
373
|
+
/**
|
|
374
|
+
* Build an instance of ConferenceParticipantInstance
|
|
375
|
+
*
|
|
376
|
+
* @param payload - Payload response from the API
|
|
377
|
+
*/
|
|
378
|
+
getInstance(payload: ConferenceParticipantPayload): ConferenceParticipantInstance;
|
|
379
|
+
/**
|
|
380
|
+
* Provide a user-friendly representation
|
|
381
|
+
*/
|
|
382
|
+
toJSON(): any;
|
|
383
|
+
}
|
|
384
|
+
|
|
385
|
+
export { ConferenceParticipantCallDirection, ConferenceParticipantCallState, ConferenceParticipantCallType, ConferenceParticipantContext, ConferenceParticipantInstance, ConferenceParticipantInstanceFetchOptions, ConferenceParticipantJitterBufferSize, ConferenceParticipantList, ConferenceParticipantListInstance, ConferenceParticipantListInstanceEachOptions, ConferenceParticipantListInstanceOptions, ConferenceParticipantListInstancePageOptions, ConferenceParticipantPage, ConferenceParticipantPayload, ConferenceParticipantRegion, ConferenceParticipantResource, ConferenceParticipantSolution }
|