Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@agoric/eventual-send

Package Overview
Dependencies
Maintainers
5
Versions
322
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@agoric/eventual-send - npm Package Compare versions

Comparing version 0.13.3 to 0.13.4

8

CHANGELOG.md

@@ -6,2 +6,10 @@ # Change Log

## [0.13.4](https://github.com/Agoric/agoric-sdk/compare/@agoric/eventual-send@0.13.3...@agoric/eventual-send@0.13.4) (2021-03-24)
**Note:** Version bump only for package @agoric/eventual-send
## [0.13.3](https://github.com/Agoric/agoric-sdk/compare/@agoric/eventual-send@0.13.2...@agoric/eventual-send@0.13.3) (2021-03-16)

@@ -8,0 +16,0 @@

8

package.json
{
"name": "@agoric/eventual-send",
"version": "0.13.3",
"version": "0.13.4",
"description": "Extend a Promise class to implement the eventual-send API",

@@ -29,4 +29,4 @@ "parsers": {

"devDependencies": {
"@agoric/assert": "^0.2.3",
"@agoric/install-ses": "^0.5.3",
"@agoric/assert": "^0.2.4",
"@agoric/install-ses": "^0.5.4",
"ava": "^3.12.1",

@@ -67,3 +67,3 @@ "esm": "^3.2.7",

},
"gitHead": "5ad5f483f05ba20d903b4423bfb4fa0d2ce75fd7"
"gitHead": "be478ee84773b8e403cf896e53df28146a60f976"
}

@@ -95,2 +95,3 @@ import { trackTurns } from './track-turns';

E.G = makeEGetterProxy;
E.get = makeEGetterProxy;
E.resolve = HandledPromise.resolve;

@@ -97,0 +98,0 @@ E.sendOnly = x => {

@@ -77,3 +77,2 @@ /* eslint-disable */

<T>(x: T): ESingleCallOnly<Unpromise<T>, void>;
readonly G<T>(x: T): ESingleGetOnly<Unpromise<T>>;
}

@@ -93,3 +92,8 @@

/**
* E.G(x) returns a proxy on which you can get arbitrary properties.
* @deprecated use E.get(x) instead
*/
readonly G<T>(x: T): ESingleGet<Unpromise<T>>;
/**
* E.get(x) returns a proxy on which you can get arbitrary properties.
* Each of these properties returns a promise for the property. The promise

@@ -102,3 +106,3 @@ * value will be the property fetched from whatever 'x' designates (or

*/
readonly G<T>(x: T): ESingleGet<Unpromise<T>>;
readonly get<T>(x: T): ESingleGet<Unpromise<T>>;

@@ -105,0 +109,0 @@ /**

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