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
+74Lines changed: 74 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -3,6 +3,80 @@ twilio-python Changelog
3
3
4
4
Here you can see the full list of changes between each twilio-python release.
5
5
6
+
[2025-03-11] Version 9.5.0
7
+
--------------------------
8
+
**Library - Feature**
9
+
-[PR #850](https://github.com/twilio/twilio-python/pull/850): Update UPGRADE.md. Thanks to [@manisha1997](https://github.com/manisha1997)!
10
+
11
+
**Library - Fix**
12
+
-[PR #847](https://github.com/twilio/twilio-python/pull/847): AssistantsBase import. Thanks to [@sbansla](https://github.com/sbansla)!
13
+
14
+
**Api**
15
+
- Add the missing `emergency_enabled` field for `Address Service` endpoints
16
+
17
+
**Messaging**
18
+
- Add missing enums for A2P and TF
19
+
20
+
**Numbers**
21
+
- add missing enum values to hosted_number_order_status
22
+
23
+
**Twiml**
24
+
- Convert Twiml Attribute `speechModel` of type enum to string **(breaking change)**
25
+
26
+
27
+
[2025-02-20] Version 9.4.6
28
+
--------------------------
29
+
**Library - Chore**
30
+
-[PR #842](https://github.com/twilio/twilio-python/pull/842): issue 841. Thanks to [@manisha1997](https://github.com/manisha1997)!
31
+
32
+
**Flex**
33
+
- Adding Digital Transfers APIs under v1/Interactions
34
+
35
+
**Numbers**
36
+
- Convert webhook_type to ienum type in v1/Porting/Configuration/Webhook/{webhook_type}
37
+
38
+
**Trusthub**
39
+
- Changing TrustHub SupportingDocument status enum from lowercase to uppercase since kyc-orch returns status capitalized and rest proxy requires strict casing
40
+
41
+
42
+
[2025-02-11] Version 9.4.5
43
+
--------------------------
44
+
**Api**
45
+
- Change downstream url and change media type for file `base/api/v2010/validation_request.json`.
46
+
47
+
**Intelligence**
48
+
- Add json_results for Generative JSON operator results
49
+
50
+
**Messaging**
51
+
- Add DestinationAlphaSender API to support Country-Specific Alpha Senders
52
+
53
+
**Video**
54
+
- Change codec type from enum to case-insensitive enum in recording and room_recording apis
55
+
56
+
57
+
[2025-01-28] Version 9.4.4
58
+
--------------------------
59
+
**Library - Fix**
60
+
-[PR #822](https://github.com/twilio/twilio-python/pull/822): Fix for 10 vulnerabilities. Thanks to [@twilio-product-security](https://github.com/twilio-product-security)!
61
+
62
+
**Library - Chore**
63
+
-[PR #834](https://github.com/twilio/twilio-python/pull/834): update httpclient. Thanks to [@manisha1997](https://github.com/manisha1997)!
64
+
-[PR #837](https://github.com/twilio/twilio-python/pull/837): enable newer versions of aiohttp-retry. Thanks to [@tiwarishubham635](https://github.com/tiwarishubham635)!
65
+
-[PR #833](https://github.com/twilio/twilio-python/pull/833): created bug report issue template. Thanks to [@sbansla](https://github.com/sbansla)!
66
+
67
+
**Api**
68
+
- Add open-api file tag to `conference/call recordings` and `recording_transcriptions`.
69
+
70
+
**Events**
71
+
- Add support for subaccount subscriptions (beta)
72
+
73
+
**Insights**
74
+
- add new region to conference APIs
75
+
76
+
**Lookups**
77
+
- Add new `parnter_sub_id` query parameter to the lookup request
Copy file name to clipboardExpand all lines: README.md
+3-1Lines changed: 3 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -135,7 +135,9 @@ client = Client()
135
135
136
136
### Specify Region and/or Edge
137
137
138
-
To take advantage of Twilio's [Global Infrastructure](https://www.twilio.com/docs/global-infrastructure), specify the target Region and/or Edge for the client:
138
+
To take advantage of Twilio's [Global Infrastructure](https://www.twilio.com/docs/global-infrastructure), specify the target Region and Edge for the client:
139
+
140
+
> **Note:** When specifying a `region` parameter for a helper library client, be sure to also specify the `edge` parameter. For backward compatibility purposes, specifying a `region` without specifying an `edge` will result in requests being routed to US1.
Copy file name to clipboardExpand all lines: twilio/rest/api/v2010/account/address/__init__.py
+22-4Lines changed: 22 additions & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -148,7 +148,7 @@ def update(
148
148
"""
149
149
Update the AddressInstance
150
150
151
-
:param friendly_name: A descriptive string that you create to describe the address. It can be up to 64 characters long.
151
+
:param friendly_name: A descriptive string that you create to describe the new address. It can be up to 64 characters long for Regulatory Compliance addresses and 32 characters long for Emergency addresses.
152
152
:param customer_name: The name to associate with the address.
153
153
:param street: The number and street address of the address.
154
154
:param city: The city of the address.
@@ -187,7 +187,7 @@ async def update_async(
187
187
"""
188
188
Asynchronous coroutine to update the AddressInstance
189
189
190
-
:param friendly_name: A descriptive string that you create to describe the address. It can be up to 64 characters long.
190
+
:param friendly_name: A descriptive string that you create to describe the new address. It can be up to 64 characters long for Regulatory Compliance addresses and 32 characters long for Emergency addresses.
191
191
:param customer_name: The name to associate with the address.
192
192
:param street: The number and street address of the address.
193
193
:param city: The city of the address.
@@ -336,7 +336,7 @@ def update(
336
336
"""
337
337
Update the AddressInstance
338
338
339
-
:param friendly_name: A descriptive string that you create to describe the address. It can be up to 64 characters long.
339
+
:param friendly_name: A descriptive string that you create to describe the new address. It can be up to 64 characters long for Regulatory Compliance addresses and 32 characters long for Emergency addresses.
340
340
:param customer_name: The name to associate with the address.
341
341
:param street: The number and street address of the address.
342
342
:param city: The city of the address.
@@ -394,7 +394,7 @@ async def update_async(
394
394
"""
395
395
Asynchronous coroutine to update the AddressInstance
396
396
397
-
:param friendly_name: A descriptive string that you create to describe the address. It can be up to 64 characters long.
397
+
:param friendly_name: A descriptive string that you create to describe the new address. It can be up to 64 characters long for Regulatory Compliance addresses and 32 characters long for Emergency addresses.
398
398
:param customer_name: The name to associate with the address.
399
399
:param street: The number and street address of the address.
Copy file name to clipboardExpand all lines: twilio/rest/api/v2010/account/call/transcription.py
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -287,7 +287,7 @@ def create(
287
287
:param speech_model: Recognition model used by the transcription engine, among those supported by the provider
288
288
:param hints: A Phrase contains words and phrase \\\"hints\\\" so that the speech recognition engine is more likely to recognize them.
289
289
:param enable_automatic_punctuation: The provider will add punctuation to recognition result
290
-
:param intelligence_service: The SID of the [Voice Intelligence Service](https://www.twilio.com/docs/voice/intelligence/api/service-resource) for persisting transcripts and running post-call Language Operators .
290
+
:param intelligence_service: The SID or unique name of the [Voice Intelligence Service](https://www.twilio.com/docs/voice/intelligence/api/service-resource) for persisting transcripts and running post-call Language Operators .
291
291
292
292
:returns: The created TranscriptionInstance
293
293
"""
@@ -362,7 +362,7 @@ async def create_async(
362
362
:param speech_model: Recognition model used by the transcription engine, among those supported by the provider
363
363
:param hints: A Phrase contains words and phrase \\\"hints\\\" so that the speech recognition engine is more likely to recognize them.
364
364
:param enable_automatic_punctuation: The provider will add punctuation to recognition result
365
-
:param intelligence_service: The SID of the [Voice Intelligence Service](https://www.twilio.com/docs/voice/intelligence/api/service-resource) for persisting transcripts and running post-call Language Operators .
365
+
:param intelligence_service: The SID or unique name of the [Voice Intelligence Service](https://www.twilio.com/docs/voice/intelligence/api/service-resource) for persisting transcripts and running post-call Language Operators .
0 commit comments