forked from clerk/clerk-sdk-python
-
Notifications
You must be signed in to change notification settings - Fork 0
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.472.1
- Loading branch information
1 parent
43ba613
commit 298ab54
Showing
173 changed files
with
6,605 additions
and
2,078 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,4 @@ | ||
.speakeasy/reports | ||
README-PYPI.md | ||
.venv/ | ||
venv/ | ||
|
Large diffs are not rendered by default.
Oops, something went wrong.
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 |
---|---|---|
|
@@ -10,6 +10,7 @@ Required parameters | |
| `email_address` | *str* | :heavy_check_mark: | The email address the invitation will be sent to | [email protected] | | ||
| `public_metadata` | Dict[str, *Any*] | :heavy_minus_sign: | Metadata that will be attached to the newly created invitation.<br/>The value of this property should be a well-formed JSON object.<br/>Once the user accepts the invitation and signs up, these metadata will end up in the user's public metadata. | {} | | ||
| `redirect_url` | *Optional[str]* | :heavy_minus_sign: | Optional URL which specifies where to redirect the user once they click the invitation link.<br/>This is only required if you have implemented a [custom flow](https://clerk.com/docs/authentication/invitations#custom-flow) and you're not using Clerk Hosted Pages or Clerk Components. | https://example.com/welcome | | ||
| `notify` | *OptionalNullable[bool]* | :heavy_minus_sign: | Optional flag which denotes whether an email invitation should be sent to the given email address.<br/>Defaults to true. | true | | ||
| `notify` | *OptionalNullable[bool]* | :heavy_minus_sign: | Optional flag which denotes whether an email invitation should be sent to the given email address.<br/>Defaults to `true`. | true | | ||
| `ignore_existing` | *OptionalNullable[bool]* | :heavy_minus_sign: | Whether an invitation should be created if there is already an existing invitation for this email address, or it's claimed by another user. | false | | ||
| `expires_in_days` | *OptionalNullable[int]* | :heavy_minus_sign: | The number of days the invitation will be valid for. By default, the invitation does not expire. | | | ||
| `expires_in_days` | *OptionalNullable[int]* | :heavy_minus_sign: | The number of days the invitation will be valid for. By default, the invitation expires after 30 days. | | | ||
| `template_slug` | [OptionalNullable[models.TemplateSlug]](../models/templateslug.md) | :heavy_minus_sign: | The slug of the email template to use for the invitation email.<br/>If not provided, the "invitation" template will be used. | | |
Oops, something went wrong.