azure-storage-promisified
Advanced tools
Comparing version 0.3.0 to 0.3.1
@@ -5,2 +5,12 @@ # Change Log | ||
<a name="0.3.1"></a> | ||
## [0.3.1](https://github.com/rand0me/azure-storage-promisified/compare/v0.3.0...v0.3.1) (2017-10-27) | ||
### Bug Fixes | ||
* **TableService:** Make token optional in #queryEntities() ([3cb2835](https://github.com/rand0me/azure-storage-promisified/commit/3cb2835)) | ||
<a name="0.3.0"></a> | ||
@@ -7,0 +17,0 @@ # [0.3.0](https://github.com/rand0me/azure-storage-promisified/compare/v0.2.0...v0.3.0) (2017-10-09) |
@@ -10,4 +10,4 @@ import { TableService, common, services } from 'azure-storage'; | ||
retrieveEntity<T>(partKey: string, rowKey: string): Promise<{}>; | ||
queryEntities<T>(query: services.table.TableQuery, token: TableService.TableContinuationToken): Promise<{}>; | ||
queryEntities<T>(query: services.table.TableQuery, token?: TableService.TableContinuationToken): Promise<{}>; | ||
deleteEntity(PartitionKey: string, RowKey: string): Promise<{}>; | ||
} |
{ | ||
"name": "azure-storage-promisified", | ||
"version": "0.3.0", | ||
"version": "0.3.1", | ||
"description": "Azure Storage with Promises", | ||
@@ -5,0 +5,0 @@ "main": "dist/index.js", |
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
29560
17