bitcoin-coinify-client
Advanced tools
Comparing version 0.5.0 to 0.6.0
{ | ||
"name": "bitcoin-coinify-client", | ||
"version": "0.5.0", | ||
"version": "0.6.0", | ||
"description": "Buy and sell Bitcoin using Coinify API.", | ||
@@ -5,0 +5,0 @@ "repository": { |
@@ -12,2 +12,3 @@ 'use strict'; | ||
this._inDaily = obj.in.daily; | ||
this._inYearly = obj.in.yearly; | ||
} | ||
@@ -47,3 +48,9 @@ if (obj.out) { | ||
} | ||
}, | ||
'inYearly': { | ||
configurable: false, | ||
get: function () { | ||
return this._inYearly; | ||
} | ||
} | ||
}); |
@@ -36,3 +36,4 @@ | ||
in: { | ||
daily: 1000 | ||
daily: 1000, | ||
yearly: 1000 | ||
}, | ||
@@ -60,2 +61,3 @@ out: { | ||
expect(limits.bank.inDaily).toBe(1000); | ||
expect(limits.bank.inYearly).toBe(1000); | ||
expect(limits.bank.outDaily).toBe(1000); | ||
@@ -62,0 +64,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
164925
4611