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