Comparing version 0.0.2 to 0.0.3
@@ -5,3 +5,3 @@ { | ||
"description": "Magento SOAP API wrapper for Node.js", | ||
"version": "0.0.2", | ||
"version": "0.0.3", | ||
"main": "./src/magento", | ||
@@ -8,0 +8,0 @@ "contributors": [ |
@@ -5,4 +5,11 @@ # Magento SOAP API Wrapper | ||
## Installation | ||
`npm install magento` | ||
## Usage | ||
```js | ||
var magento = require('magento')({ | ||
var MagentoAPI = require('magento'); | ||
var magento = new MagentoAPI({ | ||
host: 'your.host', | ||
@@ -9,0 +16,0 @@ port: 80, |
@@ -179,3 +179,3 @@ // external dependencies | ||
self.sessionId = sessId; | ||
callback(); | ||
callback(null, sessId); | ||
}); | ||
@@ -182,0 +182,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
100028
67