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
+23Lines changed: 23 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -3,6 +3,29 @@ 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-01-28] Version 9.4.4
7
+
--------------------------
8
+
**Library - Fix**
9
+
-[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)!
10
+
11
+
**Library - Chore**
12
+
-[PR #834](https://github.com/twilio/twilio-python/pull/834): update httpclient. Thanks to [@manisha1997](https://github.com/manisha1997)!
13
+
-[PR #837](https://github.com/twilio/twilio-python/pull/837): enable newer versions of aiohttp-retry. Thanks to [@tiwarishubham635](https://github.com/tiwarishubham635)!
14
+
-[PR #833](https://github.com/twilio/twilio-python/pull/833): created bug report issue template. Thanks to [@sbansla](https://github.com/sbansla)!
15
+
16
+
**Api**
17
+
- Add open-api file tag to `conference/call recordings` and `recording_transcriptions`.
18
+
19
+
**Events**
20
+
- Add support for subaccount subscriptions (beta)
21
+
22
+
**Insights**
23
+
- add new region to conference APIs
24
+
25
+
**Lookups**
26
+
- Add new `parnter_sub_id` query parameter to the lookup request
Copy file name to clipboardExpand all lines: twilio/rest/events/v1/subscription/__init__.py
+38-2Lines changed: 38 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -33,6 +33,7 @@ class SubscriptionInstance(InstanceResource):
33
33
:ivar sink_sid: The SID of the sink that events selected by this subscription should be sent to. Sink must be active for the subscription to be created.
34
34
:ivar url: The URL of this resource.
35
35
:ivar links: Contains a dictionary of URL links to nested resources of this Subscription.
36
+
:ivar receive_events_from_subaccounts: Receive events from all children accounts in the parent account subscription.
:param description: A human readable description for the Subscription.
121
126
:param sink_sid: The SID of the sink that events selected by this subscription should be sent to. Sink must be active for the subscription to be created.
127
+
:param receive_events_from_subaccounts: Receive events from all children accounts in the parent account subscription.
Asynchronous coroutine to update the SubscriptionInstance
137
145
138
146
:param description: A human readable description for the Subscription.
139
147
:param sink_sid: The SID of the sink that events selected by this subscription should be sent to. Sink must be active for the subscription to be created.
148
+
:param receive_events_from_subaccounts: Receive events from all children accounts in the parent account subscription.
:param description: A human readable description for the Subscription.
261
272
:param sink_sid: The SID of the sink that events selected by this subscription should be sent to. Sink must be active for the subscription to be created.
273
+
:param receive_events_from_subaccounts: Receive events from all children accounts in the parent account subscription.
Asynchronous coroutine to update the SubscriptionInstance
291
307
292
308
:param description: A human readable description for the Subscription.
293
309
:param sink_sid: The SID of the sink that events selected by this subscription should be sent to. Sink must be active for the subscription to be created.
310
+
:param receive_events_from_subaccounts: Receive events from all children accounts in the parent account subscription.
:param description: A human readable description for the Subscription **This value should not contain PII.**
377
401
:param sink_sid: The SID of the sink that events selected by this subscription should be sent to. Sink must be active for the subscription to be created.
378
402
:param types: An array of objects containing the subscribed Event Types
403
+
:param receive_events_from_subaccounts: Receive events from all children accounts in the parent account subscription.
:param description: A human readable description for the Subscription **This value should not contain PII.**
409
441
:param sink_sid: The SID of the sink that events selected by this subscription should be sent to. Sink must be active for the subscription to be created.
410
442
:param types: An array of objects containing the subscribed Event Types
443
+
:param receive_events_from_subaccounts: Receive events from all children accounts in the parent account subscription.
0 commit comments