@pipelab/plugin-poki 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.cjs +344 -341
- package/dist/index.mjs +13 -10
- package/dist/index.mjs.map +1 -1
- package/package.json +4 -4
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
|
|
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
|
-
|
|
2518
|
+
cacheFolder: optional(string()),
|
|
2519
|
+
tempFolder: optional(string())
|
|
2520
2520
|
});
|
|
2521
2521
|
const ConnectionValidator = looseObject({
|
|
2522
2522
|
id: string(),
|
|
@@ -150626,7 +150626,9 @@ var require_error = /* @__PURE__ */ __commonJSMin(((exports, module) => {
|
|
|
150626
150626
|
}
|
|
150627
150627
|
})();
|
|
150628
150628
|
}));
|
|
150629
|
-
|
|
150629
|
+
//#endregion
|
|
150630
|
+
//#region ../../node_modules/serve-handler/src/index.js
|
|
150631
|
+
var require_src = /* @__PURE__ */ __commonJSMin(((exports, module) => {
|
|
150630
150632
|
const { promisify: promisify$1 } = __require("util");
|
|
150631
150633
|
const path$1 = __require("path");
|
|
150632
150634
|
const { createHash } = __require("crypto");
|
|
@@ -151078,11 +151080,12 @@ var require_error = /* @__PURE__ */ __commonJSMin(((exports, module) => {
|
|
|
151078
151080
|
response.writeHead(response.statusCode || 200, headers);
|
|
151079
151081
|
stream.pipe(response);
|
|
151080
151082
|
};
|
|
151081
|
-
}))
|
|
151082
|
-
var import_semver = /* @__PURE__ */ __toESM(require_semver(), 1);
|
|
151083
|
-
var import_lib = /* @__PURE__ */ __toESM(require_lib(), 1);
|
|
151083
|
+
}));
|
|
151084
151084
|
//#endregion
|
|
151085
151085
|
//#region ../../packages/core-node/src/server.ts
|
|
151086
|
+
var import_semver = /* @__PURE__ */ __toESM(require_semver(), 1);
|
|
151087
|
+
var import_lib = /* @__PURE__ */ __toESM(require_lib(), 1);
|
|
151088
|
+
require_src();
|
|
151086
151089
|
const sendStartupProgress = (message) => {
|
|
151087
151090
|
console.log(`[Startup Progress] ${message}`);
|
|
151088
151091
|
webSocketServer.broadcast("startup:progress", {
|