Skip to content

Commit

Permalink
feat: update the paths for email/phoneNumber exists APIs to match new…
Browse files Browse the repository at this point in the history
… FDI
  • Loading branch information
porcellus committed Apr 12, 2024
1 parent db0c08b commit fe8eb36
Show file tree
Hide file tree
Showing 6 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion bundle/emailpassword.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion bundle/passwordless.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion lib/build/recipe/emailpassword/recipeImplementation.js

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

4 changes: 2 additions & 2 deletions lib/build/recipe/passwordless/recipeImplementation.js

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

2 changes: 1 addition & 1 deletion lib/ts/recipe/emailpassword/recipeImplementation.ts
Original file line number Diff line number Diff line change
Expand Up @@ -398,7 +398,7 @@ export default function getRecipeImplementation(
exists: boolean;
}>(
await Multitenancy.getInstanceOrThrow().recipeImplementation.getTenantId({ userContext }),
"/signup/email/exists",
"/emailpassword/email/exists",
{},
{ email },
Querier.preparePreAPIHook({
Expand Down
4 changes: 2 additions & 2 deletions lib/ts/recipe/passwordless/recipeImplementation.ts
Original file line number Diff line number Diff line change
Expand Up @@ -250,7 +250,7 @@ export default function getRecipeImplementation(
await Multitenancy.getInstanceOrThrow().recipeImplementation.getTenantId({
userContext: input.userContext,
}),
"/signup/email/exists",
"/passwordless/email/exists",
{},
{ email: input.email },
Querier.preparePreAPIHook({
Expand Down Expand Up @@ -288,7 +288,7 @@ export default function getRecipeImplementation(
await Multitenancy.getInstanceOrThrow().recipeImplementation.getTenantId({
userContext: input.userContext,
}),
"/signup/phoneNumber/exists",
"/passwordless/phoneNumber/exists",
{},
{ phoneNumber: input.phoneNumber },
Querier.preparePreAPIHook({
Expand Down

0 comments on commit fe8eb36

Please sign in to comment.