You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: CHANGES.md
+22Lines changed: 22 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,5 +1,27 @@
1
1
twilio-go changelog
2
2
====================
3
+
[2022-10-19] Version 1.1.0
4
+
--------------------------
5
+
**Library - Docs**
6
+
-[PR #192](https://github.com/twilio/twilio-go/pull/192): Update readme to remove pilot warning. Thanks to [@JenniferMah](https://github.com/JenniferMah)!
7
+
8
+
**Api**
9
+
- Make link shortening parameters public **(breaking change)**
10
+
11
+
**Oauth**
12
+
- added oauth JWKS endpoint
13
+
- Get userinfo resource
14
+
- OpenID discovery resource
15
+
- Add new API for token endpoint
16
+
17
+
**Supersim**
18
+
- Add SettingsUpdates resource
19
+
20
+
**Verify**
21
+
- Update Verify Push endpoints to `ga` maturity
22
+
- Verify BYOT add Channels property to the Get Templates response
23
+
24
+
3
25
[2022-10-05] Version 1.0.0
4
26
--------------------------
5
27
**Note:** This release contains breaking changes, check our [upgrade guide](./UPGRADE.md#2022-10-05-026x-to-1xx) for detailed migration notes.
Copy file name to clipboardExpand all lines: rest/accounts/v1/README.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -5,7 +5,7 @@ This is the public Twilio REST API.
5
5
## Overview
6
6
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.
7
7
8
-
- API version: 1.36.0
8
+
- API version: 1.37.0
9
9
- Package version: 1.0.0
10
10
- Build package: com.twilio.oai.TwilioGoGenerator
11
11
For more information, please visit [https://support.twilio.com](https://support.twilio.com)
Copy file name to clipboardExpand all lines: rest/api/v2010/README.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -5,7 +5,7 @@ This is the public Twilio REST API.
5
5
## Overview
6
6
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.
7
7
8
-
- API version: 1.36.0
8
+
- API version: 1.37.0
9
9
- Package version: 1.0.0
10
10
- Build package: com.twilio.oai.TwilioGoGenerator
11
11
For more information, please visit [https://support.twilio.com](https://support.twilio.com)
// The URL we should call to announce something into the conference. The URL can return an MP3, a WAV, or a TwiML document with `<Play>`or `<Say>`.
291
+
// The URL we should call to announce something into the conference. The URL may return an MP3 file, a WAV file, or a TwiML document that contains `<Play>`, `<Say>`, `<Pause>`, or `<Redirect>` verbs.
292
292
AnnounceUrl*string`json:"AnnounceUrl,omitempty"`
293
293
// The HTTP method used to call `announce_url`. Can be: `GET` or `POST` and the default is `POST`
Copy file name to clipboardExpand all lines: rest/api/v2010/accounts_conferences_participants.go
+3-3Lines changed: 3 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -744,15 +744,15 @@ type UpdateParticipantParams struct {
744
744
Muted*bool`json:"Muted,omitempty"`
745
745
// Whether the participant should be on hold. Can be: `true` or `false`. `true` puts the participant on hold, and `false` lets them rejoin the conference.
746
746
Hold*bool`json:"Hold,omitempty"`
747
-
// The URL we call using the `hold_method` for music that plays when the participant is on hold. The URL may return an MP3 file, a WAV file, or a TwiML document that contains the `<Play>`, `<Say>`or `<Redirect>` commands.
747
+
// The URL we call using the `hold_method` for music that plays when the participant is on hold. The URL may return an MP3 file, a WAV file, or a TwiML document that contains `<Play>`, `<Say>`, `<Pause>`, or `<Redirect>` verbs.
748
748
HoldUrl*string`json:"HoldUrl,omitempty"`
749
749
// The HTTP method we should use to call `hold_url`. Can be: `GET` or `POST` and the default is `GET`.
750
750
HoldMethod*string`json:"HoldMethod,omitempty"`
751
-
// The URL we call using the `announce_method` for an announcement to the participant. The URL must return an MP3 file, a WAV file, or a TwiML document that contains `<Play>`or `<Say>` commands.
751
+
// The URL we call using the `announce_method` for an announcement to the participant. The URL may return an MP3 file, a WAV file, or a TwiML document that contains `<Play>`, `<Say>`, `<Pause>`, or `<Redirect>` verbs.
752
752
AnnounceUrl*string`json:"AnnounceUrl,omitempty"`
753
753
// The HTTP method we should use to call `announce_url`. Can be: `GET` or `POST` and defaults to `POST`.
// The URL we should call using the `wait_method` for the music to play while participants are waiting for the conference to start. The default value is the URL of our standard hold music. [Learn more about hold music](https://www.twilio.com/labs/twimlets/holdmusic).
755
+
// The URL we call using the `wait_method` for the music to play while participants are waiting for the conference to start. The URL may return an MP3 file, a WAV file, or a TwiML document that contains `<Play>`, `<Say>`, `<Pause>`, or `<Redirect>` verbs. The default value is the URL of our standard hold music. [Learn more about hold music](https://www.twilio.com/labs/twimlets/holdmusic).
756
756
WaitUrl*string`json:"WaitUrl,omitempty"`
757
757
// The HTTP method we should use to call `wait_url`. Can be `GET` or `POST` and the default is `POST`. When using a static audio file, this should be `GET` so that we can cache the file.
// Determines the usage of Click Tracking. Setting it to `true` will instruct Twilio to replace all links in the Message with a shortened version based on the associated Domain Sid and track clicks on them. If this parameter is not set on an API call, we will use the value set on the Messaging Service. If this parameter is not set and the value is not configured on the Messaging Service used this will default to `false`.
Copy file name to clipboardExpand all lines: rest/api/v2010/docs/AccountsConferencesApi.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -127,7 +127,7 @@ Name | Type | Description
127
127
------------- | ------------- | -------------
128
128
**PathAccountSid** | **string** | The SID of the [Account](https://www.twilio.com/docs/iam/api/account) that created the Conference resource(s) to update.
129
129
**Status** | **string** |
130
-
**AnnounceUrl** | **string** | The URL we should call to announce something into the conference. The URL can return an MP3, a WAV, or a TwiML document with `<Play>`or `<Say>`.
130
+
**AnnounceUrl** | **string** | The URL we should call to announce something into the conference. The URL may return an MP3 file, a WAV file, or a TwiML document that contains `<Play>`, `<Say>`, `<Pause>`, or `<Redirect>` verbs.
131
131
**AnnounceMethod** | **string** | The HTTP method used to call `announce_url`. Can be: `GET` or `POST` and the default is `POST`
Copy file name to clipboardExpand all lines: rest/api/v2010/docs/AccountsConferencesParticipantsApi.md
+3-3Lines changed: 3 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -264,11 +264,11 @@ Name | Type | Description
264
264
**PathAccountSid** | **string** | The SID of the [Account](https://www.twilio.com/docs/iam/api/account) that created the Participant resources to update.
265
265
**Muted** | **bool** | Whether the participant should be muted. Can be `true` or `false`. `true` will mute the participant, and `false` will un-mute them. Anything value other than `true` or `false` is interpreted as `false`.
266
266
**Hold** | **bool** | Whether the participant should be on hold. Can be: `true` or `false`. `true` puts the participant on hold, and `false` lets them rejoin the conference.
267
-
**HoldUrl** | **string** | The URL we call using the `hold_method` for music that plays when the participant is on hold. The URL may return an MP3 file, a WAV file, or a TwiML document that contains the `<Play>`, `<Say>`or `<Redirect>`commands.
267
+
**HoldUrl** | **string** | The URL we call using the `hold_method` for music that plays when the participant is on hold. The URL may return an MP3 file, a WAV file, or a TwiML document that contains `<Play>`, `<Say>`, `<Pause>`, or `<Redirect>`verbs.
268
268
**HoldMethod** | **string** | The HTTP method we should use to call `hold_url`. Can be: `GET` or `POST` and the default is `GET`.
269
-
**AnnounceUrl** | **string** | The URL we call using the `announce_method` for an announcement to the participant. The URL must return an MP3 file, a WAV file, or a TwiML document that contains `<Play>`or `<Say>`commands.
269
+
**AnnounceUrl** | **string** | The URL we call using the `announce_method` for an announcement to the participant. The URL may return an MP3 file, a WAV file, or a TwiML document that contains `<Play>`, `<Say>`, `<Pause>`, or `<Redirect>`verbs.
270
270
**AnnounceMethod** | **string** | The HTTP method we should use to call `announce_url`. Can be: `GET` or `POST` and defaults to `POST`.
271
-
**WaitUrl** | **string** | The URL we should call using the `wait_method` for the music to play while participants are waiting for the conference to start. The default value is the URL of our standard hold music. [Learn more about hold music](https://www.twilio.com/labs/twimlets/holdmusic).
271
+
**WaitUrl** | **string** | The URL we call using the `wait_method` for the music to play while participants are waiting for the conference to start. The URL may return an MP3 file, a WAV file, or a TwiML document that contains `<Play>`, `<Say>`, `<Pause>`, or `<Redirect>` verbs. The default value is the URL of our standard hold music. [Learn more about hold music](https://www.twilio.com/labs/twimlets/holdmusic).
272
272
**WaitMethod** | **string** | The HTTP method we should use to call `wait_url`. Can be `GET` or `POST` and the default is `POST`. When using a static audio file, this should be `GET` so that we can cache the file.
273
273
**BeepOnExit** | **bool** | Whether to play a notification beep to the conference when the participant exits. Can be: `true` or `false`.
274
274
**EndConferenceOnExit** | **bool** | Whether to end the conference when the participant leaves. Can be: `true` or `false` and defaults to `false`.
Copy file name to clipboardExpand all lines: rest/api/v2010/docs/AccountsMessagesApi.md
+1Lines changed: 1 addition & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -44,6 +44,7 @@ Name | Type | Description
44
44
**AddressRetention** | **string** |
45
45
**SmartEncoded** | **bool** | Whether to detect Unicode characters that have a similar GSM-7 character and replace them. Can be: `true` or `false`.
46
46
**PersistentAction** | **[]string** | Rich actions for Channels Messages.
47
+
**ShortenUrls** | **bool** | Determines the usage of Click Tracking. Setting it to `true` will instruct Twilio to replace all links in the Message with a shortened version based on the associated Domain Sid and track clicks on them. If this parameter is not set on an API call, we will use the value set on the Messaging Service. If this parameter is not set and the value is not configured on the Messaging Service used this will default to `false`.
47
48
**ScheduleType** | **string** |
48
49
**SendAt** | **time.Time** | The time that Twilio will send the message. Must be in ISO 8601 format.
49
50
**SendAsMms** | **bool** | If set to True, Twilio will deliver the message as a single MMS message, regardless of the presence of media.
0 commit comments