supertokens-node
    Preparing search index...

    Variable signIn

    signIn: (
        input: {
            credential: AuthenticationPayload;
            session: undefined | SessionContainer;
            shouldTryLinkingWithSessionUser: undefined | boolean;
            tenantId: string;
            userContext?: Record<string, any>;
            webauthnGeneratedOptionsId: string;
        },
    ) => Promise<
        | SignInErrorResponse
        | { recipeUserId: RecipeUserId; status: "OK"; user: User },
    > = Wrapper.signIn

    Type declaration

      • (
            input: {
                credential: AuthenticationPayload;
                session: undefined | SessionContainer;
                shouldTryLinkingWithSessionUser: undefined | boolean;
                tenantId: string;
                userContext?: Record<string, any>;
                webauthnGeneratedOptionsId: string;
            },
        ): Promise<
            | SignInErrorResponse
            | { recipeUserId: RecipeUserId; status: "OK"; user: User },
        >
      • Parameters

        • input: {
              credential: AuthenticationPayload;
              session: undefined | SessionContainer;
              shouldTryLinkingWithSessionUser: undefined | boolean;
              tenantId: string;
              userContext?: Record<string, any>;
              webauthnGeneratedOptionsId: string;
          }

        Returns Promise<
            | SignInErrorResponse
            | { recipeUserId: RecipeUserId; status: "OK"; user: User },
        >