convex-js icon indicating copy to clipboard operation
convex-js copied to clipboard

TypeScript/JavaScript client library for Convex

Results 68 convex-js issues
Sort by recently updated
recently updated
newest added

Hey, thanks for Convex! it's just wonderful. One thing I noticed related to Values and Validator, which took me some time to debug: ``` import { v } from 'convex/values';...

I'm hitting a corner case in my application that causes Convex queries to fail when the JWT access token changes. My setup is roughly: 1) User changes their password. 2)...

I have a local convex deployment that I am unable to connect to the mcp server. I started the dev server with: `npx convex dev --local` I added the mcp...

bug

Hi, Being trying to make Supabase auth work with convex but haven't succeeded. It looks like Supabase domain is not hosting a ${domain}/.well-known/openid-configuration file. Is there anything that the Convex...

## Enhancement request It would be nice to have some better support for using the `preloadQuery` to fetch authenticated requests. ## Problem The issue arises when fetching authenticated data (using...

## Summary Allow Convex CLI to save CONVEX_DEPLOYMENT on init to a custom .env file. This would enable a user using a custom env file, e.g. `convex dev --env-file .env.dev`...

https://github.com/get-convex/convex-js/blob/dcf514eecd46890c8bec9ee4e2b0c2cdd9c6b272/src/browser/simple_client.ts#L165-L170 When calling `unsubscribe` returned from `onUpdate` the query's cache is cleared right away. https://github.com/get-convex/convex-js/blob/dcf514eecd46890c8bec9ee4e2b0c2cdd9c6b272/src/browser/sync/local_state.ts#L349-L383 It would be nice to be able to specify how long the cache should stay...

Currently `args` are still required even though all of it's properties are optional, this change adds `IsOptionalKey` and `AreAllPropertiesOptional` util types, and use it to achieve "truly necessary requirement only"...

This pull request optimizes `ApiFromModules` and adds type-level benchmarks using [`@ark/attest`](https://github.com/arktypeio/arktype/tree/main/ark/attest#readme) so that they can be tested and added to CI if desired. A large portion of the diff will...