@onflow/util-actor
Advanced tools
Comparing version 1.3.3 to 1.3.4-alpha.0
# @onflow/util-actor | ||
## 1.3.4-alpha.0 | ||
### Patch Changes | ||
- [#1983](https://github.com/onflow/fcl-js/pull/1983) [`18d24c8bad7efa0d8741d74f0cf299f89b3622c7`](https://github.com/onflow/fcl-js/commit/18d24c8bad7efa0d8741d74f0cf299f89b3622c7) Thanks [@jribbink](https://github.com/jribbink)! - Update dependencies | ||
## 1.3.3 | ||
@@ -4,0 +10,0 @@ |
'use strict'; | ||
Object.defineProperty(exports, '__esModule', { value: true }); | ||
const mailbox = () => { | ||
@@ -6,0 +4,0 @@ const queue = []; |
@@ -247,5 +247,3 @@ (function (global, factory) { | ||
Object.defineProperty(exports, '__esModule', { value: true }); | ||
})); | ||
//# sourceMappingURL=actor.umd.js.map |
{ | ||
"name": "@onflow/util-actor", | ||
"version": "1.3.3", | ||
"version": "1.3.4-alpha.0", | ||
"description": "A mechanism for forcing order/transitions of scoped async state", | ||
@@ -16,13 +16,13 @@ "license": "Apache-2.0", | ||
"devDependencies": { | ||
"@babel/preset-typescript": "^7.22.5", | ||
"@onflow/fcl-bundle": "1.4.2", | ||
"@types/jest": "^29.5.3", | ||
"@typescript-eslint/eslint-plugin": "^6.4.0", | ||
"@typescript-eslint/parser": "^6.4.0", | ||
"eslint": "^8.47.0", | ||
"eslint-plugin-jsdoc": "^46.9.0", | ||
"jest": "^29.5.0" | ||
"@babel/preset-typescript": "^7.25.7", | ||
"@onflow/fcl-bundle": "1.5.1-alpha.0", | ||
"@types/jest": "^29.5.13", | ||
"@typescript-eslint/eslint-plugin": "^6.21.0", | ||
"@typescript-eslint/parser": "^6.21.0", | ||
"eslint": "^8.57.1", | ||
"eslint-plugin-jsdoc": "^46.10.1", | ||
"jest": "^29.7.0" | ||
}, | ||
"dependencies": { | ||
"@babel/runtime": "^7.18.6", | ||
"@babel/runtime": "^7.25.7", | ||
"queue-microtask": "1.2.3" | ||
@@ -29,0 +29,0 @@ }, |
@@ -47,3 +47,3 @@ export declare const INIT = "INIT"; | ||
export declare const kill: (addr: string) => void; | ||
export declare const spawn: <Handlers extends ActorHandlers>(fnOrHandlers: Handlers | ((ctx: ActorContext) => Promise<void>), rawAddr?: string | number | null) => string; | ||
export declare const spawn: <Handlers extends ActorHandlers>(fnOrHandlers: ((ctx: ActorContext) => Promise<void>) | Handlers, rawAddr?: string | number | null) => string; | ||
declare const createCtx: (addr: string) => { | ||
@@ -60,5 +60,5 @@ self: () => string; | ||
put: <T>(key: string, value: T) => void; | ||
get: <T_1>(key: string, fallback?: T_1 | undefined) => any; | ||
get: <T>(key: string, fallback?: T | undefined) => any; | ||
delete: (key: string) => void; | ||
update: <T_2, U>(key: string, fn: (x: T_2) => U) => void; | ||
update: <T, U>(key: string, fn: (x: T) => U) => void; | ||
keys: () => string[]; | ||
@@ -65,0 +65,0 @@ all: () => Record<string, any>; |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
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
No v1
QualityPackage is not semver >=1. This means it is not stable and does not support ^ ranges.
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
94566
811
1
Updated@babel/runtime@^7.25.7