@actor-system/receptionist
Advanced tools
@@ -1,8 +0,9 @@ | ||
| import { Behavior } from '@actor-system/core'; | ||
| import { behavior } from '@actor-system/core'; | ||
| import { Command } from './command.js'; | ||
| declare const behavior: { | ||
| <T>(): Behavior<Command<T>>; | ||
| declare const receptionistBehavior: { | ||
| <T>(): behavior.Behavior<Command<T>>; | ||
| }; | ||
| //# sourceMappingURL=behavior.d.ts.map | ||
| export { behavior }; | ||
| export { receptionistBehavior as behavior }; |
@@ -1,13 +0,14 @@ | ||
| import { Behavior } from '@actor-system/core/internal'; | ||
| import { behavior } from '@actor-system/core/internal'; | ||
| import { Command } from './command.internal.js'; | ||
| import { State } from './state.internal.js'; | ||
| declare const behavior: { | ||
| declare const receptionistBehavior: { | ||
| /** @internal */ | ||
| <T>(state: State): Behavior<Command.Internal<T>>; | ||
| <T>(state: State): behavior.Behavior<Command.Internal<T>>; | ||
| /** @internal */ | ||
| <T>(): Behavior<Command.Internal<T>>; | ||
| <T>(): Behavior<Command<T>>; | ||
| <T>(): behavior.Behavior<Command.Internal<T>>; | ||
| <T>(): behavior.Behavior<Command<T>>; | ||
| }; | ||
| //# sourceMappingURL=behavior.d.ts.map | ||
| export { behavior }; | ||
| export { receptionistBehavior as behavior }; |
+2
-2
@@ -7,3 +7,3 @@ import * as behaviors from '@actor-system/behaviors'; | ||
| const behavior = (state = create()) => behaviors.setup(({ self, watch }) => { | ||
| const receptionistBehavior = (state = create()) => behaviors.setup(({ self, watch }) => { | ||
| const pendingNotifications = new Map(); | ||
@@ -86,2 +86,2 @@ const scheduleNotify = (key, subscriber) => { | ||
| export { behavior }; | ||
| export { receptionistBehavior as behavior }; |
+5
-5
| { | ||
| "name": "@actor-system/receptionist", | ||
| "version": "0.0.17", | ||
| "version": "0.0.18", | ||
| "type": "module", | ||
@@ -61,11 +61,11 @@ "scripts": { | ||
| "dependencies": { | ||
| "@actor-system/behaviors": "0.0.17", | ||
| "@actor-system/core": "0.1.1", | ||
| "@actor-system/mail": "0.0.2" | ||
| "@actor-system/behaviors": "0.0.18", | ||
| "@actor-system/core": "0.1.2", | ||
| "@actor-system/mail": "0.0.3" | ||
| }, | ||
| "devDependencies": { | ||
| "@actor-system/testing": "0.0.2", | ||
| "@actor-system/shared": "0.0.2", | ||
| "@actor-system/shared": "0.0.3", | ||
| "config": "^1.0.0" | ||
| } | ||
| } |
21881
1.02%445
0.45%+ Added
+ Added
+ Added
- Removed
- Removed
- Removed
Updated
Updated