google-cloud-bucket
Advanced tools
Comparing version 0.11.0 to 0.11.1
@@ -5,2 +5,12 @@ # Change Log | ||
<a name="0.11.1"></a> | ||
## [0.11.1](https://github.com/nicolasdao/google-cloud-bucket/compare/v0.11.0...v0.11.1) (2019-02-11) | ||
### Bug Fixes | ||
* Listing files in bucket only return 1000 items ([74e7826](https://github.com/nicolasdao/google-cloud-bucket/commit/74e7826)) | ||
<a name="0.11.0"></a> | ||
@@ -7,0 +17,0 @@ # [0.11.0](https://github.com/nicolasdao/google-cloud-bucket/compare/v0.10.0...v0.11.0) (2019-02-08) |
{ | ||
"name": "google-cloud-bucket", | ||
"version": "0.11.0", | ||
"version": "0.11.1", | ||
"description": "Nodejs package to add objects to a Google Cloud Bucket.", | ||
@@ -5,0 +5,0 @@ "main": "index.js", |
@@ -145,3 +145,3 @@ /** | ||
_validateRequiredParams({ bucket, token }) | ||
const queryUrl = `${BUCKET_FILE_URL(bucket)}${filepath ? `?maxResults=1000${options.pageToken ? `&pageToken=${options.pageToken}` : ''}&prefix=${filepath.replace(/^\/*/, '').split('/').map(p => encodeURIComponent(p)).join('/')}` : ''}` | ||
const queryUrl = `${BUCKET_FILE_URL(bucket)}${filepath ? `?maxResults=1000${options.pageToken ? `&pageToken=${encodeURIComponent(options.pageToken)}` : ''}&prefix=${filepath.replace(/^\/*/, '').split('/').map(p => encodeURIComponent(p)).join('/')}` : ''}` | ||
return fetch.get({ | ||
@@ -148,0 +148,0 @@ uri: queryUrl, |
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
87891