Comparing version 0.39.5 to 0.39.6
@@ -745,3 +745,3 @@ "use strict"; | ||
accountCreated: true, | ||
companyName: c.companyname || '', | ||
companyName: c.companyname !== undefined ? c.companyname : '', | ||
createdAt: c.created !== '' && c.created !== undefined | ||
@@ -748,0 +748,0 @@ ? new Date(c.created) |
{ | ||
"name": "remote.it", | ||
"version": "0.39.5", | ||
"version": "0.39.6", | ||
"description": "remote.it JavaScript/node client library", | ||
@@ -5,0 +5,0 @@ "main": "lib/remote.it.js", |
@@ -581,3 +581,3 @@ import axios, { AxiosError, AxiosResponse } from 'axios' | ||
accountCreated: true, | ||
companyName: c.companyname || '', | ||
companyName: c.companyname !== undefined ? c.companyname : '', | ||
createdAt: | ||
@@ -584,0 +584,0 @@ c.created !== '' && c.created !== undefined |
Sorry, the diff of this file is not supported yet
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
159503