@agoric/eventual-send
Advanced tools
Comparing version 0.14.1-dev-72f4982.0 to 0.14.1-dev-781f8a2.0
{ | ||
"name": "@agoric/eventual-send", | ||
"version": "0.14.1-dev-72f4982.0+72f4982", | ||
"version": "0.14.1-dev-781f8a2.0+781f8a2", | ||
"description": "Extend a Promise class to implement the eventual-send API", | ||
@@ -29,4 +29,4 @@ "type": "module", | ||
"devDependencies": { | ||
"@endo/lockdown": "^0.1.5", | ||
"@endo/ses-ava": "^0.2.17", | ||
"@endo/lockdown": "^0.1.7", | ||
"@endo/ses-ava": "^0.2.19", | ||
"ava": "^3.12.1", | ||
@@ -58,3 +58,3 @@ "c8": "^7.7.2" | ||
}, | ||
"gitHead": "72f4982d668d4b91496a6f5332d294a44cfc6c2e" | ||
"gitHead": "781f8a21abe6fcde2b69004c89d02c5a515a2e99" | ||
} |
@@ -282,5 +282,4 @@ // @ts-check | ||
// local handled Promise. | ||
[pendingHandler, continueForwarding] = makePostponedHandler( | ||
HandledPromise, | ||
); | ||
[pendingHandler, continueForwarding] = | ||
makePostponedHandler(HandledPromise); | ||
} | ||
@@ -566,3 +565,5 @@ | ||
const unknownBaseHandledPromise = baseHandledPromise; | ||
HandledPromise = /** @type {typeof HandledPromise} */ (unknownBaseHandledPromise); | ||
HandledPromise = /** @type {typeof HandledPromise} */ ( | ||
unknownBaseHandledPromise | ||
); | ||
@@ -569,0 +570,0 @@ // We cannot harden(HandledPromise) because we're a vetted shim which |
@@ -14,7 +14,5 @@ /* eslint-disable no-shadow,no-unused-vars,no-use-before-define,no-var,vars-on-top */ | ||
: T extends Record<string | number | symbol, Function> | ||
? ERef< | ||
{ | ||
[K in keyof T]: EOnly<T[K]>; | ||
} | ||
> | ||
? ERef<{ | ||
[K in keyof T]: EOnly<T[K]>; | ||
}> | ||
: ERef<T>; | ||
@@ -21,0 +19,0 @@ |
@@ -1,2 +0,1 @@ | ||
/* global HandledPromise */ | ||
import makeE from './E.js'; | ||
@@ -3,0 +2,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
Manifest confusion
Supply chain riskThis package has inconsistent metadata. This could be malicious or caused by an error when publishing the package.
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
Manifest confusion
Supply chain riskThis package has inconsistent metadata. This could be malicious or caused by an error when publishing the package.
Found 1 instance in 1 package
68629
1022