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

@balena/sbvr-types

Package Overview
Dependencies
Maintainers
3
Versions
222
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@balena/sbvr-types - npm Package Compare versions

Comparing version 7.0.6-build-renovate-major--balenalint-310cbc2b9486a8a925545c2f94d5ec9127755225-1 to 7.0.6

4

CHANGELOG.md

@@ -8,5 +8,5 @@ # Change Log

# v7.0.6
## (2024-03-13)
## (2024-03-21)
* Update dependency @balena/lint to v8 [Self-hosted Renovate Bot]
* Improve JSON typings [Pagan Gazzard]

@@ -13,0 +13,0 @@ # v7.0.5

@@ -10,4 +10,16 @@ import * as TypeUtils from '../type-utils';

};
type ReadType = Record<string, any> | any[];
type WriteType = Record<string, any> | any[];
type JSON = string | number | boolean | null | JSON[] | {
[key: string]: JSON;
};
type JSONable = string | number | boolean | null | undefined | JSONable[] | {
[key: string]: JSONable;
} | {
toJSON(): JSONable;
};
type ReadType = {
[key: string]: JSON;
} | JSON[];
type WriteType = {
[key: string]: JSONable;
} | JSONable[];
type DbWriteType = string;

@@ -14,0 +26,0 @@ export declare const fetchProcessing: TypeUtils.FetchProcessing<ReadType>;

{
"name": "@balena/sbvr-types",
"version": "7.0.6-build-renovate-major--balenalint-310cbc2b9486a8a925545c2f94d5ec9127755225-1",
"version": "7.0.6",
"description": "SBVR type definitions.",

@@ -24,3 +24,3 @@ "main": "out",

"@balena/abstract-sql-compiler": "^9.0.5",
"@balena/lint": "^8.0.0",
"@balena/lint": "^7.3.0",
"@types/bcrypt": "^5.0.2",

@@ -55,4 +55,4 @@ "@types/chai": "^4.3.12",

"versionist": {
"publishedAt": "2024-03-13T16:47:06.923Z"
"publishedAt": "2024-03-21T15:16:13.005Z"
}
}

@@ -12,4 +12,15 @@ import * as TypeUtils from '../type-utils';

type ReadType = Record<string, any> | any[];
type WriteType = Record<string, any> | any[];
type JSON = string | number | boolean | null | JSON[] | { [key: string]: JSON };
type JSONable =
| string
| number
| boolean
| null
| undefined
| JSONable[]
| { [key: string]: JSONable }
| { toJSON(): JSONable };
type ReadType = { [key: string]: JSON } | JSON[];
type WriteType = { [key: string]: JSONable } | JSONable[];
type DbWriteType = string;

@@ -16,0 +27,0 @@

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