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.11 to 0.13.12

8

CHANGELOG.md

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

## [0.13.12](https://github.com/Agoric/agoric-sdk/compare/@agoric/eventual-send@0.13.11...@agoric/eventual-send@0.13.12) (2021-05-05)
**Note:** Version bump only for package @agoric/eventual-send
## [0.13.11](https://github.com/Agoric/agoric-sdk/compare/@agoric/eventual-send@0.13.10...@agoric/eventual-send@0.13.11) (2021-04-22)

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

10

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

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

"devDependencies": {
"@agoric/assert": "^0.2.9",
"@agoric/install-ses": "^0.5.10",
"@agoric/swingset-vat": "^0.16.4",
"@agoric/assert": "^0.2.10",
"@agoric/install-ses": "^0.5.11",
"@agoric/swingset-vat": "^0.17.0",
"ava": "^3.12.1",

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

},
"gitHead": "cd015a9c4ee8f2d52f7b99d265f82ebe27bbbeef"
"gitHead": "05fed590d4240c9cdf77aab865cc35d94c881fa8"
}

@@ -9,2 +9,10 @@ /* eslint-disable */

// Type for an object that must only be invoked with E. It supports a given
// interface but declares all the functions as asyncable.
export type EOnly<T> = T extends (...args: infer P) => infer R ?
(...args: P) => ERef<R> | EOnly<R>
: T extends Record<string | number | symbol, Function> ? ERef<{
[K in keyof T]: EOnly<T[K]>
}> : ERef<T>;
type Unpromise<T> = T extends ERef<infer U> ? U : T;

@@ -11,0 +19,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