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

@boundaryml/baml

Package Overview
Dependencies
Maintainers
3
Versions
81
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@boundaryml/baml - npm Package Compare versions

Comparing version 0.0.13 to 0.0.14

11

async_context_vars.js

@@ -22,3 +22,12 @@ "use strict";

get() {
return this.ctx.getStore();
let store = this.ctx.getStore();
if (store === undefined) {
console.log('Creating new context manager');
store = this.rt.createContextManager();
this.ctx.enterWith(store);
}
else {
console.log('Reusing existing context manager');
}
return store;
}

@@ -25,0 +34,0 @@ startTraceSync(name, args) {

14

package.json
{
"name": "@boundaryml/baml",
"version": "0.0.13",
"version": "0.0.14",
"description": "BAML typescript bindings (package.json)",

@@ -79,9 +79,9 @@ "repository": {

"optionalDependencies": {
"@boundaryml/baml-darwin-arm64": "0.0.13",
"@boundaryml/baml-win32-arm64-msvc": "0.0.13",
"@boundaryml/baml-linux-arm64-gnu": "0.0.13",
"@boundaryml/baml-darwin-x64": "0.0.13",
"@boundaryml/baml-win32-x64-msvc": "0.0.13",
"@boundaryml/baml-linux-x64-gnu": "0.0.13"
"@boundaryml/baml-darwin-arm64": "0.0.14",
"@boundaryml/baml-win32-arm64-msvc": "0.0.14",
"@boundaryml/baml-linux-arm64-gnu": "0.0.14",
"@boundaryml/baml-darwin-x64": "0.0.14",
"@boundaryml/baml-win32-x64-msvc": "0.0.14",
"@boundaryml/baml-linux-x64-gnu": "0.0.14"
}
}

@@ -1,2 +0,2 @@

import { FunctionResultPy, FunctionResultStreamPy, RuntimeContextManagerPy } from '../native';
import { FunctionResultPy, FunctionResultStreamPy, RuntimeContextManagerPy } from './native';
export declare class BamlStream<PartialOutputType, FinalOutputType> {

@@ -3,0 +3,0 @@ private ffiStream;

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