Skip to content

Commit

Permalink
fix: add missing event type to session recipe
Browse files Browse the repository at this point in the history
  • Loading branch information
porcellus committed May 16, 2024
1 parent 57a04dc commit d1cfe64
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 2 deletions.
7 changes: 6 additions & 1 deletion lib/build/recipe/session/types.d.ts

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

7 changes: 6 additions & 1 deletion lib/ts/recipe/session/types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,12 @@ import { NormalisedAppInfo } from "../../types";

export type RecipeEvent =
| {
action: "SIGN_OUT" | "REFRESH_SESSION" | "SESSION_CREATED" | "ACCESS_TOKEN_PAYLOAD_UPDATED";
action:
| "SIGN_OUT"
| "REFRESH_SESSION"
| "SESSION_CREATED"
| "ACCESS_TOKEN_PAYLOAD_UPDATED"
| "SESSION_ALREADY_EXISTS";
userContext: any;
}
| {
Expand Down

0 comments on commit d1cfe64

Please sign in to comment.