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

@endo/captp

Package Overview
Dependencies
Maintainers
5
Versions
45
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@endo/captp - npm Package Compare versions

Comparing version 3.1.1 to 3.1.2

20

package.json
{
"name": "@endo/captp",
"version": "3.1.1",
"version": "3.1.2",
"description": "Capability Transfer Protocol for distributed objects",

@@ -45,12 +45,12 @@ "type": "module",

"devDependencies": {
"@endo/init": "^0.5.56",
"@endo/ses-ava": "^0.2.40",
"ava": "^5.2.0",
"c8": "^7.7.3"
"@endo/init": "^0.5.57",
"@endo/ses-ava": "^0.2.41",
"ava": "^5.3.0",
"c8": "^7.14.0"
},
"dependencies": {
"@endo/eventual-send": "^0.17.2",
"@endo/marshal": "^0.8.5",
"@endo/nat": "^4.1.27",
"@endo/promise-kit": "^0.2.56"
"@endo/eventual-send": "^0.17.3",
"@endo/marshal": "^0.8.6",
"@endo/nat": "^4.1.28",
"@endo/promise-kit": "^0.2.57"
},

@@ -74,3 +74,3 @@ "bugs": {

},
"gitHead": "38c2c59d6ae8c53f84cd333e6c7828e2d37604e2"
"gitHead": "106da55b8bcea3067f70c29c357806f3f2e55c52"
}

@@ -54,3 +54,3 @@ export { E };

};
import { E } from "@endo/eventual-send";
import { E } from '@endo/eventual-send';
//# sourceMappingURL=captp.d.ts.map

@@ -186,3 +186,5 @@ /// <reference types="ses"/>

WELL_KNOWN_SLOT_PROPERTIES.forEach(prop => sendSlot.add(obj[prop]));
for (const prop of WELL_KNOWN_SLOT_PROPERTIES) {
sendSlot.add(obj[prop]);
}
sendSlot.commit();

@@ -690,3 +692,3 @@

if (!settler) {
throw new Error(
throw Error(
`Got an answer to a question we have not asked. (answerID = ${answerID} )`,

@@ -708,3 +710,3 @@ );

// Not a promise we know about; maybe it was collected?
throw new Error(
throw Error(
`Got a resolvement of a promise we have not imported. (promiseID = ${promiseID} )`,

@@ -774,3 +776,5 @@ );

WELL_KNOWN_SLOT_PROPERTIES.forEach(prop => recvSlot.add(obj[prop]));
for (const prop of WELL_KNOWN_SLOT_PROPERTIES) {
recvSlot.add(obj[prop]);
}
fn(obj);

@@ -777,0 +781,0 @@ recvSlot.commit();

@@ -13,3 +13,3 @@ export { E };

export type ERef<T> = import('@endo/eventual-send').ERef<T>;
import { E } from "./captp.js";
import { E } from './captp.js';
//# sourceMappingURL=loopback.d.ts.map

@@ -60,3 +60,3 @@ /* eslint-disable */

*/
readonly get<T>(x: T): TrapSingleGet<Unpromise<T>>;
get<T>(x: T): TrapSingleGet<Unpromise<T>>;
}

Sorry, the diff of this file is not supported yet

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