resolve-account
Advanced tools
Comparing version 0.0.8 to 0.0.9
@@ -20,3 +20,3 @@ (function (root, factory) { | ||
var SOURCE = 'library'; | ||
var VERSION = '0.0.8'; | ||
var VERSION = '0.0.9'; | ||
@@ -65,5 +65,5 @@ function ResolveAccount(options) { | ||
account.plan.trial.activated = account.plan.trial.activated || false; | ||
account.plan.trial.date = account.plan.trial.date || {}; | ||
account.plan.trial.date.timestamp = new Date(account.plan.trial.date.timestamp || 0).toISOString() | ||
account.plan.trial.date.timestampUNIX = Math.round(new Date(account.plan.expires.timestampUNIX || 0).getTime() / 1000); | ||
account.plan.trial.expires = account.plan.trial.expires || {}; | ||
account.plan.trial.expires.timestamp = new Date(account.plan.trial.expires.timestamp || 0).toISOString() | ||
account.plan.trial.expires.timestampUNIX = Math.round(new Date(account.plan.trial.expires.timestamp || 0).getTime() / 1000); | ||
@@ -70,0 +70,0 @@ account.plan.limits = account.plan.limits || {}; |
{ | ||
"name": "resolve-account", | ||
"version": "0.0.8", | ||
"version": "0.0.9", | ||
"description": "Standardize account JSON structure for projects built under ITW Creative Works", | ||
@@ -34,2 +34,2 @@ "main": "./dist/index.js", | ||
} | ||
} | ||
} |
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
20420