10000 feat: Organizations Api uptake for twilio-python by AsabuHere · Pull Request #815 · twilio/twilio-python · GitHub
[go: up one dir, main page]

Skip to content

feat: Organizations Api uptake for twilio-python #815

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 35 commits into from
Dec 12, 2024
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
Show all changes
35 commits
Select commit Hold shift + click to select a range
b4c5734
feat: oauth sdk implementation (#799)
manisha1997 Jul 23, 2024
3e246e4
Python Orgs Api Changes
AsabuHere Sep 17, 2024
8395487
removing unwanted logs
AsabuHere Sep 17, 2024
bc5c16b
removing unwanted logs
AsabuHere Sep 17, 2024
a66f9e9
removing unwanted logs
AsabuHere Sep 17, 2024
b5a6490
removing unwanted logs
AsabuHere Sep 17, 2024
fac26ee
Fixing token fetch flow
AsabuHere Sep 17, 2024
15e15c0
twilio python changes for orgs api uptake
AsabuHere Sep 26, 2024
7b07ba7
twilio python changes for orgs api uptake
AsabuHere Sep 26, 2024
af11fd2
Update test_cluster.py
AsabuHere Sep 26, 2024
661785d
Update test_cluster.py
AsabuHere Sep 26, 2024
6a8c2d8
twilio python changes for orgs api uptake
AsabuHere Sep 26, 2024
1ba2f9b
twilio python changes for orgs api uptake
AsabuHere Sep 26, 2024
98708f0
twilio python changes for orgs api uptake
AsabuHere Sep 26, 2024
d78d5d5
twilio python changes for orgs api uptake
AsabuHere Sep 26, 2024
7bdf1b5
Merge branch 'main' into asabu_Python_changes
AsabuHere Sep 26, 2024
bc77770
twilio python changes for orgs api uptake
AsabuHere Sep 27, 2024
0211f23
twilio python changes for orgs api uptake
AsabuHere Sep 27, 2024
27dec32
twilio python changes for orgs api uptake
AsabuHere Sep 27, 2024
8000 2959689
twilio python changes for orgs api uptake
AsabuHere Sep 27, 2024
b973065
Uptake of review comments
AsabuHere Oct 1, 2024
ceebd46
modified error messages
AsabuHere Oct 1, 2024
35b5015
Uptake of review comments
AsabuHere Oct 6, 2024
76fecab
Merge branch 'main' into asabu_Python_changes
AsabuHere Oct 6, 2024
e9eaa72
Organization api uptake changes
AsabuHere Dec 11, 2024
1c8420c
Organization api uptake changes
AsabuHere Dec 11, 2024
644f94b
Organization api uptake changes
AsabuHere Dec 11, 2024
66f3e28
Organization api uptake changes
AsabuHere Dec 11, 2024
88f6623
removing accept headers for delete operation
AsabuHere Dec 12, 2024
630c28c
Removing unwanted code
AsabuHere Dec 12, 2024
26ee4d3
Merge branch 'main' into asabu_Python_changes
AsabuHere Dec 12, 2024
ddb336b
Modified generated files
AsabuHere Dec 12, 2024
d79366e
removing unwamted logs
AsabuHere Dec 12, 2024
824ed9f
Formatting changes
AsabuHere Dec 12, 2024
3670f03
make prettier run
AsabuHere Dec 12, 2024
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Modified generated files
  • Loading branch information
AsabuHere committed Dec 12, 2024
commit ddb336b4d6038dccaa58a0dae250a90ca06dad38
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@ def __init__(self, version: Version, organization_sid: str, account_sid: str):

def fetch(self) -> AccountInstance:
"""
Fetch1 the AccountInstance
Fetch the AccountInstance


:returns: The fetched AccountInstance
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -298,8 +298,6 @@ def create(self, public_api_create_role_assignment_request: PublicApiCreateRoleA

headers["Accept"] = "application/json"

headers["Accept"] = "application/scim+json"


payload = self._version.create(method='POST', uri=self._uri, data=data, headers=headers)

Expand All @@ -324,8 +322,6 @@ async def create_async(self, public_api_create_role_assignment_request: PublicAp

headers["Accept"] = "application/json"

headers["Accept"] = "application/scim+json"


payload = await self._version.create_async(method='POST', uri=self._uri, data=data, headers=headers)

Expand Down
2 changes: 1 addition & 1 deletion twilio/rest/preview_iam/versionless/organization/user.py
Original file line number Diff line number Diff line change
Expand Up @@ -469,7 +469,7 @@ async def delete_async(self) -> bool:

def fetch(self) -> UserInstance:
"""
Fetch1 the UserInstance
Fetch the UserInstance


:returns: The fetched UserInstance
Expand Down
Loading
0