@balena/sbvr-types
Advanced tools
Comparing version 7.0.6-build-renovate-major--balenalint-310cbc2b9486a8a925545c2f94d5ec9127755225-1 to 7.0.6
@@ -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
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
No v1
QualityPackage is not semver >=1. This means it is not stable and does not support ^ ranges.
Found 1 instance in 1 package
142761
2226
1