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

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.34",
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.33"
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.33"
47
47
  },
48
48
  "scripts": {
49
49
  "build": "tsdown",
package/src/apis.ts CHANGED
@@ -172,6 +172,7 @@ 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": [void, { type: "progress"; data: { message: string } }];
175
176
  };
176
177
 
177
178
  export type Channels = keyof IpcDefinition;