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

@balena/sbvr-types

Package Overview
Dependencies
Maintainers
1
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 3.4.8 to 3.4.9-web-resource-2-0e2ba170aeaab684f6c37f00ebf9c49606abea6e-1

out/storage-adapters/DiskStorageAdapter.d.ts

5

CHANGELOG.md

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

# v3.4.9
## (2022-11-15)
* Add WebResource [Ramiro González Maciel]
# v3.4.8

@@ -9,0 +14,0 @@ ## (2022-10-14)

2

out/index.js

@@ -21,2 +21,3 @@ "use strict";

const Time = require("./types/time");
const WebResource = require("./types/web-resource");
module.exports = {

@@ -42,3 +43,4 @@ 'Big Integer': BigInteger,

Time,
WebResource,
};
//# sourceMappingURL=index.js.map

2

out/types/file.js

@@ -27,3 +27,3 @@ "use strict";

try {
return new Buffer(value, 'hex');
return Buffer.from(value, 'hex');
}

@@ -30,0 +30,0 @@ catch (e) {

{
"name": "@balena/sbvr-types",
"version": "3.4.8",
"version": "3.4.9-web-resource-2-0e2ba170aeaab684f6c37f00ebf9c49606abea6e-1",
"description": "SBVR type definitions.",

@@ -10,2 +10,4 @@ "main": "out",

"test": "mocha",
"test-web-resource": "mocha -g WebResource",
"test-storage": "mocha -g S3StorageAdapter",
"posttest": "npm run lint",

@@ -20,4 +22,8 @@ "prepublish": "require-npm4-to-publish",

"dependencies": {
"@aws-sdk/client-s3": "^3.208.0",
"@aws-sdk/url-parser": "^3.208.0",
"@types/bcrypt": "^5.0.0",
"@types/sha.js": "^2.4.0"
"@types/sha.js": "^2.4.0",
"lodash": "^4.17.21",
"uuidv4": "^6.2.13"
},

@@ -45,4 +51,4 @@ "optionalDependencies": {

"require-npm4-to-publish": "^1.0.0",
"ts-node": "^10.7.0",
"typescript": "^4.6.3"
"ts-node": "^10.9.1",
"typescript": "^4.7.4"
},

@@ -69,4 +75,4 @@ "husky": {

"versionist": {
"publishedAt": "2022-10-14T16:22:39.500Z"
"publishedAt": "2022-11-15T16:18:18.744Z"
}
}

@@ -22,2 +22,3 @@ import type { SbvrType } from './type-utils';

import * as Time from './types/time';
import * as WebResource from './types/web-resource';

@@ -44,2 +45,3 @@ export = {

Time,
WebResource,
} as {

@@ -46,0 +48,0 @@ Hashed: SbvrType & {

@@ -29,3 +29,3 @@ import * as TypeUtils from '../type-utils';

try {
return new Buffer(value, 'hex');
return Buffer.from(value, 'hex');
} catch (e: any) {

@@ -32,0 +32,0 @@ throw new Error(`could not be converted to binary: ${e.message}`);

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

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