Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions packages/core/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,7 @@
"./providers/password/react": "./src/components/password/react.tsx",
"./providers/password/*": "./src/components/password/*.ts",
"./providers/passkey/convex.config.js": "./src/components/passkey/convex.config.ts",
"./providers/passkey/react": "./src/components/passkey/react.tsx",
"./providers/passkey/*": "./src/components/passkey/*.ts",
"./providers/testing/*": "./src/components/testing/*.ts",
"./browser": "./src/browser/index.ts",
Expand Down
4 changes: 4 additions & 0 deletions packages/core/src/components/passkey/_generated/api.ts
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,9 @@
import type * as authentication from "../authentication.js";
import type * as cleanup from "../cleanup.js";
import type * as helpers from "../helpers.js";
import type * as react from "../react.js";
import type * as registration from "../registration.js";
import type * as setup from "../setup.js";
import type * as validation from "../validation.js";

import type {
Expand All @@ -25,7 +27,9 @@ const fullApi: ApiFromModules<{
authentication: typeof authentication;
cleanup: typeof cleanup;
helpers: typeof helpers;
react: typeof react;
registration: typeof registration;
setup: typeof setup;
validation: typeof validation;
}> = anyApi as any;

Expand Down
Loading
Loading