@botmock-api/utils
Advanced tools
Comparing version 0.7.0 to 0.7.1
{ | ||
"name": "@botmock-api/utils", | ||
"version": "0.7.0", | ||
"version": "0.7.1", | ||
"description": "utilities for handling data from the Botmock API", | ||
@@ -5,0 +5,0 @@ "main": "index.js", |
@@ -54,5 +54,5 @@ # utils | ||
```js | ||
await utils.doesHaveGlobalPackages(packages: string[]): Boolean | ||
await utils.doesHaveGlobalPackages(packages: string[]): Promise<boolean> | ||
``` | ||
Determines if all `packages` are installed globally. Returns false if not. |
@@ -34,3 +34,3 @@ // Return a set representing all possible "journeys" in the project as arrays | ||
...next_message_ids | ||
.filter(({ intent }) => intent.value) | ||
.filter(message => message.intent && message.intent.value) | ||
// Group this message with this intent and others like it (in that they | ||
@@ -37,0 +37,0 @@ // also are incident on this message) |
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
15217