New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

@dataui/crud-request

Package Overview
Dependencies
Maintainers
1
Versions
26
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@dataui/crud-request - npm Package Compare versions

Comparing version 5.1.4-alpha.3 to 5.1.4-alpha.4

18

lib/types/request-query.types.d.ts

@@ -74,2 +74,3 @@ export declare type QueryFields = string[];

$and?: never;
$not?: never;
}

@@ -80,12 +81,19 @@ export declare type SField = SPrimitivesVal | SFieldOperator | {

export interface SFields {
[key: string]: SField | Array<SFields | SConditionAND> | undefined;
$or?: Array<SFields | SConditionAND>;
[key: string]: SField | Array<SFields | SConditionAND | SConditionNOT> | undefined;
$or?: Array<SFields | SConditionAND | SConditionNOT>;
$and?: never;
$not?: never;
}
export interface SConditionAND {
$and?: Array<SFields | SConditionAND>;
$and?: Array<SFields | SConditionAND | SConditionNOT>;
$or?: never;
$not?: never;
}
export declare type SConditionKey = '$and' | '$or';
export declare type SCondition = SFields | SConditionAND;
export interface SConditionNOT {
$and?: never;
$or?: never;
$not: Array<SFields | SConditionAND | SConditionNOT>;
}
export declare type SConditionKey = '$and' | '$or' | '$not';
export declare type SCondition = SFields | SConditionAND | SConditionNOT;
export {};
{
"name": "@dataui/crud-request",
"description": "NestJs CRUD for RESTful APIs - request query builder",
"version": "5.1.4-alpha.3",
"version": "5.1.4-alpha.4",
"license": "MIT",

@@ -51,6 +51,6 @@ "main": "lib/index.js",

"dependencies": {
"@dataui/crud-util": "5.1.4-alpha.3",
"@dataui/crud-util": "^5.1.4-alpha.4",
"qs": "^6.8.0"
},
"gitHead": "4a7dc66a7708a0e0e6263fcc0f1c1ceef7685e71"
"gitHead": "0aa0593b75a4b13e5d13693c57345a020095eda5"
}
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