8000 [Librarian] Regenerated @ b65acba5c4232d15904620906c50336624531359 f2… · CoolNightTimeCoder/twilio-python@38ab9a4 · GitHub
[go: up one dir, main page]

Skip to content

Commit 38ab9a4

Browse files
committed
[Librarian] Regenerated @ b65acba5c4232d15904620906c50336624531359 f22b1df4a255e9c39bba77d26124d8caa19d2902
1 parent 0b16947 commit 38ab9a4

File tree

4 files changed

+12
-11
lines changed

4 files changed

+12
-11
lines changed

CHANGES.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,15 @@ twilio-python Changelog
33

44
Here you can see the full list of changes between each twilio-python release.
55

6+
[2024-12-13] Version 9.4.1
7+
--------------------------
8+
**Library - Fix**
9+
- [PR #827](https://github.com/twilio/twilio-python/pull/827): Fixing init file for preview iam domain. Thanks to [@AsabuHere](https://github.com/AsabuHere)!
10+
11+
**Library - Chore**
12+
- [PR #826](https://github.com/twilio/twilio-python/pull/826): fix orgs api changes. Thanks to [@tiwarishubham635](https://github.com/tiwarishubham635)!
13+
14+
615
[2024-12-12] Version 9.4.0
716
--------------------------
817
**Library - Feature**

twilio/rest/__init__.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -97,6 +97,7 @@ def __init__(
9797
environment=None,
9898
edge=None,
9999
user_agent_extensions=None,
100+
credential_provider=None,
100101
):
101102
"""
102103
Initializes the Twilio Client
@@ -122,6 +123,7 @@ def __init__(
122123
environment,
123124
edge,
124125
user_agent_extensions,
126+
credential_provider,
125127
)
126128

127129
# Domains

twilio/rest/preview_iam/PreviewIamBase.py

Lines changed: 0 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,6 @@
1313

1414
from twilio.base.domain import Domain
1515
from twilio.rest import Client
16-
from twilio.rest.preview_iam.organizations import Organizations
1716
from twilio.rest.preview_iam.v1 import V1
1817

1918

@@ -26,18 +25,8 @@ def __init__(self, twilio: Client):
2625
:returns: Domain for PreviewIam
2726
"""
2827
super().__init__(twilio, "https://preview-iam.twilio.com")
29-
self._organizations: Optional[Organizations] = None
3028
self._v1: Optional[V1] = None
3129

32-
@property
33-
def organizations(self) -> Organizations:
34-
"""
35-
:returns: Versions organizations of PreviewIam
36-
"""
37-
if self._organizations is None:
38-
self._organizations = Organizations(self)
39-
return self._organizations
40-
4130
@property
4231
def v1(self) -> V1:
4332
"""

twilio/rest/preview_iam/__init__.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@
1111
)
1212
from twilio.rest.preview_iam.versionless import Versionless
1313

14+
1415
class PreviewIam(PreviewIamBase):
1516
@property
1617
def organization(self) -> OrganizationList:

0 commit comments

Comments
 (0)
0