You're Invited:Meet the Socket Team at RSAC and BSidesSF 2026, March 23–26.RSVP
Socket
Book a DemoSign in
Socket

@actor-system/receptionist

Package Overview
Dependencies
Maintainers
1
Versions
20
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@actor-system/receptionist - npm Package Compare versions

Comparing version
0.0.17
to
0.0.18
+5
-4
dist/behavior.d.ts

@@ -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 };

@@ -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 };
{
"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"
}
}