@pipelab/shared 2.0.1-latest.33 → 2.0.1-latest.35

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.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pipelab/shared",
3
- "version": "2.0.1-latest.33",
3
+ "version": "2.0.1-latest.35",
4
4
  "private": false,
5
5
  "description": "Shared logic and types for the Pipelab ecosystem",
6
6
  "license": "FSL-1.1-MIT",
@@ -37,13 +37,13 @@
37
37
  "tslog": "4.9.3",
38
38
  "type-fest": "4.26.1",
39
39
  "valibot": "0.42.1",
40
- "@pipelab/migration": "1.0.1-latest.32"
40
+ "@pipelab/migration": "1.0.1-latest.34"
41
41
  },
42
42
  "devDependencies": {
43
43
  "esbuild-plugin-wasm": "1.1.0",
44
44
  "tsdown": "0.21.2",
45
45
  "typescript": "5.9.3",
46
- "@pipelab/tsconfig": "1.0.1-latest.32"
46
+ "@pipelab/tsconfig": "1.0.1-latest.34"
47
47
  },
48
48
  "scripts": {
49
49
  "build": "tsdown",
package/src/apis.ts CHANGED
@@ -172,6 +172,10 @@ export type IpcDefinition = {
172
172
  EndEvent<{ data: any | null; error: any | null }>,
173
173
  ];
174
174
  "agent:version:get": [void, EndEvent<{ version: string }>];
175
+ "startup:progress": [
176
+ void,
177
+ { type: "progress"; data: { message: string } } | { type: "ready" },
178
+ ];
175
179
  };
176
180
 
177
181
  export type Channels = keyof IpcDefinition;