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

ronin

Package Overview
Dependencies
Maintainers
4
Versions
1885
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

ronin - npm Package Compare versions

Comparing version 5.3.15-corny-ron-1071-experimental-449 to 5.3.15-leo-ron-1097-experimental-450

66

dist/index.js

@@ -33,35 +33,35 @@ import {

// Query types for interacting with records.
get: getSyntaxProxy(
"get",
(query, queryOptions) => queryHandler(query, mergeOptions(options, queryOptions))
),
set: getSyntaxProxy(
"set",
(query, queryOptions) => queryHandler(query, mergeOptions(options, queryOptions))
),
add: getSyntaxProxy(
"add",
(query, queryOptions) => queryHandler(query, mergeOptions(options, queryOptions))
),
remove: getSyntaxProxy(
"remove",
(query, queryOptions) => queryHandler(query, mergeOptions(options, queryOptions))
),
count: getSyntaxProxy(
"count",
(query, queryOptions) => queryHandler(query, mergeOptions(options, queryOptions))
),
get: getSyntaxProxy({
rootProperty: "get",
callback: (query, queryOptions) => queryHandler(query, mergeOptions(options, queryOptions))
}),
set: getSyntaxProxy({
rootProperty: "set",
callback: (query, queryOptions) => queryHandler(query, mergeOptions(options, queryOptions))
}),
add: getSyntaxProxy({
rootProperty: "add",
callback: (query, queryOptions) => queryHandler(query, mergeOptions(options, queryOptions))
}),
remove: getSyntaxProxy({
rootProperty: "remove",
callback: (query, queryOptions) => queryHandler(query, mergeOptions(options, queryOptions))
}),
count: getSyntaxProxy({
rootProperty: "count",
callback: (query, queryOptions) => queryHandler(query, mergeOptions(options, queryOptions))
}),
// Query types for interacting with the database schema.
create: getSyntaxProxy(
"create",
(query, queryOptions) => queryHandler(query, mergeOptions(options, queryOptions))
),
alter: getSyntaxProxy(
"alter",
(query, queryOptions) => queryHandler(query, mergeOptions(options, queryOptions))
),
drop: getSyntaxProxy(
"drop",
(query, queryOptions) => queryHandler(query, mergeOptions(options, queryOptions))
),
create: getSyntaxProxy({
rootProperty: "create",
callback: (query, queryOptions) => queryHandler(query, mergeOptions(options, queryOptions))
}),
alter: getSyntaxProxy({
rootProperty: "alter",
callback: (query, queryOptions) => queryHandler(query, mergeOptions(options, queryOptions))
}),
drop: getSyntaxProxy({
rootProperty: "drop",
callback: (query, queryOptions) => queryHandler(query, mergeOptions(options, queryOptions))
}),
// Function for executing a transaction containing multiple queries.

@@ -72,3 +72,3 @@ batch: (operations, batchQueryOptions) => getBatchProxy(

(queries, queryOptions) => queriesHandler(
queries.map(({ query }) => query),
queries.map(({ structure }) => structure),
mergeOptions(options, batchQueryOptions, queryOptions)

@@ -75,0 +75,0 @@ )

{
"name": "ronin",
"version": "5.3.15-corny-ron-1071-experimental-449",
"version": "5.3.15-leo-ron-1097-experimental-450",
"type": "module",

@@ -73,3 +73,3 @@ "license": "Apache-2.0",

"@ronin/compiler": "0.13.9",
"@ronin/syntax": "0.1.9"
"@ronin/syntax": "0.1.10"
},

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

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