You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: CHANGES.md
+40Lines changed: 40 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,6 +1,46 @@
1
1
twilio-node changelog
2
2
=====================
3
3
4
+
[2024-04-01] Version 5.0.2
5
+
--------------------------
6
+
**Library - Chore**
7
+
-[PR #1014](https://github.com/twilio/twilio-node/pull/1014): remove media reference. Thanks to [@tiwarishubham635](https://github.com/tiwarishubham635)!
8
+
9
+
**Api**
10
+
- Add property `queue_time` to conference participant resource
11
+
- Update RiskCheck documentation
12
+
- Correct call filtering by start and end time documentation, clarifying that times are UTC.
13
+
14
+
**Flex**
15
+
- Adding optional parameter to `plugins`
16
+
17
+
**Media**
18
+
- Remove API: MediaProcessor
19
+
20
+
**Messaging**
21
+
- Remove Sending-Window due to test failure
22
+
- Add Sending-Window as a response property to Messaging Services, gated by a beta feature flag
23
+
24
+
**Numbers**
25
+
- Correct valid_until_date field to be visible in Bundles resource
26
+
- Adding port_in_status field to the Port In resource and phone_number_status and sid fields to the Port In Phone Number resource
27
+
28
+
**Oauth**
29
+
- Modified token endpoint response
30
+
- Added refresh_token and scope as optional parameter to token endpoint
31
+
32
+
**Trusthub**
33
+
- Add update inquiry endpoint in compliance_registration.
34
+
- Add new field in themeSetId in compliance_registration.
35
+
36
+
**Voice**
37
+
- Correct call filtering by start and end time documentation, clarifying that times are UTC.
38
+
39
+
**Twiml**
40
+
- Add support for new Google voices (Q1 2024) for `Say` verb - gu-IN voices
41
+
- Add support for new Amazon Polly and Google voices (Q1 2024) for `Say` verb - Niamh (en-IE) and Sofie (da-DK) voices
/** Start date or time in ISO8601 format for filtering list of Conversations. If a date is provided, the start time of the date is used (YYYY-MM-DDT00:00:00Z). Can be combined with other filters. */
101
+
/** Specifies the beginning of the date range for filtering Conversations based on their creation date. Conversations that were created on or after this date will be included in the results. The date must be in ISO8601 format, specifically starting at the beginning of the specified date (YYYY-MM-DDT00:00:00Z), for precise filtering. This parameter can be combined with other filters. If this filter is used, the returned list is sorted by latest conversation creation date in descending order. */
102
102
startDate?: string;
103
-
/** End date or time in ISO8601 format for filtering list of Conversations. If a date is provided, the end time of the date is used (YYYY-MM-DDT23:59:59Z). Can be combined with other filters. */
103
+
/** Defines the end of the date range for filtering conversations by their creation date. Only conversations that were created on or before this date will appear in the results. The date must be in ISO8601 format, specifically capturing up to the end of the specified date (YYYY-MM-DDT23:59:59Z), to ensure that conversations from the entire end day are included. This parameter can be combined with other filters. If this filter is used, the returned list is sorted by latest conversation creation date in descending order. */
104
104
endDate?: string;
105
105
/** State for sorting and filtering list of Conversations. Can be `active`, `inactive` or `closed` */
/** Start date or time in ISO8601 format for filtering list of Conversations. If a date is provided, the start time of the date is used (YYYY-MM-DDT00:00:00Z). Can be combined with other filters. */
121
+
/** Specifies the beginning of the date range for filtering Conversations based on their creation date. Conversations that were created on or after this date will be included in the results. The date must be in ISO8601 format, specifically starting at the beginning of the specified date (YYYY-MM-DDT00:00:00Z), for precise filtering. This parameter can be combined with other filters. If this filter is used, the returned list is sorted by latest conversation creation date in descending order. */
122
122
startDate?: string;
123
-
/** End date or time in ISO8601 format for filtering list of Conversations. If a date is provided, the end time of the date is used (YYYY-MM-DDT23:59:59Z). Can be combined with other filters. */
123
+
/** Defines the end of the date range for filtering conversations by their creation date. Only conversations that were created on or before this date will appear in the results. The date must be in ISO8601 format, specifically capturing up to the end of the specified date (YYYY-MM-DDT23:59:59Z), to ensure that conversations from the entire end day are included. This parameter can be combined with other filters. If this filter is used, the returned list is sorted by latest conversation creation date in descending order. */
124
124
endDate?: string;
125
125
/** State for sorting and filtering list of Conversations. Can be `active`, `inactive` or `closed` */
/** Start date or time in ISO8601 format for filtering list of Conversations. If a date is provided, the start time of the date is used (YYYY-MM-DDT00:00:00Z). Can be combined with other filters. */
137
+
/** Specifies the beginning of the date range for filtering Conversations based on their creation date. Conversations that were created on or after this date will be included in the results. The date must be in ISO8601 format, specifically starting at the beginning of the specified date (YYYY-MM-DDT00:00:00Z), for precise filtering. This parameter can be combined with other filters. If this filter is used, the returned list is sorted by latest conversation creation date in descending order. */
138
138
startDate?: string;
139
-
/** End date or time in ISO8601 format for filtering list of Conversations. If a date is provided, the end time of the date is used (YYYY-MM-DDT23:59:59Z). Can be combined with other filters. */
139
+
/** Defines the end of the date range for filtering conversations by their creation date. Only conversations that were created on or before this date will appear in the results. The date must be in ISO8601 format, specifically capturing up to the end of the specified date (YYYY-MM-DDT23:59:59Z), to ensure that conversations from the entire end day are included. This parameter can be combined with other filters. If this filter is used, the returned list is sorted by latest conversation creation date in descending order. */
140
140
endDate?: string;
141
141
/** State for sorting and filtering list of Conversations. Can be `active`, `inactive` or `closed` */
@@ -166,6 +168,10 @@ export class PortingPortInFetchInstance {
166
168
* Maximum hour in the future needs to be established with the Ops team for validation.
167
169
*/
168
170
targetPortInTimeRangeEnd: string;
171
+
/**
172
+
* The status of the port in request. The possible values are: In progress, Completed, Expired, In review, Waiting for Signature, Action Required, and Canceled.
173
+
*/
174
+
portInRequestStatus: string;
169
175
/**
170
176
* The information for the losing carrier.
171
177
*/
@@ -216,6 +222,7 @@ export class PortingPortInFetchInstance {
0 commit comments