-
Notifications
You must be signed in to change notification settings - Fork 10
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
Add "dangerously get member" to SDKs and SAML Update by URL and Doc #153
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Let's look into the missing docs, but otherwise this LGTM.
type DangerouslyGetParams struct { | ||
MemberID string `json:"member_id,omitempty"` | ||
} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Can we add some docs for this method? It's okay if we don't do it in this PR, but make a task for it to track.
@@ -22,40 +22,10 @@ type ResetParams struct { | |||
// SessionToken: A secret token for a given Stytch Session. | |||
SessionToken string `json:"session_token,omitempty"` | |||
// SessionJWT: The JSON Web Token (JWT) for a given Stytch Session. | |||
SessionJWT string `json:"session_jwt,omitempty"` |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Hmm, this looks wrong. We lost a bunch of docs
@@ -69,34 +39,18 @@ type ResetResponse struct { | |||
// Member: The [Member object](https://stytch.com/docs/b2b/api/member-object) | |||
Member organizations.Member `json:"member,omitempty"` | |||
// Organization: The [Organization object](https://stytch.com/docs/b2b/api/organization-object). | |||
Organization organizations.Organization `json:"organization,omitempty"` |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Same here, a bunch of missing docs
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Oh, one more thing: bump the MINOR version so this gets published
Add "dangerously get member" to SDKs
SAML Update by URL and Doc