Skip to content

Commit 1c6f983

Browse files
committed
[Librarian] Regenerated @ 7e2caf2ef38bb07afedbc8ba24e3a235c57337ad 2deb312512e85217931fbc99141b334a5d6beaaf
1 parent 06d1060 commit 1c6f983

31 files changed

+459
-2474
lines changed

CHANGES.md

Lines changed: 40 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,46 @@
11
twilio-csharp Changelog
22
=======================
33

4+
[2024-04-01] Version 7.0.3
5+
--------------------------
6+
**Library - Chore**
7+
- [PR #731](https://github.com/twilio/twilio-csharp/pull/731): Remove deprecated Autopilot references. Thanks to [@alejandroortizmartin](https://github.com/alejandroortizmartin)!
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
42+
43+
444
[2024-03-14] Version 7.0.2
545
--------------------------
646
**Oauth**

src/Twilio/Rest/Api/V2010/Account/CallOptions.cs

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -385,22 +385,22 @@ public class ReadCallOptions : ReadOptions<CallResource>
385385
///<summary> The status of the calls to include. Can be: `queued`, `ringing`, `in-progress`, `canceled`, `completed`, `failed`, `busy`, or `no-answer`. </summary>
386386
public CallResource.StatusEnum Status { get; set; }
387387

388-
///<summary> Only include calls that started on this date. Specify a date as `YYYY-MM-DD` in GMT, for example: `2009-07-06`, to read only calls that started on this date. You can also specify an inequality, such as `StartTime<=YYYY-MM-DD`, to read calls that started on or before midnight of this date, and `StartTime>=YYYY-MM-DD` to read calls that started on or after midnight of this date. </summary>
388+
///<summary> Only include calls that started on this date. Specify a date as `YYYY-MM-DD` in UTC, for example: `2009-07-06`, to read only calls that started on this date. You can also specify an inequality, such as `StartTime<=YYYY-MM-DD`, to read calls that started on or before midnight of this date, and `StartTime>=YYYY-MM-DD` to read calls that started on or after midnight of this date. </summary>
389389
public DateTime? StartTime { get; set; }
390390

391-
///<summary> Only include calls that started on this date. Specify a date as `YYYY-MM-DD` in GMT, for example: `2009-07-06`, to read only calls that started on this date. You can also specify an inequality, such as `StartTime<=YYYY-MM-DD`, to read calls that started on or before midnight of this date, and `StartTime>=YYYY-MM-DD` to read calls that started on or after midnight of this date. </summary>
391+
///<summary> Only include calls that started on this date. Specify a date as `YYYY-MM-DD` in UTC, for example: `2009-07-06`, to read only calls that started on this date. You can also specify an inequality, such as `StartTime<=YYYY-MM-DD`, to read calls that started on or before midnight of this date, and `StartTime>=YYYY-MM-DD` to read calls that started on or after midnight of this date. </summary>
392392
public DateTime? StartTimeBefore { get; set; }
393393

394-
///<summary> Only include calls that started on this date. Specify a date as `YYYY-MM-DD` in GMT, for example: `2009-07-06`, to read only calls that started on this date. You can also specify an inequality, such as `StartTime<=YYYY-MM-DD`, to read calls that started on or before midnight of this date, and `StartTime>=YYYY-MM-DD` to read calls that started on or after midnight of this date. </summary>
394+
///<summary> Only include calls that started on this date. Specify a date as `YYYY-MM-DD` in UTC, for example: `2009-07-06`, to read only calls that started on this date. You can also specify an inequality, such as `StartTime<=YYYY-MM-DD`, to read calls that started on or before midnight of this date, and `StartTime>=YYYY-MM-DD` to read calls that started on or after midnight of this date. </summary>
395395
public DateTime? StartTimeAfter { get; set; }
396396

397-
///<summary> Only include calls that ended on this date. Specify a date as `YYYY-MM-DD` in GMT, for example: `2009-07-06`, to read only calls that ended on this date. You can also specify an inequality, such as `EndTime<=YYYY-MM-DD`, to read calls that ended on or before midnight of this date, and `EndTime>=YYYY-MM-DD` to read calls that ended on or after midnight of this date. </summary>
397+
///<summary> Only include calls that ended on this date. Specify a date as `YYYY-MM-DD` in UTC, for example: `2009-07-06`, to read only calls that ended on this date. You can also specify an inequality, such as `EndTime<=YYYY-MM-DD`, to read calls that ended on or before midnight of this date, and `EndTime>=YYYY-MM-DD` to read calls that ended on or after midnight of this date. </summary>
398398
public DateTime? EndTime { get; set; }
399399

400-
///<summary> Only include calls that ended on this date. Specify a date as `YYYY-MM-DD` in GMT, for example: `2009-07-06`, to read only calls that ended on this date. You can also specify an inequality, such as `EndTime<=YYYY-MM-DD`, to read calls that ended on or before midnight of this date, and `EndTime>=YYYY-MM-DD` to read calls that ended on or after midnight of this date. </summary>
400+
///<summary> Only include calls that ended on this date. Specify a date as `YYYY-MM-DD` in UTC, for example: `2009-07-06`, to read only calls that ended on this date. You can also specify an inequality, such as `EndTime<=YYYY-MM-DD`, to read calls that ended on or before midnight of this date, and `EndTime>=YYYY-MM-DD` to read calls that ended on or after midnight of this date. </summary>
401401
public DateTime? EndTimeBefore { get; set; }
402402

403-
///<summary> Only include calls that ended on this date. Specify a date as `YYYY-MM-DD` in GMT, for example: `2009-07-06`, to read only calls that ended on this date. You can also specify an inequality, such as `EndTime<=YYYY-MM-DD`, to read calls that ended on or before midnight of this date, and `EndTime>=YYYY-MM-DD` to read calls that ended on or after midnight of this date. </summary>
403+
///<summary> Only include calls that ended on this date. Specify a date as `YYYY-MM-DD` in UTC, for example: `2009-07-06`, to read only calls that ended on this date. You can also specify an inequality, such as `EndTime<=YYYY-MM-DD`, to read calls that ended on or before midnight of this date, and `EndTime>=YYYY-MM-DD` to read calls that ended on or after midnight of this date. </summary>
404404
public DateTime? EndTimeAfter { get; set; }
405405

406406

0 commit comments

Comments
 (0)