Comparing version 3.13.0 to 3.13.1
@@ -25,3 +25,3 @@ // Licensed to the Apache Software Foundation (ASF) under one or more contributor | ||
get (options) { | ||
options = options || {} | ||
options = this.parse_options(options) | ||
options.qs = this.qs(options, ['code']) | ||
@@ -28,0 +28,0 @@ |
{ | ||
"name": "openwhisk", | ||
"version": "3.13.0", | ||
"version": "3.13.1", | ||
"description": "JavaScript client library for the OpenWhisk platform", | ||
@@ -5,0 +5,0 @@ "main": "lib/main.js", |
@@ -258,2 +258,8 @@ # OpenWhisk Client for JavaScript | ||
This method also supports passing the `name` property directly without wrapping within an object. | ||
```javascript | ||
const name = "actionName" | ||
ow.actions.get(name) | ||
``` | ||
If you pass in an array for the first parameter, the `get` call will be executed for each array item. The function returns a Promise which resolves with the results when all operations have finished. | ||
@@ -260,0 +266,0 @@ |
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
73604
555