@balena/sbvr-types
Advanced tools
Comparing version 3.5.0-web-resource-2-826282f7d61d0004e5edfd34565a90dd9b5096b0-1 to 3.5.0
@@ -8,6 +8,33 @@ # Change Log | ||
# v3.5.0 | ||
## (2022-11-17) | ||
## (2023-03-21) | ||
* Create WebResource [Ramiro González Maciel] | ||
* Add Big Serial type [Josh Bowling] | ||
# v3.4.19 | ||
## (2022-12-08) | ||
* Flowzone: Allow external contributions [Josh Bowling] | ||
# v3.4.18 | ||
## (2022-11-25) | ||
* Tests: remove chai-as-promised [Pagan Gazzard] | ||
* Tests: remove bluebird [Pagan Gazzard] | ||
* Tests: remove lodash [Pagan Gazzard] | ||
# v3.4.17 | ||
## (2022-11-25) | ||
* Update dependencies [Pagan Gazzard] | ||
# v3.4.16 | ||
## (2022-11-25) | ||
* Switch from `new Buffer` to `Buffer.from` to avoid deprecation warnings [Pagan Gazzard] | ||
# v3.4.15 | ||
## (2022-11-18) | ||
* Dev: Migrate husky setup for v8 [Josh Bowling] | ||
# v3.4.14 | ||
@@ -14,0 +41,0 @@ ## (2022-11-17) |
"use strict"; | ||
const BigInteger = require("./types/big-integer"); | ||
const BigSerial = require("./types/big-serial"); | ||
const Boolean = require("./types/boolean"); | ||
@@ -21,5 +22,5 @@ const CaseInsensitiveText = require("./types/case-insensitive-text"); | ||
const Time = require("./types/time"); | ||
const WebResource = require("./types/web-resource"); | ||
module.exports = { | ||
'Big Integer': BigInteger, | ||
'Big Serial': BigSerial, | ||
Boolean, | ||
@@ -43,4 +44,3 @@ 'Case Insensitive Text': CaseInsensitiveText, | ||
Time, | ||
WebResource, | ||
}; | ||
//# sourceMappingURL=index.js.map |
{ | ||
"name": "@balena/sbvr-types", | ||
"version": "3.5.0-web-resource-2-826282f7d61d0004e5edfd34565a90dd9b5096b0-1", | ||
"version": "3.5.0", | ||
"description": "SBVR type definitions.", | ||
@@ -11,6 +11,5 @@ "main": "out", | ||
"test": "mocha", | ||
"test-web-resource": "mocha -g WebResource", | ||
"posttest": "npm run lint", | ||
"prepublish": "require-npm4-to-publish", | ||
"prepare": "tsc", | ||
"prepare": "node -e \"try { require('husky').install() } catch (e) {if (e.code !== 'MODULE_NOT_FOUND') throw e}\" && tsc", | ||
"prettify": "balena-lint -e js -e ts --fix src test" | ||
@@ -21,5 +20,4 @@ }, | ||
"license": "BSD", | ||
"dependencies": {}, | ||
"optionalDependencies": { | ||
"bcrypt": "^5.0.1", | ||
"bcrypt": "^5.1.0", | ||
"bcryptjs": "^2.4.3", | ||
@@ -29,27 +27,17 @@ "sha.js": "^2.4.11" | ||
"devDependencies": { | ||
"@balena/lint": "^6.2.0", | ||
"@balena/lint": "^6.2.1", | ||
"@types/bcrypt": "^5.0.0", | ||
"@types/chai": "^4.3.0", | ||
"@types/chai-as-promised": "^7.1.5", | ||
"@types/chai": "^4.3.4", | ||
"@types/chai-datetime": "^0.0.37", | ||
"@types/lodash": "^4.14.181", | ||
"@types/mocha": "^10.0.0", | ||
"@types/sha.js": "^2.4.0", | ||
"bluebird": "^3.7.2", | ||
"chai": "^4.3.6", | ||
"chai-as-promised": "^7.1.1", | ||
"chai": "^4.3.7", | ||
"chai-datetime": "^1.8.0", | ||
"husky": "^8.0.0", | ||
"lint-staged": "^13.0.0", | ||
"lodash": "^4.17.21", | ||
"mocha": "^10.0.0", | ||
"husky": "^8.0.2", | ||
"lint-staged": "^13.0.4", | ||
"mocha": "^10.1.0", | ||
"require-npm4-to-publish": "^1.0.0", | ||
"ts-node": "^10.9.1", | ||
"typescript": "^4.7.4" | ||
"typescript": "^4.9.3" | ||
}, | ||
"husky": { | ||
"hooks": { | ||
"pre-commit": "lint-staged" | ||
} | ||
}, | ||
"lint-staged": { | ||
@@ -70,4 +58,4 @@ "*.ts": [ | ||
"versionist": { | ||
"publishedAt": "2022-11-17T23:42:15.850Z" | ||
"publishedAt": "2023-03-21T11:12:17.048Z" | ||
} | ||
} |
import type { SbvrType } from './type-utils'; | ||
import * as BigInteger from './types/big-integer'; | ||
import * as BigSerial from './types/big-serial'; | ||
import * as Boolean from './types/boolean'; | ||
@@ -22,6 +23,6 @@ import * as CaseInsensitiveText from './types/case-insensitive-text'; | ||
import * as Time from './types/time'; | ||
import * as WebResource from './types/web-resource'; | ||
export = { | ||
'Big Integer': BigInteger, | ||
'Big Serial': BigSerial, | ||
Boolean, | ||
@@ -45,3 +46,2 @@ 'Case Insensitive Text': CaseInsensitiveText, | ||
Time, | ||
WebResource, | ||
} as { | ||
@@ -48,0 +48,0 @@ Hashed: 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
No v1
QualityPackage is not semver >=1. This means it is not stable and does not support ^ ranges.
Found 1 instance in 1 package
14
1
112048
97
1694