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

node-wit

Package Overview
Dependencies
Maintainers
4
Versions
30
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

node-wit - npm Package Compare versions

Comparing version 3.2.0 to 3.2.1

4

CHANGES.md

@@ -0,1 +1,5 @@

## v3.2.1
- fixed context not updated in interactive sessions
## v3.2.0

@@ -2,0 +6,0 @@

6

lib/wit.js

@@ -258,3 +258,3 @@ 'use strict';

const sessionId = uuid.v1();
const context = typeof initContext === 'object' ? initContext : {};
this.context = typeof initContext === 'object' ? initContext : {};
const steps = maxSteps ? maxSteps : DEFAULT_MAX_STEPS;

@@ -268,6 +268,8 @@ rl.setPrompt('> ');

msg,
context,
this.context,
(error, context) => {
if (error) {
l.error(error);
} else {
this.context = context;
}

@@ -274,0 +276,0 @@ rl.prompt();

{
"name": "node-wit",
"version": "3.2.0",
"version": "3.2.1",
"description": "Wit.ai Node.js SDK",

@@ -5,0 +5,0 @@ "keywords": [

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