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

@ronin/compiler

Package Overview
Dependencies
Maintainers
0
Versions
361
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@ronin/compiler - npm Package Compare versions

Comparing version 0.13.4-leo-ron-1071-experimental-295 to 0.13.4-leo-ron-1071-experimental-296

17

dist/index.d.ts

@@ -152,4 +152,2 @@ /**

type ModelFieldBasics = {
/** The kind of value that should be stored inside the field. */
type?: 'boolean' | 'date' | 'json';
/** The label that should be used when displaying the field on the RONIN dashboard. */

@@ -188,10 +186,13 @@ name?: string;

};
type ModelField = ModelFieldBasics | (Omit<ModelFieldBasics, 'type'> & {
type ModelField = (ModelFieldBasics & {
/** The kind of value that should be stored inside the field. */
type: 'string';
type?: 'boolean' | 'date' | 'json';
}) | (ModelFieldBasics & {
/** The kind of value that should be stored inside the field. */
type?: 'string';
/** The collation sequence to use for the field value. */
collation?: ModelFieldCollation;
}) | (Omit<ModelFieldBasics, 'type'> & {
}) | (ModelFieldBasics & {
/** The kind of value that should be stored inside the field. */
type: 'number';
type?: 'number';
/**

@@ -201,5 +202,5 @@ * Automatically increments the value of the field with every new inserted record.

increment?: boolean;
}) | (Omit<ModelFieldBasics, 'type'> & {
}) | (ModelFieldBasics & {
/** The kind of value that should be stored inside the field. */
type: 'link';
type?: 'link';
/** The target model of the relationship that is being established. */

@@ -206,0 +207,0 @@ target: string;

{
"name": "@ronin/compiler",
"version": "0.13.4-leo-ron-1071-experimental-295",
"version": "0.13.4-leo-ron-1071-experimental-296",
"type": "module",

@@ -5,0 +5,0 @@ "description": "Compiles RONIN queries to SQL statements.",

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