-
Notifications
You must be signed in to change notification settings - Fork 15
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
ci: regenerated with OpenAPI Doc , Speakeasy CLI 1.454.0
- Loading branch information
1 parent
1fdbc0a
commit 67916c2
Showing
44 changed files
with
550 additions
and
393 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -21,8 +21,9 @@ from clerk_backend_api import Clerk | |
|
||
with Clerk( | ||
bearer_auth="<YOUR_BEARER_TOKEN_HERE>", | ||
) as s: | ||
res = s.allowlist_blocklist.list_allowlist_identifiers() | ||
) as clerk: | ||
|
||
res = clerk.allowlist_blocklist.list_allowlist_identifiers() | ||
|
||
if res is not None: | ||
# handle response | ||
|
@@ -58,8 +59,9 @@ from clerk_backend_api import Clerk | |
|
||
with Clerk( | ||
bearer_auth="<YOUR_BEARER_TOKEN_HERE>", | ||
) as s: | ||
res = s.allowlist_blocklist.create_allowlist_identifier(identifier="[email protected]", notify=True) | ||
) as clerk: | ||
|
||
res = clerk.allowlist_blocklist.create_allowlist_identifier(identifier="[email protected]", notify=True) | ||
|
||
if res is not None: | ||
# handle response | ||
|
@@ -97,8 +99,9 @@ from clerk_backend_api import Clerk | |
|
||
with Clerk( | ||
bearer_auth="<YOUR_BEARER_TOKEN_HERE>", | ||
) as s: | ||
res = s.allowlist_blocklist.create_blocklist_identifier(identifier="[email protected]") | ||
) as clerk: | ||
|
||
res = clerk.allowlist_blocklist.create_blocklist_identifier(identifier="[email protected]") | ||
|
||
if res is not None: | ||
# handle response | ||
|
@@ -135,8 +138,9 @@ from clerk_backend_api import Clerk | |
|
||
with Clerk( | ||
bearer_auth="<YOUR_BEARER_TOKEN_HERE>", | ||
) as s: | ||
res = s.allowlist_blocklist.delete_blocklist_identifier(identifier_id="identifier123") | ||
) as clerk: | ||
|
||
res = clerk.allowlist_blocklist.delete_blocklist_identifier(identifier_id="identifier123") | ||
|
||
if res is not None: | ||
# handle response | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.