diff --git a/CHANGES.md b/CHANGES.md index 6b6760d8b..49c790910 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -1,5 +1,16 @@ twilio-go changelog ==================== +[2024-11-15] Version 1.23.6 +--------------------------- +**Api** +- Added `ivr-virtual-agent-custom-voices` and `ivr-virtual-agent-genai` to `usage_record` API. +- Add open-api file tag to realtime_transcriptions + +**Taskrouter** +- Add `api-tag` property to workers reservation +- Add `api-tag` property to task reservation + + [2024-10-24] Version 1.23.5 --------------------------- **Conversations** diff --git a/rest/content/v1/docs/CallToActionActionType.md b/rest/content/v1/docs/CallToActionActionType.md index 2e94d59a3..a55a23372 100644 --- a/rest/content/v1/docs/CallToActionActionType.md +++ b/rest/content/v1/docs/CallToActionActionType.md @@ -8,6 +8,7 @@ Name | Type | Notes **PHONE_NUMBER** | string | (value: `"PHONE_NUMBER"`) **COPY_CODE** | string | (value: `"COPY_CODE"`) **VOICE_CALL** | string | (value: `"VOICE_CALL"`) +**VOICE_CALL_REQUEST** | string | (value: `"VOICE_CALL_REQUEST"`) [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) diff --git a/rest/content/v1/model_call_to_action_action_type.go b/rest/content/v1/model_call_to_action_action_type.go index 58809d038..ae50e0d4b 100644 --- a/rest/content/v1/model_call_to_action_action_type.go +++ b/rest/content/v1/model_call_to_action_action_type.go @@ -19,8 +19,9 @@ type CallToActionActionType string // List of callToActionActionType const ( - CALLTOACTIONACTIONTYPE_URL CallToActionActionType = "URL" - CALLTOACTIONACTIONTYPE_PHONE_NUMBER CallToActionActionType = "PHONE_NUMBER" - CALLTOACTIONACTIONTYPE_COPY_CODE CallToActionActionType = "COPY_CODE" - CALLTOACTIONACTIONTYPE_VOICE_CALL CallToActionActionType = "VOICE_CALL" + CALLTOACTIONACTIONTYPE_URL CallToActionActionType = "URL" + CALLTOACTIONACTIONTYPE_PHONE_NUMBER CallToActionActionType = "PHONE_NUMBER" + CALLTOACTIONACTIONTYPE_COPY_CODE CallToActionActionType = "COPY_CODE" + CALLTOACTIONACTIONTYPE_VOICE_CALL CallToActionActionType = "VOICE_CALL" + CALLTOACTIONACTIONTYPE_VOICE_CALL_REQUEST CallToActionActionType = "VOICE_CALL_REQUEST" ) diff --git a/rest/conversations/v1/conversation_with_participants.go b/rest/conversations/v1/conversation_with_participants.go index d8c4fdf81..4c0702701 100644 --- a/rest/conversations/v1/conversation_with_participants.go +++ b/rest/conversations/v1/conversation_with_participants.go @@ -47,7 +47,7 @@ type CreateConversationWithParticipantsParams struct { BindingsEmailAddress *string `json:"Bindings.Email.Address,omitempty"` // The default name that will be used when sending outbound emails in this conversation. BindingsEmailName *string `json:"Bindings.Email.Name,omitempty"` - // The participant to be added to the conversation in JSON format. The parameters are as in [Participant Resource](https://www.twilio.com/docs/conversations/api/conversation-participant-resource). The maximum number of participants that can be added in a single request is 10. + // The participant to be added to the conversation in JSON format. The JSON object attributes are as parameters in [Participant Resource](https://www.twilio.com/docs/conversations/api/conversation-participant-resource). The maximum number of participants that can be added in a single request is 10. Participant *[]string `json:"Participant,omitempty"` } diff --git a/rest/conversations/v1/docs/ConversationWithParticipantsApi.md b/rest/conversations/v1/docs/ConversationWithParticipantsApi.md index b11a55728..fe6ea1149 100644 --- a/rest/conversations/v1/docs/ConversationWithParticipantsApi.md +++ b/rest/conversations/v1/docs/ConversationWithParticipantsApi.md @@ -39,7 +39,7 @@ Name | Type | Description **TimersClosed** | **string** | ISO8601 duration when conversation will be switched to `closed` state. Minimum value for this timer is 10 minutes. **BindingsEmailAddress** | **string** | The default email address that will be used when sending outbound emails in this conversation. **BindingsEmailName** | **string** | The default name that will be used when sending outbound emails in this conversation. -**Participant** | **[]string** | The participant to be added to the conversation in JSON format. The parameters are as in [Participant Resource](https://www.twilio.com/docs/conversations/api/conversation-participant-resource). The maximum number of participants that can be added in a single request is 10. +**Participant** | **[]string** | The participant to be added to the conversation in JSON format. The JSON object attributes are as parameters in [Participant Resource](https://www.twilio.com/docs/conversations/api/conversation-participant-resource). The maximum number of participants that can be added in a single request is 10. ### Return type diff --git a/rest/conversations/v1/docs/ServicesConversationWithParticipantsApi.md b/rest/conversations/v1/docs/ServicesConversationWithParticipantsApi.md index a748e984c..df0526bad 100644 --- a/rest/conversations/v1/docs/ServicesConversationWithParticipantsApi.md +++ b/rest/conversations/v1/docs/ServicesConversationWithParticipantsApi.md @@ -43,7 +43,7 @@ Name | Type | Description **TimersClosed** | **string** | ISO8601 duration when conversation will be switched to `closed` state. Minimum value for this timer is 10 minutes. **BindingsEmailAddress** | **string** | The default email address that will be used when sending outbound emails in this conversation. **BindingsEmailName** | **string** | The default name that will be used when sending outbound emails in this conversation. -**Participant** | **[]string** | The participant to be added to the conversation in JSON format. The parameters are as in [Participant Resource](https://www.twilio.com/docs/conversations/api/conversation-participant-resource). The maximum number of participants that can be added in a single request is 10. +**Participant** | **[]string** | The participant to be added to the conversation in JSON format. The JSON object attributes are as parameters in [Participant Resource](https://www.twilio.com/docs/conversations/api/conversation-participant-resource). The maximum number of participants that can be added in a single request is 10. ### Return type diff --git a/rest/conversations/v1/services_conversation_with_participants.go b/rest/conversations/v1/services_conversation_with_participants.go index 45aeab784..c5a78a40b 100644 --- a/rest/conversations/v1/services_conversation_with_participants.go +++ b/rest/conversations/v1/services_conversation_with_participants.go @@ -48,7 +48,7 @@ type CreateServiceConversationWithParticipantsParams struct { BindingsEmailAddress *string `json:"Bindings.Email.Address,omitempty"` // The default name that will be used when sending outbound emails in this conversation. BindingsEmailName *string `json:"Bindings.Email.Name,omitempty"` - // The participant to be added to the conversation in JSON format. The parameters are as in [Participant Resource](https://www.twilio.com/docs/conversations/api/conversation-participant-resource). The maximum number of participants that can be added in a single request is 10. + // The participant to be added to the conversation in JSON format. The JSON object attributes are as parameters in [Participant Resource](https://www.twilio.com/docs/conversations/api/conversation-participant-resource). The maximum number of participants that can be added in a single request is 10. Participant *[]string `json:"Participant,omitempty"` }