fast-azure-storage
Advanced tools
Comparing version 1.0.0 to 1.0.1
@@ -695,3 +695,6 @@ 'use strict'; | ||
if (options.top) { | ||
query.$top = '' + options.top; | ||
if (options.top > 1000) { | ||
throw new Error(`queryEntities: Too Large Query: top of ${options.top} > 1000`); | ||
} | ||
query.$top = '' + options.top; | ||
} | ||
@@ -698,0 +701,0 @@ if (options.nextPartitionKey) { |
{ | ||
"name": "fast-azure-storage", | ||
"version": "1.0.0", | ||
"author": "Jonas Finnemann Jensen <jopsen@gmail.com>, Elena Solomon <elenasolomon28@gmail.com>", | ||
"description": "Fast client library for azure storage services", | ||
"license": "MPL-2.0", | ||
"main": "lib/index.js", | ||
"name": "fast-azure-storage", | ||
"version": "1.0.1", | ||
"author": "Jonas Finnemann Jensen <jopsen@gmail.com>, Elena Solomon <elenasolomon28@gmail.com>", | ||
"description": "Fast client library for azure storage services", | ||
"license": "MPL-2.0", | ||
"main": "lib/index.js", | ||
"scripts": { | ||
"test": "mocha test/*.js", | ||
"docs": "yuidoc .", | ||
"push-docs": "npm run docs && git add docs/ && git commit -m 'Update docs' && git subtree push --prefix docs git@github.com:taskcluster/fast-azure-storage.git gh-pages" | ||
"test": "mocha test/*.js", | ||
"docs": "yuidoc .", | ||
"push-docs": "npm run docs && git add docs/ && git commit -m 'Update docs' && git subtree push --prefix docs git@github.com:taskcluster/fast-azure-storage.git gh-pages" | ||
}, | ||
"repository": { | ||
"type": "git", | ||
"url": "https://github.com/taskcluster/fast-azure-storage.git" | ||
"type": "git", | ||
"url": "https://github.com/taskcluster/fast-azure-storage.git" | ||
}, | ||
@@ -21,15 +21,15 @@ "engines": { | ||
"dependencies": { | ||
"debug": "^2.2.0", | ||
"promise": "^7.0.4", | ||
"pixl-xml": "^1.0.10" | ||
"debug": "^2.2.0", | ||
"promise": "^7.0.4", | ||
"pixl-xml": "^1.0.10" | ||
}, | ||
"optionalDependencies": { | ||
"libxmljs": "^0.18.0" | ||
"libxmljs": "^0.18.0" | ||
}, | ||
"devDependencies": { | ||
"mocha": "^2.2.1", | ||
"jsdoc": "^3.3.0-beta3", | ||
"yuidocjs": "^0.9.0", | ||
"yuidoc-lucid-theme": "jonasfj/yuidoc-lucid-theme" | ||
"mocha": "^2.2.1", | ||
"jsdoc": "^3.3.0-beta3", | ||
"yuidocjs": "^0.9.0", | ||
"yuidoc-lucid-theme": "jonasfj/yuidoc-lucid-theme" | ||
} | ||
} |
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
New author
Supply chain riskA new npm collaborator published a version of the package for the first time. New collaborators are usually benign additions to a project, but do indicate a change to the security surface area of a package.
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
New author
Supply chain riskA new npm collaborator published a version of the package for the first time. New collaborators are usually benign additions to a project, but do indicate a change to the security surface area of a package.
Found 1 instance in 1 package
287213
17
5220