@pipelab/plugin-filesystem 1.0.0-beta.19 → 1.0.0-beta.20

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/dist/index.mjs CHANGED
@@ -2106,8 +2106,7 @@ const defaultAppSettings = settingsMigratorInternal.createDefault({
2106
2106
  completed: false
2107
2107
  }
2108
2108
  },
2109
- plugins: DEFAULT_PLUGINS,
2110
- isInternalMigrationBannerClosed: false
2109
+ plugins: DEFAULT_PLUGINS
2111
2110
  });
2112
2111
  settingsMigratorInternal.createMigrations({
2113
2112
  defaultValue: defaultAppSettings,
@@ -2158,12 +2157,12 @@ settingsMigratorInternal.createMigrations({
2158
2157
  createMigration({
2159
2158
  version: "6.0.0",
2160
2159
  up: (state) => {
2161
- const { cacheFolder: _, clearTemporaryFoldersOnPipelineEnd: __, ...rest } = state;
2160
+ const { cacheFolder, clearTemporaryFoldersOnPipelineEnd: __, ...rest } = state;
2162
2161
  return {
2163
2162
  ...rest,
2163
+ cacheFolder,
2164
2164
  agents: [],
2165
- plugins: DEFAULT_PLUGINS,
2166
- isInternalMigrationBannerClosed: false
2165
+ plugins: DEFAULT_PLUGINS
2167
2166
  };
2168
2167
  }
2169
2168
  }),
@@ -2516,7 +2515,8 @@ object({
2516
2515
  enabled: boolean(),
2517
2516
  description: string()
2518
2517
  })),
2519
- isInternalMigrationBannerClosed: optional(boolean(), false)
2518
+ cacheFolder: optional(string()),
2519
+ tempFolder: optional(string())
2520
2520
  });
2521
2521
  const ConnectionValidator = looseObject({
2522
2522
  id: string(),
@@ -150463,7 +150463,9 @@ var require_error = /* @__PURE__ */ __commonJSMin(((exports, module) => {
150463
150463
  }
150464
150464
  })();
150465
150465
  }));
150466
- (/* @__PURE__ */ __commonJSMin(((exports, module) => {
150466
+ //#endregion
150467
+ //#region ../../node_modules/serve-handler/src/index.js
150468
+ var require_src = /* @__PURE__ */ __commonJSMin(((exports, module) => {
150467
150469
  const { promisify: promisify$1 } = __require("util");
150468
150470
  const path$2 = __require("path");
150469
150471
  const { createHash } = __require("crypto");
@@ -150915,9 +150917,10 @@ var require_error = /* @__PURE__ */ __commonJSMin(((exports, module) => {
150915
150917
  response.writeHead(response.statusCode || 200, headers);
150916
150918
  stream.pipe(response);
150917
150919
  };
150918
- })))();
150920
+ }));
150919
150921
  require_semver();
150920
150922
  require_lib();
150923
+ require_src();
150921
150924
  //#endregion
150922
150925
  //#region ../../packages/core-node/src/handler-func.ts
150923
150926
  const { join: join$1 } = path;