remote-pay-cloud
Advanced tools
Comparing version 0.0.1 to 0.0.2
{ | ||
"name": "remote-pay-cloud", | ||
"version": "0.0.1", | ||
"version": "0.0.2", | ||
"description": "Access Clover devices through the cloud", | ||
@@ -5,0 +5,0 @@ "keywords": [ |
@@ -6,3 +6,3 @@ Repository for Clover's cloud connector API. Published as an NPM package. Intended for use in a browser environment. | ||
``` | ||
var cloverLib = require("clover-cloud").Clover; | ||
var cloverLib = require("remote-pay-cloud").Clover; | ||
var clover = new Clover({ | ||
@@ -16,3 +16,3 @@ "clientId" : "3BZPZ6A6FQ8ZM", | ||
if(error) console.log(error) | ||
else clover.sale({"amount" : 10000, "tipAmount" : 1500 }, | ||
else clover.sale({"amount" : 10000 }, | ||
function(error, saleResult) { | ||
@@ -29,3 +29,3 @@ if(error) console.log(error); | ||
``` | ||
var cloverLib = require("clover-cloud").Clover; | ||
var cloverLib = require("remote-pay-cloud").Clover; | ||
var clover = new Clover(configuration); | ||
@@ -32,0 +32,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
175764