@pipelab/shared 1.0.0-beta.5 → 1.0.0-beta.7
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 +5 -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/src/ipc.types.ts +2 -0
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,21 @@
|
|
|
1
1
|
# @pipelab/shared
|
|
2
2
|
|
|
3
|
+
## 1.0.0-beta.7
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- bump
|
|
8
|
+
- Updated dependencies
|
|
9
|
+
- @pipelab/migration@1.0.0-beta.7
|
|
10
|
+
|
|
11
|
+
## 1.0.0-beta.6
|
|
12
|
+
|
|
13
|
+
### Patch Changes
|
|
14
|
+
|
|
15
|
+
- fixes
|
|
16
|
+
- Updated dependencies
|
|
17
|
+
- @pipelab/migration@1.0.0-beta.6
|
|
18
|
+
|
|
3
19
|
## 1.0.0-beta.5
|
|
4
20
|
|
|
5
21
|
### Patch Changes
|
package/dist/index.d.mts
CHANGED
|
@@ -1294,6 +1294,9 @@ type IpcDefinition$1 = {
|
|
|
1294
1294
|
} | {
|
|
1295
1295
|
type: "ready";
|
|
1296
1296
|
}];
|
|
1297
|
+
"plugin:loaded": [void, {
|
|
1298
|
+
plugin: RendererPluginDefinition;
|
|
1299
|
+
}];
|
|
1297
1300
|
};
|
|
1298
1301
|
type Channels = keyof IpcDefinition$1;
|
|
1299
1302
|
declare const ShellChannels: Channels[];
|
|
@@ -2190,6 +2193,8 @@ type IpcDefinition = {
|
|
|
2190
2193
|
"log:message": [ILogObjMeta, EndEvent<void>];
|
|
2191
2194
|
"update:set-status": [{
|
|
2192
2195
|
status: UpdateStatus;
|
|
2196
|
+
downloadUrl?: string;
|
|
2197
|
+
version?: string;
|
|
2193
2198
|
}, EndEvent<void>];
|
|
2194
2199
|
};
|
|
2195
2200
|
type RendererChannels = keyof IpcDefinition;
|