Skip to content

Commit 959b818

Browse files
committed
[Librarian] Regenerated @ d122b05026327019e18cb5763c557a68138cc2c8 0e8634d10afc0145e18ccb8d90598b642b67ad87
1 parent 6768780 commit 959b818

File tree

56 files changed

+3499
-6164
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

56 files changed

+3499
-6164
lines changed

CHANGES.md

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

4+
[2025-07-03] Version 7.11.4
5+
---------------------------
6+
**Bulkexports**
7+
- Changed the type of 'details' field to be a list of objects instead of a single object
8+
9+
**Conversations**
10+
- Updates to `method` casing for ConfgurationAddress, ConversationScopedWebhook, and ServiceConversationScopedWebhook for RestProxy compatibility
11+
12+
**Proxy**
13+
- remove shortcodes resource as its no longer used
14+
15+
**Serverless**
16+
- Change log field level from type `ienum` to `string` in Logs api
17+
18+
**Taskrouter**
19+
- Remove `URL-encoded` from attributes param definition in tasks
20+
21+
**Trunking**
22+
- Added `symmetric_rtp_enabled` property on Trunks.
23+
24+
**Twiml**
25+
- Add support for `<WhatsApp>` noun under `<Dial>` verb
26+
27+
428
[2025-06-12] Version 7.11.3
529
---------------------------
630
**Api**

src/Twilio/Rest/Bulkexports/V1/Export/DayResource.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -147,7 +147,7 @@ public static async System.Threading.Tasks.Task<ResourceSet<DayResource>> ReadAs
147147
#endif
148148
/// <summary> Retrieve a list of all Days for a resource. </summary>
149149
/// <param name="pathResourceType"> The type of communication – Messages, Calls, Conferences, and Participants </param>
150-
/// <param name="pageSize"> How many resources to return in each list page. The default is 50, and the maximum is 1000. </param>
150+
/// <param name="pageSize"> How many resources to return in each list page. The default is 50, and the maximum is 400. </param>
151151
/// <param name="limit"> Record limit </param>
152152
/// <param name="client"> Client to make requests to Twilio </param>
153153
/// <returns> A single instance of Day </returns>
@@ -164,7 +164,7 @@ public static ResourceSet<DayResource> Read(
164164
#if !NET35
165165
/// <summary> Retrieve a list of all Days for a resource. </summary>
166166
/// <param name="pathResourceType"> The type of communication – Messages, Calls, Conferences, and Participants </param>
167-
/// <param name="pageSize"> How many resources to return in each list page. The default is 50, and the maximum is 1000. </param>
167+
/// <param name="pageSize"> How many resources to return in each list page. The default is 50, and the maximum is 400. </param>
168168
/// <param name="limit"> Record limit </param>
169169
/// <param name="client"> Client to make requests to Twilio </param>
170170
/// <returns> Task that resolves to A single instance of Day </returns>

src/Twilio/Rest/Bulkexports/V1/Export/ExportCustomJobResource.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -319,7 +319,7 @@ public static string ToJson(object model)
319319

320320
///<summary> The details of a job which is an object that contains an array of status grouped by `status` state. Each `status` object has a `status` string, a count which is the number of days in that `status`, and list of days in that `status`. The day strings are in the format yyyy-MM-dd. As an example, a currently running job may have a status object for COMPLETED and a `status` object for SUBMITTED each with its own count and list of days. </summary>
321321
[JsonProperty("details")]
322-
public object Details { get; private set; }
322+
public List<object> Details { get; private set; }
323323

324324
///<summary> This is the job position from the 1st in line. Your queue position will never increase. As jobs ahead of yours in the queue are processed, the queue position number will decrease </summary>
325325
[JsonProperty("job_queue_position")]

src/Twilio/Rest/Bulkexports/V1/Export/JobResource.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -210,7 +210,7 @@ public static string ToJson(object model)
210210

211211
///<summary> The details of a job which is an object that contains an array of status grouped by `status` state. Each `status` object has a `status` string, a count which is the number of days in that `status`, and list of days in that `status`. The day strings are in the format yyyy-MM-dd. As an example, a currently running job may have a status object for COMPLETED and a `status` object for SUBMITTED each with its own count and list of days. </summary>
212212
[JsonProperty("details")]
213-
public object Details { get; private set; }
213+
public List<object> Details { get; private set; }
214214

215215
///<summary> The start time for the export specified when creating the job </summary>
216216
[JsonProperty("start_day")]

src/Twilio/Rest/Conversations/V1/AddressConfigurationResource.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -40,8 +40,8 @@ public static implicit operator MethodEnum(string value)
4040
{
4141
return new MethodEnum(value);
4242
}
43-
public static readonly MethodEnum Get = new MethodEnum("GET");
44-
public static readonly MethodEnum Post = new MethodEnum("POST");
43+
public static readonly MethodEnum Get = new MethodEnum("get");
44+
public static readonly MethodEnum Post = new MethodEnum("post");
4545

4646
}
4747
public sealed class TypeEnum : StringEnum

src/Twilio/Rest/Conversations/V1/Conversation/WebhookResource.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -40,8 +40,8 @@ public static implicit operator MethodEnum(string value)
4040
{
4141
return new MethodEnum(value);
4242
}
43-
public static readonly MethodEnum Get = new MethodEnum("GET");
44-
public static readonly MethodEnum Post = new MethodEnum("POST");
43+
public static readonly MethodEnum Get = new MethodEnum("get");
44+
public static readonly MethodEnum Post = new MethodEnum("post");
4545

4646
}
4747
public sealed class TargetEnum : StringEnum

src/Twilio/Rest/Conversations/V1/Service/Conversation/WebhookResource.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -40,8 +40,8 @@ public static implicit operator MethodEnum(string value)
4040
{
4141
return new MethodEnum(value);
4242
}
43-
public static readonly MethodEnum Get = new MethodEnum("GET");
44-
public static readonly MethodEnum Post = new MethodEnum("POST");
43+
public static readonly MethodEnum Get = new MethodEnum("get");
44+
public static readonly MethodEnum Post = new MethodEnum("post");
4545

4646
}
4747
public sealed class TargetEnum : StringEnum

src/Twilio/Rest/Domain.cs

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,11 +37,9 @@ public static implicit operator Domain(string value)
3737
public static readonly Domain Insights = new Domain("insights");
3838
public static readonly Domain Intelligence = new Domain("intelligence");
3939
public static readonly Domain IpMessaging = new Domain("ip-messaging");
40-
public static readonly Domain Knowledge = new Domain("knowledge");
4140
public static readonly Domain Lookups = new Domain("lookups");
4241
public static readonly Domain Marketplace = new Domain("marketplace");
4342
public static readonly Domain Messaging = new Domain("messaging");
44-
public static readonly Domain Microvisor = new Domain("microvisor");
4543
public static readonly Domain Monitor = new Domain("monitor");
4644
public static readonly Domain Notify = new Domain("notify");
4745
public static readonly Domain Numbers = new Domain("numbers");

src/Twilio/Rest/Knowledge/V1/Knowledge/ChunkOptions.cs

Lines changed: 0 additions & 60 deletions
This file was deleted.

src/Twilio/Rest/Knowledge/V1/Knowledge/ChunkResource.cs

Lines changed: 0 additions & 223 deletions
This file was deleted.

0 commit comments

Comments
 (0)