@balena/sbvr-types
Advanced tools
Comparing version 7.1.0-build-read-write-types-267ce13b86b97a1b2b05f958848b0eb5fc196f08-1 to 7.1.0-build-read-write-types-66b9a012e242533372ce34a73e31f6e3aac93d91-1
@@ -8,6 +8,27 @@ # Change Log | ||
# v7.1.0 | ||
## (2024-03-22) | ||
## (2024-04-17) | ||
* Export typescript read/write types for each sbvr type [Pagan Gazzard] | ||
# v7.0.10 | ||
## (2024-04-09) | ||
* Update Big Serial concept type to Big Integer [Josh Bowling] | ||
# v7.0.9 | ||
## (2024-04-09) | ||
* Add Big Serial to Type.sbvr [Josh Bowling] | ||
# v7.0.8 | ||
## (2024-04-09) | ||
* Update prepare script for husky v9 [Josh Bowling] | ||
* Update dependency husky to v9 [Self-hosted Renovate Bot] | ||
# v7.0.7 | ||
## (2024-04-09) | ||
* Update dependency @balena/lint to v8 [Self-hosted Renovate Bot] | ||
# v7.0.6 | ||
@@ -14,0 +35,0 @@ ## (2024-03-21) |
{ | ||
"name": "@balena/sbvr-types", | ||
"version": "7.1.0-build-read-write-types-267ce13b86b97a1b2b05f958848b0eb5fc196f08-1", | ||
"version": "7.1.0-build-read-write-types-66b9a012e242533372ce34a73e31f6e3aac93d91-1", | ||
"description": "SBVR type definitions.", | ||
@@ -12,3 +12,3 @@ "main": "out", | ||
"posttest": "npm run lint", | ||
"prepare": "node -e \"try { require('husky').install() } catch (e) {if (e.code !== 'MODULE_NOT_FOUND') throw e}\" && tsc" | ||
"prepare": "node -e \"try { (await import('husky')).default() } catch (e) { if (e.code !== 'ERR_MODULE_NOT_FOUND') throw e }\" --input-type module && tsc" | ||
}, | ||
@@ -25,3 +25,3 @@ "repository": "https://github.com/balena-io-modules/sbvr-types.git", | ||
"@balena/abstract-sql-compiler": "^9.0.5", | ||
"@balena/lint": "^7.3.0", | ||
"@balena/lint": "^8.0.0", | ||
"@types/bcrypt": "^5.0.2", | ||
@@ -34,3 +34,3 @@ "@types/chai": "^4.3.12", | ||
"chai-datetime": "^1.8.0", | ||
"husky": "^8.0.3", | ||
"husky": "^9.0.0", | ||
"lint-staged": "^15.2.2", | ||
@@ -57,4 +57,4 @@ "mocha": "^10.3.0", | ||
"versionist": { | ||
"publishedAt": "2024-03-22T18:02:36.658Z" | ||
"publishedAt": "2024-04-17T17:17:22.131Z" | ||
} | ||
} |
@@ -78,2 +78,4 @@ import type { SbvrType } from './type-utils'; | ||
} satisfies { | ||
[fieldType in keyof Types]: SbvrType; | ||
} & { | ||
Hashed: SbvrType & { | ||
@@ -86,3 +88,2 @@ compare: (str: string, hash: string) => Promise<boolean>; | ||
}; | ||
[fieldType: string]: SbvrType; | ||
}; |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
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
147900
2284