Skip to content

Commit d3475d2

Browse files
committed
[Librarian] Regenerated @ a264875856b0343f622eafc05d7b82d1a272cd01 36d9907dbca3a7fad889a93ed011b406aae575ec
1 parent 2a8bcdb commit d3475d2

File tree

73 files changed

+787
-111
lines changed

Some content is hidden

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

73 files changed

+787
-111
lines changed

CHANGES.md

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,27 @@
11
twilio-go changelog
22
====================
3+
[2025-10-28] Version 1.28.5
4+
---------------------------
5+
**Ai**
6+
- Add `error` as possible transcript status
7+
- Add `error` as possible transcript status
8+
9+
**Chat**
10+
- Updated v2 UserChannel `channel_status` from `not_participating` to `notParticipating`
11+
12+
**Intelligence**
13+
- Make intelligence work with RestProxy
14+
- Add additional enums to better represent the possible states
15+
- Add `error` enum to transcription status to better align with possible outputs
16+
- Add `json` output type to text classification
17+
18+
**Trusthub**
19+
- Remove required parameter Primary Profile Sid from compliance_inquiry and compliance_inquiry_individual
20+
21+
**Accounts**
22+
- Add Messaging GeoPermissions API changes
23+
24+
325
[2025-10-14] Version 1.28.4
426
---------------------------
527
**Api**

rest/chat/v1/docs/ServicesApi.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -154,7 +154,7 @@ Other parameters are passed through a pointer to a ListServiceParams struct
154154

155155
Name | Type | Description
156156
------------- | ------------- | -------------
157-
**PageSize** | **int** | How many resources to return in each list page. The default is 50, and the maximum is 1000.
157+
**PageSize** | **int** | How many resources to return in each list page. The default is 50, and the maximum is 100.
158158
**Limit** | **int** | Max number of records to return.
159159

160160
### Return type

rest/chat/v1/services.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,7 @@ func (c *ApiService) FetchService(Sid string) (*ChatV1Service, error) {
109109

110110
// Optional parameters for the method 'ListService'
111111
type ListServiceParams struct {
112-
// How many resources to return in each list page. The default is 50, and the maximum is 1000.
112+
// How many resources to return in each list page. The default is 50, and the maximum is 100.
113113
PageSize *int `json:"PageSize,omitempty"`
114114
// Max number of records to return.
115115
Limit *int `json:"limit,omitempty"`

rest/chat/v2/docs/ServicesApi.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -154,7 +154,7 @@ Other parameters are passed through a pointer to a ListServiceParams struct
154154

155155
Name | Type | Description
156156
------------- | ------------- | -------------
157-
**PageSize** | **int** | How many resources to return in each list page. The default is 50, and the maximum is 1000.
157+
**PageSize** | **int** | How many resources to return in each list page. The default is 50, and the maximum is 100.
158158
**Limit** | **int** | Max number of records to return.
159159

160160
### Return type

rest/chat/v2/docs/ServicesBindingsApi.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -121,7 +121,7 @@ Name | Type | Description
121121
------------- | ------------- | -------------
122122
**BindingType** | [**[]BindingEnumBindingType**](BindingEnumBindingType.md) | 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.
123123
**Identity** | **[]string** | 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.
124-
**PageSize** | **int** | How many resources to return in each list page. The default is 50, and the maximum is 1000.
124+
**PageSize** | **int** | How many resources to return in each list page. The default is 50, and the maximum is 50.
125125
**Limit** | **int** | Max number of records to return.
126126

127127
### Return type

rest/chat/v2/docs/ServicesChannelsApi.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -173,7 +173,7 @@ Other parameters are passed through a pointer to a ListChannelParams struct
173173
Name | Type | Description
174174
------------- | ------------- | -------------
175175
**Type** | [**[]ChannelEnumChannelType**](ChannelEnumChannelType.md) | The visibility of the Channels to read. Can be: `public` or `private` and defaults to `public`.
176-
**PageSize** | **int** | How many resources to return in each list page. The default is 50, and the maximum is 1000.
176+
**PageSize** | **int** | How many resources to return in each list page. The default is 50, and the maximum is 100.
177177
**Limit** | **int** | Max number of records to return.
178178

179179
### Return type

rest/chat/v2/docs/ServicesChannelsInvitesApi.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -169,7 +169,7 @@ Other parameters are passed through a pointer to a ListInviteParams struct
169169
Name | Type | Description
170170
------------- | ------------- | -------------
171171
**Identity** | **[]string** | 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.
172-
**PageSize** | **int** | How many resources to return in each list page. The default is 50, and the maximum is 1000.
172+
**PageSize** | **int** | How many resources to return in each list page. The default is 50, and the maximum is 100.
173173
**Limit** | **int** | Max number of records to return.
174174

175175
### Return type

rest/chat/v2/docs/ServicesChannelsMembersApi.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -177,7 +177,7 @@ Other parameters are passed through a pointer to a ListMemberParams struct
177177
Name | Type | Description
178178
------------- | ------------- | -------------
179179
**Identity** | **[]string** | 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.
180-
**PageSize** | **int** | How many resources to return in each list page. The default is 50, and the maximum is 1000.
180+
**PageSize** | **int** | How many resources to return in each list page. The default is 50, and the maximum is 100.
181181
**Limit** | **int** | Max number of records to return.
182182

183183
### Return type

rest/chat/v2/docs/ServicesChannelsMessagesApi.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -177,7 +177,7 @@ Other parameters are passed through a pointer to a ListMessageParams struct
177177
Name | Type | Description
178178
------------- | ------------- | -------------
179179
**Order** | [**string**](stringstring.md) | The sort order of the returned messages. Can be: `asc` (ascending) or `desc` (descending) with `asc` as the default.
180-
**PageSize** | **int** | How many resources to return in each list page. The default is 50, and the maximum is 1000.
180+
**PageSize** | **int** | How many resources to return in each list page. The default is 50, and the maximum is 100.
181181
**Limit** | **int** | Max number of records to return.
182182

183183
### Return type

rest/chat/v2/docs/ServicesChannelsWebhooksApi.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -174,7 +174,7 @@ Other parameters are passed through a pointer to a ListChannelWebhookParams stru
174174

175175
Name | Type | Description
176176
------------- | ------------- | -------------
177-
**PageSize** | **int** | How many resources to return in each list page. The default is 50, and the maximum is 1000.
177+
**PageSize** | **int** | How many resources to return in each list page. The default is 5, and the maximum is 5.
178178
**Limit** | **int** | Max number of records to return.
179179

180180
### Return type

0 commit comments

Comments
 (0)