@cubejs-backend/cloud
Advanced tools
Comparing version 0.28.10 to 0.28.13
@@ -6,2 +6,10 @@ # Change Log | ||
## [0.28.13](https://github.com/cube-js/cube.js/compare/v0.28.12...v0.28.13) (2021-08-04) | ||
**Note:** Version bump only for package @cubejs-backend/cloud | ||
## [0.28.10](https://github.com/cube-js/cube.js/compare/v0.28.9...v0.28.10) (2021-07-30) | ||
@@ -8,0 +16,0 @@ |
@@ -10,4 +10,4 @@ /// <reference types="node" /> | ||
protected readonly auth?: AuthObject | undefined; | ||
protected readonly livePreview?: Boolean | undefined; | ||
constructor(auth?: AuthObject | undefined, livePreview?: Boolean | undefined); | ||
protected readonly livePreview?: boolean | undefined; | ||
constructor(auth?: AuthObject | undefined, livePreview?: boolean | undefined); | ||
private request; | ||
@@ -14,0 +14,0 @@ getDeploymentsList({ auth }?: { |
@@ -39,4 +39,5 @@ "use strict"; | ||
startWatch() { | ||
if (!this.auth) | ||
if (!this.auth) { | ||
throw new Error('Auth isn\'t set'); | ||
} | ||
if (!this.watcher) { | ||
@@ -76,3 +77,3 @@ this.log('Start with Cube Cloud'); | ||
uploading: this.uploading, | ||
active: !!this.watcher, | ||
active: Boolean(this.watcher), | ||
}; | ||
@@ -85,3 +86,5 @@ if (auth) { | ||
lastHash: this.lastHash | ||
})) | ||
})), | ||
deploymentId: auth.deploymentId, | ||
url: auth.url | ||
}; | ||
@@ -88,0 +91,0 @@ } |
{ | ||
"name": "@cubejs-backend/cloud", | ||
"version": "0.28.10", | ||
"version": "0.28.13", | ||
"description": "Cube Cloud package", | ||
@@ -61,3 +61,3 @@ "main": "dist/src/index.js", | ||
}, | ||
"gitHead": "edcbbb2aad9062ed5b965b18eb586ea99ec7d0bd" | ||
"gitHead": "cb5b2107f28978cf3ec63f524cd33a765aea6b92" | ||
} |
Sorry, the diff of this file is not supported yet
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
60959
630