Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

convex-ents

Package Overview
Dependencies
Maintainers
1
Versions
33
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

convex-ents - npm Package Compare versions

Comparing version 0.4.0 to 0.4.1

10

dist/deletion.js

@@ -251,3 +251,3 @@ "use strict";

"_creationTime",
cursor
cursor === null ? cursor : +cursor
)

@@ -264,12 +264,12 @@ );

const size = JSON.stringify((0, import_values.convexToJson)(doc)).length * 8;
if (bytesRead + size > maximumBytesRead) {
results.push(doc);
bytesRead += size;
if (bytesRead > maximumBytesRead) {
isDone = false;
break;
}
bytesRead += size;
results.push(doc);
}
return {
page: results,
continueCursor: results.length === 0 ? cursor : results[results.length - 1]._creationTime,
continueCursor: results.length === 0 ? cursor : "" + results[results.length - 1]._creationTime,
isDone,

@@ -276,0 +276,0 @@ bytesRead

@@ -1820,3 +1820,3 @@ "use strict";

"_creationTime",
cursor
cursor === null ? cursor : +cursor
)

@@ -1833,12 +1833,12 @@ );

const size = JSON.stringify((0, import_values2.convexToJson)(doc)).length * 8;
if (bytesRead + size > maximumBytesRead) {
results.push(doc);
bytesRead += size;
if (bytesRead > maximumBytesRead) {
isDone = false;
break;
}
bytesRead += size;
results.push(doc);
}
return {
page: results,
continueCursor: results.length === 0 ? cursor : results[results.length - 1]._creationTime,
continueCursor: results.length === 0 ? cursor : "" + results[results.length - 1]._creationTime,
isDone,

@@ -1845,0 +1845,0 @@ bytesRead

{
"name": "convex-ents",
"version": "0.4.0",
"version": "0.4.1",
"description": "Relations, default values, unique fields, RLS for Convex",

@@ -5,0 +5,0 @@ "keywords": [

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
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc