New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

convex-helpers

Package Overview
Dependencies
Maintainers
1
Versions
144
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

convex-helpers - npm Package Compare versions

Comparing version 0.1.9 to 0.1.10-alpha.0

dist/react/sessions.d.ts

1

dist/server/customFunctions.d.ts

@@ -256,3 +256,2 @@ /**

type CustomBuilder<FuncType extends "query" | "mutation" | "action", ModArgsValidator extends PropertyValidators, ModCtx extends Record<string, any>, ModMadeArgs extends Record<string, any>, InputCtx, Visibility extends FunctionVisibility> = ModArgsValidator extends EmptyObject ? ValidatedBuilder<FuncType, ModArgsValidator, ModCtx, ModMadeArgs, InputCtx, Visibility> & UnvalidatedBuilder<FuncType, ModCtx, ModMadeArgs, InputCtx, Visibility> : ValidatedBuilder<FuncType, ModArgsValidator, ModCtx, ModMadeArgs, InputCtx, Visibility>;
export type CustomCtx<Builder> = Builder extends ValidatedBuilder<any, any, infer ModCtx, any, infer InputCtx, any> ? Overwrite<InputCtx, ModCtx> : never;
type Overwrite<T, U> = Omit<T, keyof U> & U;

@@ -259,0 +258,0 @@ type EmptyObject = Record<string, never>;

{
"name": "convex-helpers",
"version": "0.1.9",
"version": "0.1.10-alpha.0",
"description": "A collection of useful code to complement the official convex package.",
"exports": {
".": "./dist/index.js",
"./react": "./dist/react/index.js",
"./react*": "./dist/react*",
"./react/sessions": "./dist/react/sessions.js",
"./server": "./dist/server/index.js",
"./server*": "./dist/server*",
"./server/customFunctions": "./dist/server/customFunctions.js",
"./server/middlewareUtils": "./dist/server/middlewareUtils.js",
"./server/rowLevelSecurity": "./dist/server/rowLevelSecurity.js",
"./server/relationships": "./dist/server/relationships.js",
"./server/customFunctions": "./dist/server/customFunctions.js",
"./server/sessions": "./dist/server/sessions.js",
"./server/zod": "./dist/server/zod.js"

@@ -17,2 +22,3 @@ },

"index.ts",
"react",
"server"

@@ -42,5 +48,14 @@ ],

"peerDependencies": {
"convex": "^1.6.3",
"convex": "^1.7.1",
"react": "^17.0.2 || ^18.0.0",
"zod": "^3.22.4"
},
"peerDependenciesMeta": {
"react": {
"optional": true
},
"zod": {
"optional": true
}
},
"devDependencies": {

@@ -47,0 +62,0 @@ "chokidar-cli": "^3.0.0",

@@ -541,13 +541,2 @@ /**

export type CustomCtx<Builder> = Builder extends ValidatedBuilder<
any,
any,
infer ModCtx,
any,
infer InputCtx,
any
>
? Overwrite<InputCtx, ModCtx>
: never;
type Overwrite<T, U> = Omit<T, keyof U> & U;

@@ -554,0 +543,0 @@ // Copied from convex/server since they weren't exported

Sorry, the diff of this file is not supported yet

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc