@rolldown/debug 1.0.0-beta.8-commit.2686eb1 → 1.0.0-beta.8-commit.165d0b1

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.
@@ -7,4 +7,5 @@ export type HookLoadCallEnd = {
7
7
  * The index of the plugin in the plugin list. It's unique to each plugin.
8
8
  */
9
9
  plugin_index: number;
10
+ call_id: string;
10
11
  };
@@ -6,4 +6,5 @@ export type HookLoadCallStart = {
6
6
  * The index of the plugin in the plugin list. It's unique to each plugin.
7
7
  */
8
8
  plugin_index: number;
9
+ call_id: string;
9
10
  };
@@ -7,4 +7,5 @@ export type HookTransformCallEnd = {
7
7
  * The index of the plugin in the plugin list. It's unique to each plugin.
8
8
  */
9
9
  plugin_index: number;
10
+ call_id: string;
10
11
  };
@@ -7,4 +7,5 @@ export type HookTransformCallStart = {
7
7
  * The index of the plugin in the plugin list. It's unique to each plugin.
8
8
  */
9
9
  plugin_index: number;
10
+ call_id: string;
10
11
  };
package/dist/index.d.ts CHANGED
@@ -1,9 +1,8 @@
1
1
  import { type Meta } from './generated/index.js';
2
2
  export * from './generated/index.js';
3
- export interface Event {
3
+ export type Event = {
4
4
  timestamp: string;
5
5
  session_id: string;
6
- meta: Meta;
7
- }
6
+ } & Meta;
8
7
  export declare function parseToEvents(data: string): Event[];
9
8
  export declare function parseToEvent(data: string): Event;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@rolldown/debug",
3
- "version": "1.0.0-beta.8-commit.2686eb1",
3
+ "version": "1.0.0-beta.8-commit.165d0b1",
4
4
  "license": "MIT",
5
5
  "type": "module",
6
6
  "repository": {