azure-storage-promisified
Advanced tools
Comparing version 1.0.0 to 1.0.1
@@ -5,2 +5,12 @@ # Change Log | ||
<a name="1.0.1"></a> | ||
## [1.0.1](https://github.com/rand0me/azure-storage-promisified/compare/v1.0.0...v1.0.1) (2017-11-01) | ||
### Bug Fixes | ||
* **TableService:** Fix typings in AzureTable ([0f156e3](https://github.com/rand0me/azure-storage-promisified/commit/0f156e3)) | ||
<a name="1.0.0"></a> | ||
@@ -7,0 +17,0 @@ # [1.0.0](https://github.com/rand0me/azure-storage-promisified/compare/v0.3.1...v1.0.0) (2017-11-01) |
@@ -9,5 +9,5 @@ import { TableService, common, services } from 'azure-storage'; | ||
insertOrReplaceEntity(entity: T): Promise<{}>; | ||
retrieveEntity(partKey: string, rowKey: string): Promise<{}>; | ||
queryEntities(query: services.table.TableQuery, token?: TableService.TableContinuationToken): Promise<{}>; | ||
retrieveEntity(partKey: string, rowKey: string): Promise<T>; | ||
queryEntities(query: services.table.TableQuery, token?: TableService.TableContinuationToken): Promise<TableService.QueryEntitiesResult<T>>; | ||
deleteEntity(PartitionKey: string, RowKey: string): Promise<{}>; | ||
} |
{ | ||
"name": "azure-storage-promisified", | ||
"version": "1.0.0", | ||
"version": "1.0.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
30198