@pipelab/cli 2.0.0-beta.18 → 2.0.0-beta.19
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/config-B-M_kmKR.mjs +4 -0
- package/{config-wyW8CcHw.mjs → config-C4SmHbuE.mjs} +52 -23
- package/index.mjs +803 -92
- package/package.json +1 -1
- package/src-5EzZR-UT.mjs +5 -0
- package/{src-Cgn6322X.mjs → src-CoHipk5y.mjs} +13 -17
- package/src-DU3j_v2A.mjs +3 -0
- package/config-Cjh-mvRR.mjs +0 -4
- package/src-BmqReRBI.mjs +0 -3
- package/src-DhNbRNuq.mjs +0 -5
package/package.json
CHANGED
package/src-5EzZR-UT.mjs
ADDED
|
@@ -2093,10 +2093,9 @@ const defaultAppSettings = settingsMigratorInternal.createDefault({
|
|
|
2093
2093
|
completed: false
|
|
2094
2094
|
}
|
|
2095
2095
|
},
|
|
2096
|
-
plugins: DEFAULT_PLUGINS
|
|
2097
|
-
isInternalMigrationBannerClosed: false
|
|
2096
|
+
plugins: DEFAULT_PLUGINS
|
|
2098
2097
|
});
|
|
2099
|
-
const appSettingsMigrator = settingsMigratorInternal.createMigrations({
|
|
2098
|
+
const appSettingsMigrator$1 = settingsMigratorInternal.createMigrations({
|
|
2100
2099
|
defaultValue: defaultAppSettings,
|
|
2101
2100
|
migrations: [
|
|
2102
2101
|
createMigration({
|
|
@@ -2145,12 +2144,12 @@ const appSettingsMigrator = settingsMigratorInternal.createMigrations({
|
|
|
2145
2144
|
createMigration({
|
|
2146
2145
|
version: "6.0.0",
|
|
2147
2146
|
up: (state) => {
|
|
2148
|
-
const { cacheFolder
|
|
2147
|
+
const { cacheFolder, clearTemporaryFoldersOnPipelineEnd: __, ...rest } = state;
|
|
2149
2148
|
return {
|
|
2150
2149
|
...rest,
|
|
2150
|
+
cacheFolder,
|
|
2151
2151
|
agents: [],
|
|
2152
|
-
plugins: DEFAULT_PLUGINS
|
|
2153
|
-
isInternalMigrationBannerClosed: false
|
|
2152
|
+
plugins: DEFAULT_PLUGINS
|
|
2154
2153
|
};
|
|
2155
2154
|
}
|
|
2156
2155
|
}),
|
|
@@ -2165,7 +2164,7 @@ const defaultConnections = connectionsMigratorInternal.createDefault({
|
|
|
2165
2164
|
version: "1.0.0",
|
|
2166
2165
|
connections: []
|
|
2167
2166
|
});
|
|
2168
|
-
const connectionsMigrator = connectionsMigratorInternal.createMigrations({
|
|
2167
|
+
const connectionsMigrator$1 = connectionsMigratorInternal.createMigrations({
|
|
2169
2168
|
defaultValue: defaultConnections,
|
|
2170
2169
|
migrations: [createMigration({
|
|
2171
2170
|
version: "1.0.0",
|
|
@@ -2182,7 +2181,7 @@ const defaultFileRepo = fileRepoMigratorInternal.createDefault({
|
|
|
2182
2181
|
}],
|
|
2183
2182
|
pipelines: []
|
|
2184
2183
|
});
|
|
2185
|
-
const fileRepoMigrations = fileRepoMigratorInternal.createMigrations({
|
|
2184
|
+
const fileRepoMigrations$1 = fileRepoMigratorInternal.createMigrations({
|
|
2186
2185
|
defaultValue: defaultFileRepo,
|
|
2187
2186
|
migrations: [
|
|
2188
2187
|
createMigration({
|
|
@@ -2344,12 +2343,6 @@ const getStrictPluginId = (pluginId) => {
|
|
|
2344
2343
|
if (!pluginId) return pluginId;
|
|
2345
2344
|
return LEGACY_ID_MAP[pluginId] || pluginId;
|
|
2346
2345
|
};
|
|
2347
|
-
const configRegistry$1 = {
|
|
2348
|
-
settings: appSettingsMigrator,
|
|
2349
|
-
projects: fileRepoMigrations,
|
|
2350
|
-
pipeline: savedFileMigrator$1,
|
|
2351
|
-
connections: connectionsMigrator
|
|
2352
|
-
};
|
|
2353
2346
|
//#endregion
|
|
2354
2347
|
//#region ../../packages/shared/src/save-location.ts
|
|
2355
2348
|
const SaveLocationInternalValidator = object({
|
|
@@ -2512,7 +2505,8 @@ object({
|
|
|
2512
2505
|
enabled: boolean(),
|
|
2513
2506
|
description: string()
|
|
2514
2507
|
})),
|
|
2515
|
-
|
|
2508
|
+
cacheFolder: optional(string()),
|
|
2509
|
+
tempFolder: optional(string())
|
|
2516
2510
|
});
|
|
2517
2511
|
const ConnectionValidator = looseObject({
|
|
2518
2512
|
id: string(),
|
|
@@ -32371,7 +32365,9 @@ const isWebSocketRequestMessage = (message) => {
|
|
|
32371
32365
|
};
|
|
32372
32366
|
//#endregion
|
|
32373
32367
|
//#region ../../packages/shared/src/index.ts
|
|
32368
|
+
const appSettingsMigrator = appSettingsMigrator$1;
|
|
32369
|
+
const fileRepoMigrations = fileRepoMigrations$1;
|
|
32374
32370
|
const savedFileMigrator = savedFileMigrator$1;
|
|
32375
|
-
const
|
|
32371
|
+
const connectionsMigrator = connectionsMigrator$1;
|
|
32376
32372
|
//#endregion
|
|
32377
|
-
export {
|
|
32373
|
+
export { SaveLocationValidator as A, fmt as C, SaveLocationExternalValidator as D, FileRepoProjectValidatorV2 as E, SaveLocationInternalValidator as O, createQuickJsFromVariant as S, ConnectionValidator as T, VariableValidatorV1 as _, WebSocketError as a, makeResolvedParams as b, transformUrl as c, SubscriptionRequiredError as d, usePlugins as f, SavedFileSimpleValidatorV4 as g, SavedFileDefaultValidatorV4 as h, savedFileMigrator as i, SaveLocationPipelabCloudValidator as k, isSupabaseAvailable as l, OriginValidator as m, connectionsMigrator as n, isWebSocketRequestMessage as o, EditorParamValidatorV3 as p, fileRepoMigrations as r, isRequired as s, appSettingsMigrator as t, supabase as u, processGraph as v, useLogger as w, createQuickJs as x, variableToFormattedVariable as y };
|
package/src-DU3j_v2A.mjs
ADDED
package/config-Cjh-mvRR.mjs
DELETED
package/src-BmqReRBI.mjs
DELETED