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

remult

Package Overview
Dependencies
Maintainers
0
Versions
623
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

remult - npm Package Compare versions

Comparing version 0.27.24-next.1 to 0.27.24-next.2

3

esm/src/data-api.js

@@ -176,2 +176,5 @@ import { doTransaction } from './context.js';

async groupBy(request, body) {
if (!this.repository.metadata.apiReadAllowed) {
throw new ForbiddenError();
}
let findOptions = await this.findOptionsFromRequest(request, body);

@@ -178,0 +181,0 @@ let orderBy = {};

2

package.json
{
"name": "remult",
"version": "0.27.24-next.1",
"version": "0.27.24-next.2",
"description": "A CRUD framework for full-stack TypeScript",

@@ -5,0 +5,0 @@ "homepage": "https://remult.dev",

@@ -357,3 +357,7 @@ "use strict";

switch (_m.label) {
case 0: return [4 /*yield*/, this.findOptionsFromRequest(request, body)];
case 0:
if (!this.repository.metadata.apiReadAllowed) {
throw new server_action_js_1.ForbiddenError();
}
return [4 /*yield*/, this.findOptionsFromRequest(request, body)];
case 1:

@@ -360,0 +364,0 @@ findOptions = _m.sent();

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