@pipelab/shared 2.0.1-latest.32 → 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/CHANGELOG.md +16 -0
- package/dist/index.d.mts +6 -0
- package/dist/index.d.mts.map +1 -1
- package/dist/index.mjs.map +1 -1
- package/package.json +3 -3
- package/src/apis.ts +1 -0
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,21 @@
|
|
|
1
1
|
# @pipelab/shared
|
|
2
2
|
|
|
3
|
+
## 2.0.1-latest.34
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- qsd
|
|
8
|
+
- Updated dependencies
|
|
9
|
+
- @pipelab/migration@1.0.1-latest.33
|
|
10
|
+
|
|
11
|
+
## 2.0.1-latest.33
|
|
12
|
+
|
|
13
|
+
### Patch Changes
|
|
14
|
+
|
|
15
|
+
- sdq
|
|
16
|
+
- Updated dependencies
|
|
17
|
+
- @pipelab/migration@1.0.1-latest.32
|
|
18
|
+
|
|
3
19
|
## 2.0.1-latest.32
|
|
4
20
|
|
|
5
21
|
### Patch Changes
|
package/dist/index.d.mts
CHANGED
|
@@ -1286,6 +1286,12 @@ 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
|
+
}];
|
|
1289
1295
|
};
|
|
1290
1296
|
type Channels = keyof IpcDefinition$1;
|
|
1291
1297
|
declare const ShellChannels: Channels[];
|