Big News: Socket raises $60M Series C at a $1B valuation to secure software supply chains for AI-driven development.Announcement
Sign In

@ot-builder/bin-composite-types

Package Overview
Dependencies
Maintainers
1
Versions
81
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@ot-builder/bin-composite-types - npm Package Compare versions

Comparing version
1.1.0
to
1.1.1
+16
-1
CHANGELOG.json

@@ -5,3 +5,18 @@ {

{
"date": "Sun, 18 Jul 2021 02:11:53 GMT",
"date": "Sat, 11 Sep 2021 01:06:55 GMT",
"tag": "@ot-builder/bin-composite-types_v1.1.1",
"version": "1.1.1",
"comments": {
"patch": [
{
"author": "otbbuilder-dev@users.noreply.github.com",
"package": "@ot-builder/bin-composite-types",
"commit": "28bc4c48910f10dcabb090ab68e610ce499caa95",
"comment": "Bump @ot-builder/bin-composite-types to v1.1.1"
}
]
}
},
{
"date": "Sun, 18 Jul 2021 02:14:19 GMT",
"tag": "@ot-builder/bin-composite-types_v1.1.0",

@@ -8,0 +23,0 @@ "version": "1.1.0",

# Change Log - @ot-builder/bin-composite-types
This log was last generated on Sun, 18 Jul 2021 02:11:53 GMT and should not be manually modified.
This log was last generated on Sat, 11 Sep 2021 01:06:55 GMT and should not be manually modified.
<!-- Start content -->
## 1.1.1
Sat, 11 Sep 2021 01:06:55 GMT
### Patches
- Bump @ot-builder/bin-composite-types to v1.1.1 (otbbuilder-dev@users.noreply.github.com)
## 1.1.0
Sun, 18 Jul 2021 02:11:53 GMT
Sun, 18 Jul 2021 02:14:19 GMT

@@ -11,0 +19,0 @@ ### Minor changes

+3
-3
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
const tslib_1 = require("tslib");
tslib_1.__exportStar(require("./ptr"), exports);
tslib_1.__exportStar(require("./simple-array"), exports);
tslib_1.__exportStar(require("./long-date-time"), exports);
(0, tslib_1.__exportStar)(require("./ptr"), exports);
(0, tslib_1.__exportStar)(require("./simple-array"), exports);
(0, tslib_1.__exportStar)(require("./long-date-time"), exports);
//# sourceMappingURL=index.js.map

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

exports.LongDateTime = {
...bin_util_1.Read(view => {
...(0, bin_util_1.Read)(view => {
const high = view.uint32();

@@ -14,3 +14,3 @@ const low = view.uint32();

}),
...bin_util_1.Write((fr, date) => {
...(0, bin_util_1.Write)((fr, date) => {
const time = Math.round((date.getTime() - OtBaseEpoch) / 1000);

@@ -17,0 +17,0 @@ const high = (time / Power2To32) >>> 0;

{
"name": "@ot-builder/bin-composite-types",
"version": "1.1.0",
"version": "1.1.1",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/ot-builder/monorepo.git",
"directory": "packages/bin-composite-types"
},
"main": "./lib/index.js",
"types": "./lib/index.d.ts",
"files": [
"lib/**/*.js",
"lib/**/*.json",
"lib/**/*.d.ts"
],
"scripts": {

@@ -16,5 +26,5 @@ "build": "tsc -b ./tsconfig.package.json",

"dependencies": {
"@ot-builder/bin-util": "1.1.0",
"@ot-builder/errors": "1.1.0",
"@ot-builder/prelude": "1.1.0",
"@ot-builder/bin-util": "1.1.1",
"@ot-builder/errors": "1.1.1",
"@ot-builder/prelude": "1.1.1",
"tslib": "^2.0.0"

@@ -21,0 +31,0 @@ },