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

@balena/abstract-sql-to-typescript

Package Overview
Dependencies
Maintainers
0
Versions
240
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@balena/abstract-sql-to-typescript - npm Package Compare versions

Comparing version 4.0.6 to 4.0.7-build-export-model-standalone-instead-of-just-default-fc8c469334711d70e94c2b6f48d952f87d365bab-1

4

CHANGELOG.md

@@ -7,2 +7,6 @@ # Change Log

## 4.0.7 - 2024-09-19
* Export $Model as a property alongs being the default export [Otavio Jacobi]
## 4.0.6 - 2024-09-12

@@ -9,0 +13,0 @@

4

out/package.json
{
"name": "@balena/abstract-sql-to-typescript",
"version": "4.0.6",
"version": "4.0.7",
"description": "A translator for abstract sql into typescript types.",

@@ -56,4 +56,4 @@ "main": "out/index.js",

"versionist": {
"publishedAt": "2024-09-12T16:37:15.381Z"
"publishedAt": "2024-09-19T15:50:02.350Z"
}
}

@@ -153,3 +153,3 @@ "use strict";

export default interface $Model {
export interface $Model {
${Object.keys(m.tables)

@@ -163,2 +163,4 @@ .map((tableName) => ` ${(0, odata_to_abstract_sql_1.sqlNameToODataName)(tableName)}: ${modelNameToCamelCaseName(m.tables[tableName].name)};`)

}
export default $Model;
`;

@@ -165,0 +167,0 @@ };

{
"name": "@balena/abstract-sql-to-typescript",
"version": "4.0.6",
"version": "4.0.7-build-export-model-standalone-instead-of-just-default-fc8c469334711d70e94c2b6f48d952f87d365bab-1",
"description": "A translator for abstract sql into typescript types.",

@@ -56,4 +56,4 @@ "main": "out/index.js",

"versionist": {
"publishedAt": "2024-09-12T16:37:15.381Z"
"publishedAt": "2024-09-19T15:50:02.350Z"
}
}

@@ -253,3 +253,3 @@ import type {

export default interface $Model {
export interface $Model {
${Object.keys(m.tables)

@@ -269,3 +269,5 @@ .map(

}
export default $Model;
`;
};

@@ -39,7 +39,10 @@ import type { AbstractSqlModel } from '@balena/abstract-sql-compiler';

export default interface $Model {
export interface $Model {
}`,
}
export default $Model;
`,
);

@@ -380,3 +383,3 @@

export default interface $Model {
export interface $Model {
parent: Parent;

@@ -389,3 +392,5 @@ other: Other;

}
export default $Model;
`,
);

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

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