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

channeladvisor2

Package Overview
Dependencies
Maintainers
1
Versions
5
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

channeladvisor2 - npm Package Compare versions

Comparing version 0.2.2 to 0.2.3

LICENSE

5

package.json
{
"name": "channeladvisor2",
"version": "0.2.2",
"version": "0.2.3",
"description": "API wrapper for ChannelAdvisor's SOAP service",

@@ -11,3 +11,4 @@ "main": "index.js",

"scripts": {
"prepublish": "grunt build"
"prepublish": "grunt build",
"test": "echo \"Error: no test specified\" && exit 1"
},

@@ -14,0 +15,0 @@ "devDependencies": {

59

README.md
channeladvisor2
===
[ivan's](https://github.com/seapunk) fork and complete rewrite of the [node-channeladvisor](https://github.com/wankdanker/node-channeladvisor) library
[ivan's](https://github.com/seapunk) complete rewrite of the [node-channeladvisor](https://github.com/wankdanker/node-channeladvisor) library

@@ -14,14 +14,16 @@ ---

```javascript
```coffeescript
var channeladvisor = require('channeladvisor2')
channeladvisor = require('channeladvisor2')
opts =
developerKey: "xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx"
var opts = {
developerKey: "xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx",
password: "Password!123"
}
channeladvisor.create opts, (err, ca) ->
ca.AdminService.GetAuthorizationList (err, result) ->
console.log result
channeladvisor.create(opts, function(err, ca){
ca.AdminService.GetAuthorizationList(function(err, result){
console.log(result)
})
})

@@ -37,2 +39,9 @@ ```

build
---
```bash
grunt build
```
api

@@ -71,8 +80,8 @@ ---

```coffeescript
opts =
localID: 9999999
```javascript
var opts = {localID: 9999999}
ca.AdminService.RequestAccess opts, (err, result) ->
console.log result
ca.AdminService.RequestAccess(opts, function(err, result){
console.log(result)
})
```

@@ -85,18 +94,6 @@

```coffeescript
ca.InventoryService.Ping (err, result) ->
console.log result
```
note
---
I am not affiliated in any way with ChannelAdvisor.
This library is named "channeladvisor2" to specify that this is a derivative of
the "channeladvisor" library, and so people can find this library easier.
license
---
MIT
```javascript
ca.InventoryService.Ping(function(err, result){
console.log(result)
})
```

Sorry, the diff of this file is not supported yet

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