@pipelab/shared 1.0.0-beta.18 → 1.0.0-beta.21

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,32 @@
1
1
  # @pipelab/shared
2
2
 
3
+ ## 1.0.0-beta.21
4
+
5
+ ### Patch Changes
6
+
7
+ - sd
8
+ - Updated dependencies
9
+ - @pipelab/constants@1.0.0-beta.23
10
+ - @pipelab/migration@1.0.0-beta.21
11
+
12
+ ## 1.0.0-beta.20
13
+
14
+ ### Patch Changes
15
+
16
+ - sd
17
+ - Updated dependencies
18
+ - @pipelab/constants@1.0.0-beta.22
19
+ - @pipelab/migration@1.0.0-beta.20
20
+
21
+ ## 1.0.0-beta.19
22
+
23
+ ### Patch Changes
24
+
25
+ - sd
26
+ - Updated dependencies
27
+ - @pipelab/constants@1.0.0-beta.21
28
+ - @pipelab/migration@1.0.0-beta.19
29
+
3
30
  ## 1.0.0-beta.18
4
31
 
5
32
  ### Patch Changes
package/dist/index.d.mts CHANGED
@@ -102,6 +102,7 @@ interface ControlTypePath extends ControlTypeBase {
102
102
  type: "path";
103
103
  options: OpenDialogOptions$1;
104
104
  label?: string;
105
+ warnIfBlacklisted?: boolean;
105
106
  }
106
107
  interface ControlTypeJSON extends ControlTypeBase {
107
108
  type: "json";
@@ -1498,6 +1499,11 @@ type IpcDefinition = {
1498
1499
  mtime: number;
1499
1500
  }[];
1500
1501
  }>];
1502
+ "fs:isPathBlacklisted": [{
1503
+ path: string;
1504
+ }, EndEvent$1<{
1505
+ isBlacklisted: boolean;
1506
+ }>];
1501
1507
  "fs:getHomeDirectory": [void, EndEvent$1<{
1502
1508
  path: string;
1503
1509
  }>];