@agoric/eventual-send
Advanced tools
Comparing version 0.13.3 to 0.13.4
@@ -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 @@ |
{ | ||
"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 @@ /** |
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
110544
2290