@n8n_io/ai-assistant-sdk
Advanced tools
Comparing version 1.9.3 to 1.9.4
# Changelog | ||
## [1.9.4](https://github.com/n8n-io/ai-assistant-service/compare/ai-assistant-sdk-v1.9.3...ai-assistant-sdk-v1.9.4) (2024-08-14) | ||
### Bug Fixes | ||
* Fix bug with suggestion response ([#94](https://github.com/n8n-io/ai-assistant-service/issues/94)) ([c5af915](https://github.com/n8n-io/ai-assistant-service/commit/c5af91521f4d1710c5091801e01dc6835171eea3)) | ||
## [1.9.3](https://github.com/n8n-io/ai-assistant-service/compare/ai-assistant-sdk-v1.9.2...ai-assistant-sdk-v1.9.3) (2024-08-14) | ||
@@ -4,0 +11,0 @@ |
@@ -30,3 +30,3 @@ "use strict"; | ||
name: "@n8n_io/ai-assistant-sdk", | ||
version: "1.9.3", | ||
version: "1.9.4", | ||
description: "n8n AI assistant SDK", | ||
@@ -173,3 +173,3 @@ author: "", | ||
function isValidResponse(response) { | ||
return typeof response === "object" && !!response && "suggestionId" in response && "sessionId" in response; | ||
return typeof response === "object" && !!response && "parameters" in response && "sessionId" in response; | ||
} | ||
@@ -176,0 +176,0 @@ // Annotate the CommonJS export names for ESM import in node: |
{ | ||
"name": "@n8n_io/ai-assistant-sdk", | ||
"version": "1.9.3", | ||
"version": "1.9.4", | ||
"description": "n8n AI assistant SDK", | ||
@@ -5,0 +5,0 @@ "author": "", |
@@ -181,5 +181,5 @@ import packageJson from '../package.json'; | ||
!!response && | ||
'suggestionId' in response && | ||
'parameters' in response && | ||
'sessionId' in response | ||
); | ||
} |
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
25263