@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/CHANGELOG.md CHANGED
@@ -1,5 +1,21 @@
1
1
  # @pipelab/shared
2
2
 
3
+ ## 2.0.1-latest.35
4
+
5
+ ### Patch Changes
6
+
7
+ - sdfc
8
+ - Updated dependencies
9
+ - @pipelab/migration@1.0.1-latest.34
10
+
11
+ ## 2.0.1-latest.34
12
+
13
+ ### Patch Changes
14
+
15
+ - qsd
16
+ - Updated dependencies
17
+ - @pipelab/migration@1.0.1-latest.33
18
+
3
19
  ## 2.0.1-latest.33
4
20
 
5
21
  ### Patch Changes
package/dist/index.d.mts CHANGED
@@ -1286,6 +1286,14 @@ type IpcDefinition$1 = {
1286
1286
  "agent:version:get": [void, EndEvent$1<{
1287
1287
  version: string;
1288
1288
  }>];
1289
+ "startup:progress": [void, {
1290
+ type: "progress";
1291
+ data: {
1292
+ message: string;
1293
+ };
1294
+ } | {
1295
+ type: "ready";
1296
+ }];
1289
1297
  };
1290
1298
  type Channels = keyof IpcDefinition$1;
1291
1299
  declare const ShellChannels: Channels[];