@pipelab/shared 1.0.0-beta.11 → 1.0.0-beta.12

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": "1.0.0-beta.11",
3
+ "version": "1.0.0-beta.12",
4
4
  "private": false,
5
5
  "description": "Shared logic and types for the Pipelab ecosystem",
6
6
  "license": "FSL-1.1-MIT",
@@ -37,15 +37,15 @@
37
37
  "tslog": "4.9.3",
38
38
  "type-fest": "4.26.1",
39
39
  "valibot": "0.42.1",
40
- "@pipelab/constants": "1.0.0-beta.13",
41
- "@pipelab/migration": "1.0.0-beta.11"
40
+ "@pipelab/constants": "1.0.0-beta.14",
41
+ "@pipelab/migration": "1.0.0-beta.12"
42
42
  },
43
43
  "devDependencies": {
44
44
  "esbuild-plugin-wasm": "1.1.0",
45
45
  "tsdown": "0.21.2",
46
46
  "typescript": "5.9.3",
47
47
  "vitest": "3.1.4",
48
- "@pipelab/tsconfig": "1.0.0-beta.11"
48
+ "@pipelab/tsconfig": "1.0.0-beta.12"
49
49
  },
50
50
  "scripts": {
51
51
  "build": "tsdown",
package/src/apis.ts CHANGED
@@ -161,7 +161,7 @@ export type IpcDefinition = {
161
161
  EndEvent<{ data: any | null; error: any | null }>,
162
162
  ];
163
163
  "agent:version:get": [void, EndEvent<{ version: string }>];
164
- "startup:progress": [void, { type: "progress"; data: { message: string } } | { type: "ready" }];
164
+ "startup:progress": [void, { type: "progress"; data: { message: string } } | { type: "ready" } | { type: "done" }];
165
165
  "plugin:loaded": [void, { plugin: RendererPluginDefinition }];
166
166
  "plugin:search": [
167
167
  { query: string },