Skip to content

Commit baa4ec8

Browse files
committed
[Librarian] Regenerated @ 07a9a183b1077d5a881e6cd53ef76b0d75ccc6b0
1 parent b81010d commit baa4ec8

File tree

67 files changed

+232
-203
lines changed

Some content is hidden

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

67 files changed

+232
-203
lines changed

CHANGES.md

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,25 @@
11
twilio-go changelog
22
====================
3+
[2023-07-27] Version 1.10.1
4+
---------------------------
5+
**Api**
6+
- Added `voice-intelligence`, `voice-intelligence-transcription` and `voice-intelligence-operators` to `usage_record` API.
7+
- Added `tts-google` to `usage_record` API.
8+
9+
**Lookups**
10+
- Add new `disposable_phone_number_risk` package to the lookup response
11+
12+
**Verify**
13+
- Documentation of list attempts API was improved by correcting `date_created_after` and `date_created_before` expected date format.
14+
- Documentation was improved by correcting `date_created_after` and `date_created_before` expected date format parameter on attempts summary API.
15+
- Documentation was improved by adding `WHATSAPP` as optional valid parameter on attempts summary API.
16+
17+
**Twiml**
18+
- Added support for he-il inside of ssm_lang.json that was missing
19+
- Added support for he-il language in say.json that was missing
20+
- Add `statusCallback` and `statusCallbackMethod` attributes to `<Siprec>`.
21+
22+
323
[2023-07-13] Version 1.10.0
424
---------------------------
525
**Flex**

