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.5 to 7.0.6-build-json-typings-79b16efe57bb31a17c4df27e94e225bfee59bbdf-1

5

CHANGELOG.md

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

# v7.0.6
## (2024-03-21)
* Improve JSON typings [Pagan Gazzard]
# v7.0.5

@@ -9,0 +14,0 @@ ## (2024-03-13)

12

out/types/json.d.ts

@@ -10,4 +10,12 @@ 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 = JSON;
type WriteType = JSONable;
type DbWriteType = string;

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

4

package.json
{
"name": "@balena/sbvr-types",
"version": "7.0.5",
"version": "7.0.6-build-json-typings-79b16efe57bb31a17c4df27e94e225bfee59bbdf-1",
"description": "SBVR type definitions.",

@@ -54,4 +54,4 @@ "main": "out",

"versionist": {
"publishedAt": "2024-03-13T14:59:37.548Z"
"publishedAt": "2024-03-21T15:12:30.010Z"
}
}

@@ -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 = JSON;
type WriteType = 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