Skip to content

Commit 3d1fad2

Browse files
committed
[Librarian] Regenerated @ a264875856b0343f622eafc05d7b82d1a272cd01 36d9907dbca3a7fad889a93ed011b406aae575ec
1 parent 48c041e commit 3d1fad2

23 files changed

+76
-52
lines changed

CHANGES.md

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

4+
[2025-10-28] Version 7.13.5
5+
---------------------------
6+
**Ai**
7+
- Add `error` as possible transcript status
8+
- Add `error` as possible transcript status
9+
10+
**Chat**
11+
- Updated v2 UserChannel `channel_status` from `not_participating` to `notParticipating`
12+
13+
**Intelligence**
14+
- Make intelligence work with RestProxy
15+
- Add additional enums to better represent the possible states
16+
- Add `error` enum to transcription status to better align with possible outputs
17+
- Add `json` output type to text classification
18+
19+
**Trusthub**
20+
- Remove required parameter Primary Profile Sid from compliance_inquiry and compliance_inquiry_individual
21+
22+
**Accounts**
23+
- Add Messaging GeoPermissions API changes
24+
25+
426
[2025-10-14] Version 7.13.4
527
---------------------------
628
**Library - Docs**

src/Twilio/Rest/Chat/V1/ServiceResource.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -273,7 +273,7 @@ public static async System.Threading.Tasks.Task<ResourceSet<ServiceResource>> Re
273273
}
274274
#endif
275275
/// <summary> read </summary>
276-
/// <param name="pageSize"> How many resources to return in each list page. The default is 50, and the maximum is 1000. </param>
276+
/// <param name="pageSize"> How many resources to return in each list page. The default is 50, and the maximum is 100. </param>
277277
/// <param name="limit"> Record limit </param>
278278
/// <param name="client"> Client to make requests to Twilio </param>
279279
/// <returns> A single instance of Service </returns>
@@ -288,7 +288,7 @@ public static ResourceSet<ServiceResource> Read(
288288

289289
#if !NET35
290290
/// <summary> read </summary>
291-
/// <param name="pageSize"> How many resources to return in each list page. The default is 50, and the maximum is 1000. </param>
291+
/// <param name="pageSize"> How many resources to return in each list page. The default is 50, and the maximum is 100. </param>
292292
/// <param name="limit"> Record limit </param>
293293
/// <param name="client"> Client to make requests to Twilio </param>
294294
/// <returns> Task that resolves to A single instance of Service </returns>

src/Twilio/Rest/Chat/V2/Service/BindingResource.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -235,7 +235,7 @@ public static async System.Threading.Tasks.Task<ResourceSet<BindingResource>> Re
235235
/// <param name="pathServiceSid"> The SID of the [Service](https://www.twilio.com/docs/chat/rest/service-resource) to read the Binding resources from. </param>
236236
/// <param name="bindingType"> The push technology used by the Binding resources to read. Can be: `apn`, `gcm`, or `fcm`. See [push notification configuration](https://www.twilio.com/docs/chat/push-notification-configuration) for more info. </param>
237237
/// <param name="identity"> The [User](https://www.twilio.com/docs/chat/rest/user-resource)'s `identity` value of the resources to read. See [access tokens](https://www.twilio.com/docs/chat/create-tokens) for more details. </param>
238-
/// <param name="pageSize"> How many resources to return in each list page. The default is 50, and the maximum is 1000. </param>
238+
/// <param name="pageSize"> How many resources to return in each list page. The default is 50, and the maximum is 50. </param>
239239
/// <param name="limit"> Record limit </param>
240240
/// <param name="client"> Client to make requests to Twilio </param>
241241
/// <returns> A single instance of Binding </returns>
@@ -256,7 +256,7 @@ public static ResourceSet<BindingResource> Read(
256256
/// <param name="pathServiceSid"> The SID of the [Service](https://www.twilio.com/docs/chat/rest/service-resource) to read the Binding resources from. </param>
257257
/// <param name="bindingType"> The push technology used by the Binding resources to read. Can be: `apn`, `gcm`, or `fcm`. See [push notification configuration](https://www.twilio.com/docs/chat/push-notification-configuration) for more info. </param>
258258
/// <param name="identity"> The [User](https://www.twilio.com/docs/chat/rest/user-resource)'s `identity` value of the resources to read. See [access tokens](https://www.twilio.com/docs/chat/create-tokens) for more details. </param>
259-
/// <param name="pageSize"> How many resources to return in each list page. The default is 50, and the maximum is 1000. </param>
259+
/// <param name="pageSize"> How many resources to return in each list page. The default is 50, and the maximum is 50. </param>
260260
/// <param name="limit"> Record limit </param>
261261
/// <param name="client"> Client to make requests to Twilio </param>
262262
/// <returns> Task that resolves to A single instance of Binding </returns>

src/Twilio/Rest/Chat/V2/Service/Channel/InviteResource.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -314,7 +314,7 @@ public static async System.Threading.Tasks.Task<ResourceSet<InviteResource>> Rea
314314
/// <param name="pathServiceSid"> The SID of the [Service](https://www.twilio.com/docs/chat/rest/service-resource) to read the Invite resources from. </param>
315315
/// <param name="pathChannelSid"> The SID of the [Channel](https://www.twilio.com/docs/chat/channels) the Invite resources to read belong to. This value can be the Channel resource's `sid` or `unique_name`. </param>
316316
/// <param name="identity"> The [User](https://www.twilio.com/docs/chat/rest/user-resource)'s `identity` value of the resources to read. See [access tokens](https://www.twilio.com/docs/chat/create-tokens) for more details. </param>
317-
/// <param name="pageSize"> How many resources to return in each list page. The default is 50, and the maximum is 1000. </param>
317+
/// <param name="pageSize"> How many resources to return in each list page. The default is 50, and the maximum is 100. </param>
318318
/// <param name="limit"> Record limit </param>
319319
/// <param name="client"> Client to make requests to Twilio </param>
320320
/// <returns> A single instance of Invite </returns>
@@ -335,7 +335,7 @@ public static ResourceSet<InviteResource> Read(
335335
/// <param name="pathServiceSid"> The SID of the [Service](https://www.twilio.com/docs/chat/rest/service-resource) to read the Invite resources from. </param>
336336
/// <param name="pathChannelSid"> The SID of the [Channel](https://www.twilio.com/docs/chat/channels) the Invite resources to read belong to. This value can be the Channel resource's `sid` or `unique_name`. </param>
337337
/// <param name="identity"> The [User](https://www.twilio.com/docs/chat/rest/user-resource)'s `identity` value of the resources to read. See [access tokens](https://www.twilio.com/docs/chat/create-tokens) for more details. </param>
338-
/// <param name="pageSize"> How many resources to return in each list page. The default is 50, and the maximum is 1000. </param>
338+
/// <param name="pageSize"> How many resources to return in each list page. The default is 50, and the maximum is 100. </param>
339339
/// <param name="limit"> Record limit </param>
340340
/// <param name="client"> Client to make requests to Twilio </param>
341341
/// <returns> Task that resolves to A single instance of Invite </returns>

src/Twilio/Rest/Chat/V2/Service/Channel/MemberResource.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -352,7 +352,7 @@ public static async System.Threading.Tasks.Task<ResourceSet<MemberResource>> Rea
352352
/// <param name="pathServiceSid"> The SID of the [Service](https://www.twilio.com/docs/chat/rest/service-resource) to read the Member resources from. </param>
353353
/// <param name="pathChannelSid"> The SID of the [Channel](https://www.twilio.com/docs/chat/channels) the Member resources to read belong to. This value can be the Channel resource's `sid` or `unique_name`. </param>
354354
/// <param name="identity"> The [User](https://www.twilio.com/docs/chat/rest/user-resource)'s `identity` value of the Member resources to read. See [access tokens](https://www.twilio.com/docs/chat/create-tokens) for more details. </param>
355-
/// <param name="pageSize"> How many resources to return in each list page. The default is 50, and the maximum is 1000. </param>
355+
/// <param name="pageSize"> How many resources to return in each list page. The default is 50, and the maximum is 100. </param>
356356
/// <param name="limit"> Record limit </param>
357357
/// <param name="client"> Client to make requests to Twilio </param>
358358
/// <returns> A single instance of Member </returns>
@@ -373,7 +373,7 @@ public static ResourceSet<MemberResource> Read(
373373
/// <param name="pathServiceSid"> The SID of the [Service](https://www.twilio.com/docs/chat/rest/service-resource) to read the Member resources from. </param>
374374
/// <param name="pathChannelSid"> The SID of the [Channel](https://www.twilio.com/docs/chat/channels) the Member resources to read belong to. This value can be the Channel resource's `sid` or `unique_name`. </param>
375375
/// <param name="identity"> The [User](https://www.twilio.com/docs/chat/rest/user-resource)'s `identity` value of the Member resources to read. See [access tokens](https://www.twilio.com/docs/chat/create-tokens) for more details. </param>
376-
/// <param name="pageSize"> How many resources to return in each list page. The default is 50, and the maximum is 1000. </param>
376+
/// <param name="pageSize"> How many resources to return in each list page. The default is 50, and the maximum is 100. </param>
377377
/// <param name="limit"> Record limit </param>
378378
/// <param name="client"> Client to make requests to Twilio </param>
379379
/// <returns> Task that resolves to A single instance of Member </returns>

src/Twilio/Rest/Chat/V2/Service/Channel/MessageResource.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -364,7 +364,7 @@ public static async System.Threading.Tasks.Task<ResourceSet<MessageResource>> Re
364364
/// <param name="pathServiceSid"> The SID of the [Service](https://www.twilio.com/docs/chat/rest/service-resource) to read the Message resources from. </param>
365365
/// <param name="pathChannelSid"> The SID of the [Channel](https://www.twilio.com/docs/chat/channels) the Message resource to read belongs to. This value can be the Channel resource's `sid` or `unique_name`. </param>
366366
/// <param name="order"> The sort order of the returned messages. Can be: `asc` (ascending) or `desc` (descending) with `asc` as the default. </param>
367-
/// <param name="pageSize"> How many resources to return in each list page. The default is 50, and the maximum is 1000. </param>
367+
/// <param name="pageSize"> How many resources to return in each list page. The default is 50, and the maximum is 100. </param>
368368
/// <param name="limit"> Record limit </param>
369369
/// <param name="client"> Client to make requests to Twilio </param>
370370
/// <returns> A single instance of Message </returns>
@@ -385,7 +385,7 @@ public static ResourceSet<MessageResource> Read(
385385
/// <param name="pathServiceSid"> The SID of the [Service](https://www.twilio.com/docs/chat/rest/service-resource) to read the Message resources from. </param>
386386
/// <param name="pathChannelSid"> The SID of the [Channel](https://www.twilio.com/docs/chat/channels) the Message resource to read belongs to. This value can be the Channel resource's `sid` or `unique_name`. </param>
387387
/// <param name="order"> The sort order of the returned messages. Can be: `asc` (ascending) or `desc` (descending) with `asc` as the default. </param>
388-
/// <param name="pageSize"> How many resources to return in each list page. The default is 50, and the maximum is 1000. </param>
388+
/// <param name="pageSize"> How many resources to return in each list page. The default is 50, and the maximum is 100. </param>
389389
/// <param name="limit"> Record limit </param>
390390
/// <param name="client"> Client to make requests to Twilio </param>
391391
/// <returns> Task that resolves to A single instance of Message </returns>

src/Twilio/Rest/Chat/V2/Service/Channel/WebhookResource.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -358,7 +358,7 @@ public static async System.Threading.Tasks.Task<ResourceSet<WebhookResource>> Re
358358
/// <summary> read </summary>
359359
/// <param name="pathServiceSid"> The SID of the [Service](https://www.twilio.com/docs/chat/rest/service-resource) with the Channel to read the resources from. </param>
360360
/// <param name="pathChannelSid"> The SID of the [Channel](https://www.twilio.com/docs/chat/channels) the Channel Webhook resources to read belong to. This value can be the Channel resource's `sid` or `unique_name`. </param>
361-
/// <param name="pageSize"> How many resources to return in each list page. The default is 50, and the maximum is 1000. </param>
361+
/// <param name="pageSize"> How many resources to return in each list page. The default is 5, and the maximum is 5. </param>
362362
/// <param name="limit"> Record limit </param>
363363
/// <param name="client"> Client to make requests to Twilio </param>
364364
/// <returns> A single instance of Webhook </returns>
@@ -377,7 +377,7 @@ public static ResourceSet<WebhookResource> Read(
377377
/// <summary> read </summary>
378378
/// <param name="pathServiceSid"> The SID of the [Service](https://www.twilio.com/docs/chat/rest/service-resource) with the Channel to read the resources from. </param>
379379
/// <param name="pathChannelSid"> The SID of the [Channel](https://www.twilio.com/docs/chat/channels) the Channel Webhook resources to read belong to. This value can be the Channel resource's `sid` or `unique_name`. </param>
380-
/// <param name="pageSize"> How many resources to return in each list page. The default is 50, and the maximum is 1000. </param>
380+
/// <param name="pageSize"> How many resources to return in each list page. The default is 5, and the maximum is 5. </param>
381381
/// <param name="limit"> Record limit </param>
382382
/// <param name="client"> Client to make requests to Twilio </param>
383383
/// <returns> Task that resolves to A single instance of Webhook </returns>

src/Twilio/Rest/Chat/V2/Service/ChannelResource.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -347,7 +347,7 @@ public static async System.Threading.Tasks.Task<ResourceSet<ChannelResource>> Re
347347
/// <summary> read </summary>
348348
/// <param name="pathServiceSid"> The SID of the [Service](https://www.twilio.com/docs/chat/rest/service-resource) to read the Channel resources from. </param>
349349
/// <param name="type"> The visibility of the Channels to read. Can be: `public` or `private` and defaults to `public`. </param>
350-
/// <param name="pageSize"> How many resources to return in each list page. The default is 50, and the maximum is 1000. </param>
350+
/// <param name="pageSize"> How many resources to return in each list page. The default is 50, and the maximum is 100. </param>
351351
/// <param name="limit"> Record limit </param>
352352
/// <param name="client"> Client to make requests to Twilio </param>
353353
/// <returns> A single instance of Channel </returns>
@@ -366,7 +366,7 @@ public static ResourceSet<ChannelResource> Read(
366366
/// <summary> read </summary>
367367
/// <param name="pathServiceSid"> The SID of the [Service](https://www.twilio.com/docs/chat/rest/service-resource) to read the Channel resources from. </param>
368368
/// <param name="type"> The visibility of the Channels to read. Can be: `public` or `private` and defaults to `public`. </param>
369-
/// <param name="pageSize"> How many resources to return in each list page. The default is 50, and the maximum is 1000. </param>
369+
/// <param name="pageSize"> How many resources to return in each list page. The default is 50, and the maximum is 100. </param>
370370
/// <param name="limit"> Record limit </param>
371371
/// <param name="client"> Client to make requests to Twilio </param>
372372
/// <returns> Task that resolves to A single instance of Channel </returns>

src/Twilio/Rest/Chat/V2/Service/RoleResource.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -312,7 +312,7 @@ public static async System.Threading.Tasks.Task<ResourceSet<RoleResource>> ReadA
312312
#endif
313313
/// <summary> read </summary>
314314
/// <param name="pathServiceSid"> The SID of the [Service](https://www.twilio.com/docs/chat/rest/service-resource) to read the Role resources from. </param>
315-
/// <param name="pageSize"> How many resources to return in each list page. The default is 50, and the maximum is 1000. </param>
315+
/// <param name="pageSize"> How many resources to return in each list page. The default is 50, and the maximum is 100. </param>
316316
/// <param name="limit"> Record limit </param>
317317
/// <param name="client"> Client to make requests to Twilio </param>
318318
/// <returns> A single instance of Role </returns>
@@ -329,7 +329,7 @@ public static ResourceSet<RoleResource> Read(
329329
#if !NET35
330330
/// <summary> read </summary>
331331
/// <param name="pathServiceSid"> The SID of the [Service](https://www.twilio.com/docs/chat/rest/service-resource) to read the Role resources from. </param>
332-
/// <param name="pageSize"> How many resources to return in each list page. The default is 50, and the maximum is 1000. </param>
332+
/// <param name="pageSize"> How many resources to return in each list page. The default is 50, and the maximum is 100. </param>
333333
/// <param name="limit"> Record limit </param>
334334
/// <param name="client"> Client to make requests to Twilio </param>
335335
/// <returns> Task that resolves to A single instance of Role </returns>

src/Twilio/Rest/Chat/V2/Service/User/UserBindingResource.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -246,7 +246,7 @@ public static async System.Threading.Tasks.Task<ResourceSet<UserBindingResource>
246246
/// <param name="pathServiceSid"> The SID of the [Service](https://www.twilio.com/docs/chat/rest/service-resource) to read the User Binding resources from. </param>
247247
/// <param name="pathUserSid"> The SID of the [User](https://www.twilio.com/docs/chat/rest/user-resource) with the User Binding resources to read. See [push notification configuration](https://www.twilio.com/docs/chat/push-notification-configuration) for more info. </param>
248248
/// <param name="bindingType"> The push technology used by the User Binding resources to read. Can be: `apn`, `gcm`, or `fcm`. See [push notification configuration](https://www.twilio.com/docs/chat/push-notification-configuration) for more info. </param>
249-
/// <param name="pageSize"> How many resources to return in each list page. The default is 50, and the maximum is 1000. </param>
249+
/// <param name="pageSize"> How many resources to return in each list page. The default is 50, and the maximum is 50. </param>
250250
/// <param name="limit"> Record limit </param>
251251
/// <param name="client"> Client to make requests to Twilio </param>
252252
/// <returns> A single instance of UserBinding </returns>
@@ -267,7 +267,7 @@ public static ResourceSet<UserBindingResource> Read(
267267
/// <param name="pathServiceSid"> The SID of the [Service](https://www.twilio.com/docs/chat/rest/service-resource) to read the User Binding resources from. </param>
268268
/// <param name="pathUserSid"> The SID of the [User](https://www.twilio.com/docs/chat/rest/user-resource) with the User Binding resources to read. See [push notification configuration](https://www.twilio.com/docs/chat/push-notification-configuration) for more info. </param>
269269
/// <param name="bindingType"> The push technology used by the User Binding resources to read. Can be: `apn`, `gcm`, or `fcm`. See [push notification configuration](https://www.twilio.com/docs/chat/push-notification-configuration) for more info. </param>
270-
/// <param name="pageSize"> How many resources to return in each list page. The default is 50, and the maximum is 1000. </param>
270+
/// <param name="pageSize"> How many resources to return in each list page. The default is 50, and the maximum is 50. </param>
271271
/// <param name="limit"> Record limit </param>
272272
/// <param name="client"> Client to make requests to Twilio </param>
273273
/// <returns> Task that resolves to A single instance of UserBinding </returns>

0 commit comments

Comments
 (0)