Socket
Socket
Sign inDemoInstall

@convex-dev/server

Package Overview
Dependencies
48
Maintainers
6
Versions
15
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

Comparing version 0.0.50 to 0.0.51

4

.rush/temp/package-deps_build.json

@@ -6,3 +6,3 @@ {

"@convex-dev/server/bundle-server.mjs": "e0b43e24896aa93c7db552a15c0b441100e7ea60",
"@convex-dev/server/package.json": "5679465ffd041b34711644b02db0ff262c6c039d",
"@convex-dev/server/package.json": "bb7e36e02e854fd85429de38e28ca95476b3391e",
"@convex-dev/server/src/authentication.ts": "ba9a820cdfc86a97a1e2faee014dae6b50f98e38",

@@ -12,3 +12,3 @@ "@convex-dev/server/src/database.ts": "762e6fd481a93e277a879404bd8b2368e313709c",

"@convex-dev/server/src/query.ts": "45e20e085d93beca60ae2001ec69a74db264385b",
"@convex-dev/server/src/stubs.ts": "aeb7f5aa87fe42e7aa66d6c174c81589bc28391c",
"@convex-dev/server/src/stubs.ts": "8e225a8a94a66ba84a39459e269dbb5ecd30e1ee",
"@convex-dev/server/tsconfig.json": "967ae5e971ce0fc63161f4e52071254035d9ba01",

@@ -15,0 +15,0 @@ "@convex-dev/server/typedoc.json": "5af67100fedbcd0bd56cd129fdd2047677518281",

@@ -1,5 +0,5 @@

function readerStub(...args) {
function readerStub() {
throw new Error("DatabaseReader used outside of a Convex backend. Did you mean to use `ReactClient.query`?");
}
function writerStub(...args) {
function writerStub() {
throw new Error("DatabaseWriter used outside of a Convex backend. Did you mean to use `ReactClient.mutation`?");

@@ -6,0 +6,0 @@ }

{
"name": "@convex-dev/server",
"version": "0.0.50",
"version": "0.0.51",
"description": "",

@@ -16,4 +16,4 @@ "main": "./dist/index.js",

"typedoc": "^0.22.10",
"@convex-dev/bundler": "0.0.50",
"@convex-dev/common": "0.0.50"
"@convex-dev/bundler": "0.0.51",
"@convex-dev/common": "0.0.51"
},

@@ -20,0 +20,0 @@ "devDependencies": {

@@ -1,5 +0,5 @@

import { DatabaseReader, DatabaseWriter, Table, TableName } from "./database";
import { DatabaseReader, DatabaseWriter } from "./database";
import { Auth } from "./authentication";
function readerStub(...args: any[]): any {
function readerStub(): any {
throw new Error(

@@ -10,3 +10,3 @@ "DatabaseReader used outside of a Convex backend. Did you mean to use `ReactClient.query`?"

function writerStub(...args: any[]): any {
function writerStub(): any {
throw new Error(

@@ -13,0 +13,0 @@ "DatabaseWriter used outside of a Convex backend. Did you mean to use `ReactClient.mutation`?"

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

SocketSocket SOC 2 Logo

Product

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

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc