Comparing version 5.3.15-corny-ron-1071-experimental-449 to 5.3.15-leo-ron-1097-experimental-450
@@ -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": { |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
68385
+ Added@ronin/syntax@0.1.10(transitive)
- Removed@ronin/syntax@0.1.9(transitive)
Updated@ronin/syntax@0.1.10