@pipelab/plugin-nvpatch 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
@@ -9629,8 +9629,7 @@ const defaultAppSettings = settingsMigratorInternal.createDefault({
9629
9629
  completed: false
9630
9630
  }
9631
9631
  },
9632
- plugins: DEFAULT_PLUGINS,
9633
- isInternalMigrationBannerClosed: false
9632
+ plugins: DEFAULT_PLUGINS
9634
9633
  });
9635
9634
  settingsMigratorInternal.createMigrations({
9636
9635
  defaultValue: defaultAppSettings,
@@ -9681,12 +9680,12 @@ settingsMigratorInternal.createMigrations({
9681
9680
  createMigration({
9682
9681
  version: "6.0.0",
9683
9682
  up: (state) => {
9684
- const { cacheFolder: _, clearTemporaryFoldersOnPipelineEnd: __, ...rest } = state;
9683
+ const { cacheFolder, clearTemporaryFoldersOnPipelineEnd: __, ...rest } = state;
9685
9684
  return {
9686
9685
  ...rest,
9686
+ cacheFolder,
9687
9687
  agents: [],
9688
- plugins: DEFAULT_PLUGINS,
9689
- isInternalMigrationBannerClosed: false
9688
+ plugins: DEFAULT_PLUGINS
9690
9689
  };
9691
9690
  }
9692
9691
  }),
@@ -10039,7 +10038,8 @@ object({
10039
10038
  enabled: boolean(),
10040
10039
  description: string()
10041
10040
  })),
10042
- isInternalMigrationBannerClosed: optional(boolean(), false)
10041
+ cacheFolder: optional(string()),
10042
+ tempFolder: optional(string())
10043
10043
  });
10044
10044
  const ConnectionValidator = looseObject({
10045
10045
  id: string(),
@@ -154643,7 +154643,9 @@ var require_error = /* @__PURE__ */ __commonJSMin(((exports, module) => {
154643
154643
  }
154644
154644
  })();
154645
154645
  }));
154646
- (/* @__PURE__ */ __commonJSMin(((exports, module) => {
154646
+ //#endregion
154647
+ //#region ../../node_modules/serve-handler/src/index.js
154648
+ var require_src = /* @__PURE__ */ __commonJSMin(((exports, module) => {
154647
154649
  const { promisify: promisify$1 } = __require("util");
154648
154650
  const path$1 = __require("path");
154649
154651
  const { createHash } = __require("crypto");
@@ -155095,9 +155097,10 @@ var require_error = /* @__PURE__ */ __commonJSMin(((exports, module) => {
155095
155097
  response.writeHead(response.statusCode || 200, headers);
155096
155098
  stream.pipe(response);
155097
155099
  };
155098
- })))();
155100
+ }));
155099
155101
  require_semver();
155100
155102
  require_lib();
155103
+ require_src();
155101
155104
  //#endregion
155102
155105
  //#region ../../packages/core-node/src/handler-func.ts
155103
155106
  const { join: join$1 } = path;