rest/accounts/v1/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ This is the public Twilio REST API.
55
## Overview
66
This API client was generated by the [OpenAPI Generator](https://openapi-generator.tech) project from the OpenAPI specs located at [twilio/twilio-oai](https://github.com/twilio/twilio-oai/tree/main/spec). By using the [OpenAPI-spec](https://www.openapis.org/) from a remote server, you can easily generate an API client.
77

8-
- API version: 1.46.0
8+
- API version: 1.46.1
99
- Package version: 1.0.0
1010
- Build package: com.twilio.oai.TwilioGoGenerator
1111
For more information, please visit [https://support.twilio.com](https://support.twilio.com)

rest/api/v2010/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ This is the public Twilio REST API.
55
## Overview
66
This API client was generated by the [OpenAPI Generator](https://openapi-generator.tech) project from the OpenAPI specs located at [twilio/twilio-oai](https://github.com/twilio/twilio-oai/tree/main/spec). By using the [OpenAPI-spec](https://www.openapis.org/) from a remote server, you can easily generate an API client.
77

8-
- API version: 1.46.0
8+
- API version: 1.46.1
99
- Package version: 1.0.0
1010
- Build package: com.twilio.oai.TwilioGoGenerator
1111
For more information, please visit [https://support.twilio.com](https://support.twilio.com)

rest/api/v2010/accounts_messages.go

Lines changed: 30 additions & 30 deletions
Large diffs are not rendered by default.

rest/api/v2010/accounts_messages_media.go

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ import (
2626

2727
// Optional parameters for the method 'DeleteMedia'
2828
type DeleteMediaParams struct {
29-
// The SID of the [Account](https://www.twilio.com/docs/iam/api/account) that created the Media resource(s) to delete.
29+
// The SID of the [Account](https://www.twilio.com/docs/iam/api/account) that is associated with the Media resource.
3030
PathAccountSid *string `json:"PathAccountSid,omitempty"`
3131
}
3232

@@ -35,7 +35,7 @@ func (params *DeleteMediaParams) SetPathAccountSid(PathAccountSid string) *Delet
3535
return params
3636
}
3737

38-
// Delete media from your account. Once delete, you will no longer be billed
38+
// Delete the Media resource.
3939
func (c *ApiService) DeleteMedia(MessageSid string, Sid string, params *DeleteMediaParams) error {
4040
path := "/2010-04-01/Accounts/{AccountSid}/Messages/{MessageSid}/Media/{Sid}.json"
4141
if params != nil && params.PathAccountSid != nil {
@@ -61,7 +61,7 @@ func (c *ApiService) DeleteMedia(MessageSid string, Sid string, params *DeleteMe
6161

6262
// Optional parameters for the method 'FetchMedia'
6363
type FetchMediaParams struct {
64-
// The SID of the [Account](https://www.twilio.com/docs/iam/api/account) that created the Media resource(s) to fetch.
64+
// The SID of the [Account](https://www.twilio.com/docs/iam/api/account) associated with the Media resource.
6565
PathAccountSid *string `json:"PathAccountSid,omitempty"`
6666
}
6767

@@ -70,7 +70,7 @@ func (params *FetchMediaParams) SetPathAccountSid(PathAccountSid string) *FetchM
7070
return params
7171
}
7272

73-
// Fetch a single media instance belonging to the account used to make the request
73+
// Fetch a single Media resource associated with a specific Message resource
7474
func (c *ApiService) FetchMedia(MessageSid string, Sid string, params *FetchMediaParams) (*ApiV2010Media, error) {
7575
path := "/2010-04-01/Accounts/{AccountSid}/Messages/{MessageSid}/Media/{Sid}.json"
7676
if params != nil && params.PathAccountSid != nil {
@@ -101,13 +101,13 @@ func (c *ApiService) FetchMedia(MessageSid string, Sid string, params *FetchMedi
101101

102102
// Optional parameters for the method 'ListMedia'
103103
type ListMediaParams struct {
104-
// The SID of the [Account](https://www.twilio.com/docs/iam/api/account) that created the Media resource(s) to read.
104+
// The SID of the [Account](https://www.twilio.com/docs/iam/api/account) that is associated with the Media resources.
105105
PathAccountSid *string `json:"PathAccountSid,omitempty"`
106-
// Only include media that was created on this date. Specify a date as `YYYY-MM-DD` in GMT, for example: `2009-07-06`, to read media that was created on this date. You can also specify an inequality, such as `StartTime<=YYYY-MM-DD`, to read media that was created on or before midnight of this date, and `StartTime>=YYYY-MM-DD` to read media that was created on or after midnight of this date.
106+
// Only include Media resources that were created on this date. Specify a date as `YYYY-MM-DD` in GMT, for example: `2009-07-06`, to read Media that were created on this date. You can also specify an inequality, such as `StartTime<=YYYY-MM-DD`, to read Media that were created on or before midnight of this date, and `StartTime>=YYYY-MM-DD` to read Media that were created on or after midnight of this date.
107107
DateCreated *time.Time `json:"DateCreated,omitempty"`
108-
// Only include media that was created on this date. Specify a date as `YYYY-MM-DD` in GMT, for example: `2009-07-06`, to read media that was created on this date. You can also specify an inequality, such as `StartTime<=YYYY-MM-DD`, to read media that was created on or before midnight of this date, and `StartTime>=YYYY-MM-DD` to read media that was created on or after midnight of this date.
108+
// Only include Media resources that were created on this date. Specify a date as `YYYY-MM-DD` in GMT, for example: `2009-07-06`, to read Media that were created on this date. You can also specify an inequality, such as `StartTime<=YYYY-MM-DD`, to read Media that were created on or before midnight of this date, and `StartTime>=YYYY-MM-DD` to read Media that were created on or after midnight of this date.
109109
DateCreatedBefore *time.Time `json:"DateCreated&lt;,omitempty"`
110-
// Only include media that was created on this date. Specify a date as `YYYY-MM-DD` in GMT, for example: `2009-07-06`, to read media that was created on this date. You can also specify an inequality, such as `StartTime<=YYYY-MM-DD`, to read media that was created on or before midnight of this date, and `StartTime>=YYYY-MM-DD` to read media that was created on or after midnight of this date.
110+
// Only include Media resources that were created on this date. Specify a date as `YYYY-MM-DD` in GMT, for example: `2009-07-06`, to read Media that were created on this date. You can also specify an inequality, such as `StartTime<=YYYY-MM-DD`, to read Media that were created on or before midnight of this date, and `StartTime>=YYYY-MM-DD` to read Media that were created on or after midnight of this date.
111111
DateCreatedAfter *time.Time `json:"DateCreated&gt;,omitempty"`
112112
// How many resources to return in each list page. The default is 50, and the maximum is 1000.
113113
PageSize *int `json:"PageSize,omitempty"`

0 commit comments

Comments
 (0)