@alwaysmeticulous/api 2.251.1 → 2.254.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -4,6 +4,10 @@ export interface EventSourceConnectionData {
4
4
  url: string;
5
5
  withCredentials: boolean;
6
6
  events: EventSourceConnectionEvent[];
7
+ /**
8
+ * Only present on recordings since ~Feb 2026.
9
+ */
10
+ frameId?: string;
7
11
  }
8
12
  export type EventSourceConnectionEvent = EventSourceConnectionCreatedEvent | EventSourceConnectionOpenedEvent | EventSourceConnectionMessageEvent | EventSourceConnectionErrorEvent | EventSourceConnectionClosedEvent;
9
13
  export interface EventSourceConnectionGenericEvent {
@@ -2,6 +2,10 @@ export interface WebSocketConnectionData {
2
2
  id: SequenceNumber;
3
3
  url: string;
4
4
  events: WebSocketConnectionEvent[];
5
+ /**
6
+ * Only present on recordings since ~Feb 2026.
7
+ */
8
+ frameId?: string;
5
9
  }
6
10
  export type SequenceNumber = number;
7
11
  export type WebSocketConnectionEvent = WebSocketConnectionCreatedEvent | WebSocketConnectionOpenedEvent | WebSocketConnectionMessageEvent | WebSocketConnectionErrorEvent | WebSocketConnectionClosedEvent;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@alwaysmeticulous/api",
3
- "version": "2.251.1",
3
+ "version": "2.254.1",
4
4
  "description": "Meticulous API types",
5
5
  "license": "ISC",
6
6
  "main": "dist/index.js",
@@ -35,5 +35,5 @@
35
35
  "bugs": {
36
36
  "url": "https://github.com/alwaysmeticulous/meticulous-sdk/issues"
37
37
  },
38
- "gitHead": "a8bf35cabc83fc249b92e5cd91d1522325333b29"
38
+ "gitHead": "1cd60270be8c9e8b2c751e94921baca8e58e0b5d"
39
39
  }