Skip to content

Commit 2c3d5a3

Browse files
committed
[Librarian] Regenerated @ 51e40434baa37a97b298d416220c6de10d9698c4 1ac2fcf2e173acdee4491031f59034933467a82c
1 parent b0d87e4 commit 2c3d5a3

File tree

7 files changed

+21
-8
lines changed

7 files changed

+21
-8
lines changed

CHANGES.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,16 @@
11
twilio-go changelog
22
====================
3+
[2024-11-15] Version 1.23.6
4+
---------------------------
5+
**Api**
6+
- Added `ivr-virtual-agent-custom-voices` and `ivr-virtual-agent-genai` to `usage_record` API.
7+
- Add open-api file tag to realtime_transcriptions
8+
9+
**Taskrouter**
10+
- Add `api-tag` property to workers reservation
11+
- Add `api-tag` property to task reservation
12+
13+
314
[2024-10-24] Version 1.23.5
415
---------------------------
516
**Conversations**

rest/content/v1/docs/CallToActionActionType.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ Name | Type | Notes
88
**PHONE_NUMBER** | string | (value: `"PHONE_NUMBER"`)
99
**COPY_CODE** | string | (value: `"COPY_CODE"`)
1010
**VOICE_CALL** | string | (value: `"VOICE_CALL"`)
11+
**VOICE_CALL_REQUEST** | string | (value: `"VOICE_CALL_REQUEST"`)
1112

1213

1314
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)

rest/content/v1/model_call_to_action_action_type.go

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,9 @@ type CallToActionActionType string
1919

2020
// List of callToActionActionType
2121
const (
22-
CALLTOACTIONACTIONTYPE_URL CallToActionActionType = "URL"
23-
CALLTOACTIONACTIONTYPE_PHONE_NUMBER CallToActionActionType = "PHONE_NUMBER"
24-
CALLTOACTIONACTIONTYPE_COPY_CODE CallToActionActionType = "COPY_CODE"
25-
CALLTOACTIONACTIONTYPE_VOICE_CALL CallToActionActionType = "VOICE_CALL"
22+
CALLTOACTIONACTIONTYPE_URL CallToActionActionType = "URL"
23+
CALLTOACTIONACTIONTYPE_PHONE_NUMBER CallToActionActionType = "PHONE_NUMBER"
24+
CALLTOACTIONACTIONTYPE_COPY_CODE CallToActionActionType = "COPY_CODE"
25+
CALLTOACTIONACTIONTYPE_VOICE_CALL CallToActionActionType = "VOICE_CALL"
26+
CALLTOACTIONACTIONTYPE_VOICE_CALL_REQUEST CallToActionActionType = "VOICE_CALL_REQUEST"
2627
)

rest/conversations/v1/conversation_with_participants.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ type CreateConversationWithParticipantsParams struct {
4747
BindingsEmailAddress *string `json:"Bindings.Email.Address,omitempty"`
4848
// The default name that will be used when sending outbound emails in this conversation.
4949
BindingsEmailName *string `json:"Bindings.Email.Name,omitempty"`
50-
// 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.
50+
// 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.
5151
Participant *[]string `json:"Participant,omitempty"`
5252
}
5353

rest/conversations/v1/docs/ConversationWithParticipantsApi.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ Name | Type | Description
3939
**TimersClosed** | **string** | ISO8601 duration when conversation will be switched to `closed` state. Minimum value for this timer is 10 minutes.
4040
**BindingsEmailAddress** | **string** | The default email address that will be used when sending outbound emails in this conversation.
4141
**BindingsEmailName** | **string** | The default name that will be used when sending outbound emails in this conversation.
42-
**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.
42+
**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.
4343

4444
### Return type
4545

rest/conversations/v1/docs/ServicesConversationWithParticipantsApi.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ Name | Type | Description
4343
**TimersClosed** | **string** | ISO8601 duration when conversation will be switched to `closed` state. Minimum value for this timer is 10 minutes.
4444
**BindingsEmailAddress** | **string** | The default email address that will be used when sending outbound emails in this conversation.
4545
**BindingsEmailName** | **string** | The default name that will be used when sending outbound emails in this conversation.
46-
**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.
46+
**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.
4747

4848
### Return type
4949

rest/conversations/v1/services_conversation_with_participants.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ type CreateServiceConversationWithParticipantsParams struct {
4848
BindingsEmailAddress *string `json:"Bindings.Email.Address,omitempty"`
4949
// The default name that will be used when sending outbound emails in this conversation.
5050
BindingsEmailName *string `json:"Bindings.Email.Name,omitempty"`
51-
// 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.
51+
// 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.
5252
Participant *[]string `json:"Participant,omitempty"`
5353
}
5454

0 commit comments

Comments
 (0)