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

@statelyai/inspect

Package Overview
Dependencies
Maintainers
3
Versions
21
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@statelyai/inspect - npm Package Compare versions

Comparing version 0.2.4 to 0.2.5

6

CHANGELOG.md
# @statelyai/inspect
## 0.2.5
### Patch Changes
- [#21](https://github.com/statelyai/inspect/pull/21) [`a225b37`](https://github.com/statelyai/inspect/commit/a225b37c7e466091528bcf275b57488f144b1f47) Thanks [@davidkpiano](https://github.com/davidkpiano)! - Do not warn for XState events
## 0.2.4

@@ -4,0 +10,0 @@

2

dist/index.d.ts

@@ -157,2 +157,2 @@ import { InspectionEvent, Snapshot, AnyActorRef, AnyEventObject, Observer, Subscribable } from 'xstate';

export { StatelyActorEvent, StatelyEventEvent, StatelyInspectionEvent, StatelySnapshotEvent, createBrowserInspector, createBrowserReceiver, createInspector, createSkyInspector, createWebSocketInspector, createWebSocketReceiver };
export { type StatelyActorEvent, type StatelyEventEvent, type StatelyInspectionEvent, type StatelySnapshotEvent, createBrowserInspector, createBrowserReceiver, createInspector, createSkyInspector, createWebSocketInspector, createWebSocketReceiver };

@@ -59,13 +59,13 @@ "use strict";

"@changesets/changelog-github": "^0.5.0",
"@changesets/cli": "^2.26.2",
"@changesets/cli": "^2.27.1",
"@types/jsdom": "^21.1.6",
"@types/uuid": "^9.0.8",
jsdom: "^23.0.0",
tsup: "^7.2.0",
typescript: "^5.1.6",
vitest: "^0.34.6",
xstate: "^5.5.1"
jsdom: "^23.2.0",
tsup: "^8.0.2",
typescript: "^5.3.3",
vitest: "^1.3.1",
xstate: "^5.9.1"
},
name: "@statelyai/inspect",
version: "0.2.4",
version: "0.2.5",
description: "Inspection utilities for state, actors, workflows, and state machines.",

@@ -80,5 +80,5 @@ main: "dist/index.js",

partysocket: "^0.0.25",
superjson: "^1",
uuid: "^9.0.1",
"safe-stable-stringify": "^2.4.3"
"safe-stable-stringify": "^2.4.3",
superjson: "^1.13.3",
uuid: "^9.0.1"
},

@@ -263,2 +263,5 @@ peerDependencies: {

default: {
if (inspectionEvent.type.startsWith("@xstate.")) {
return void 0;
}
console.warn(

@@ -265,0 +268,0 @@ `Unhandled inspection event type: ${inspectionEvent.type}`

{
"devDependencies": {
"@changesets/changelog-github": "^0.5.0",
"@changesets/cli": "^2.26.2",
"@changesets/cli": "^2.27.1",
"@types/jsdom": "^21.1.6",
"@types/uuid": "^9.0.8",
"jsdom": "^23.0.0",
"tsup": "^7.2.0",
"typescript": "^5.1.6",
"vitest": "^0.34.6",
"xstate": "^5.5.1"
"jsdom": "^23.2.0",
"tsup": "^8.0.2",
"typescript": "^5.3.3",
"vitest": "^1.3.1",
"xstate": "^5.9.1"
},
"name": "@statelyai/inspect",
"version": "0.2.4",
"version": "0.2.5",
"description": "Inspection utilities for state, actors, workflows, and state machines.",

@@ -24,5 +24,5 @@ "main": "dist/index.js",

"partysocket": "^0.0.25",
"superjson": "^1",
"uuid": "^9.0.1",
"safe-stable-stringify": "^2.4.3"
"safe-stable-stringify": "^2.4.3",
"superjson": "^1.13.3",
"uuid": "^9.0.1"
},

@@ -29,0 +29,0 @@ "peerDependencies": {

@@ -5,2 +5,4 @@ # Stately.ai Inspect

**Documentation:** [stately.ai/docs/inspector](https://stately.ai/docs/inspector)
## Features

@@ -7,0 +9,0 @@

@@ -218,2 +218,6 @@ import {

default: {
// Ignore future XState inspection events (assume that they are valid)
if (inspectionEvent.type.startsWith('@xstate.')) {
return undefined;
}
console.warn(

@@ -220,0 +224,0 @@ `Unhandled inspection event type: ${(inspectionEvent as any).type}`

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