New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

azure-storage-promisified

Package Overview
Dependencies
Maintainers
1
Versions
8
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

azure-storage-promisified - npm Package Compare versions

Comparing version 0.1.2 to 0.2.0

10

CHANGELOG.md

@@ -5,2 +5,12 @@ # Change Log

<a name="0.2.0"></a>
# [0.2.0](https://github.com/rand0me/azure-storage-promisified/compare/v0.1.2...v0.2.0) (2017-10-06)
### Features
* **TableService:** Implement "deleteEntity" method ([7abaf40](https://github.com/rand0me/azure-storage-promisified/commit/7abaf40))
<a name="0.1.2"></a>

@@ -7,0 +17,0 @@ ## [0.1.2](https://github.com/rand0me/azure-storage-promisified/compare/v0.1.1...v0.1.2) (2017-10-04)

1

dist/TableService.d.ts

@@ -11,2 +11,3 @@ import { TableService, common, services } from 'azure-storage';

queryEntities<T>(query: services.table.TableQuery, token: TableService.TableContinuationToken): Promise<{}>;
deleteEntity(PartitionKey: string, RowKey: string): Promise<{}>;
}

@@ -48,2 +48,10 @@ "use strict";

};
AzureTable.prototype.deleteEntity = function (PartitionKey, RowKey) {
var _this = this;
return new Promise(function (resolve, reject) {
return _this.service.deleteEntity(_this.table, { PartitionKey: PartitionKey, RowKey: RowKey }, function (err, result) {
return err ? reject(err) : resolve(result);
});
});
};
return AzureTable;

@@ -50,0 +58,0 @@ }());

2

package.json
{
"name": "azure-storage-promisified",
"version": "0.1.2",
"version": "0.2.0",
"description": "Azure Storage with Promises",

@@ -5,0 +5,0 @@ "main": "dist/index.js",

Sorry, the diff of this file is not supported yet

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc