@pipelab/plugin-core 1.0.0-beta.2 → 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 +1220 -585
- package/dist/index.d.cts +2 -38
- package/dist/index.d.cts.map +1 -1
- package/dist/index.d.mts +2 -38
- package/dist/index.d.mts.map +1 -1
- package/dist/index.mjs +1200 -580
- package/dist/index.mjs.map +1 -1
- package/package.json +15 -6
package/dist/index.mjs
CHANGED
|
@@ -2,11 +2,10 @@ import { o as debugLog, t as QuickJSEmscriptenModuleError } from "./chunk-JTKJZQ
|
|
|
2
2
|
import { hostname } from "os";
|
|
3
3
|
import { normalize } from "path";
|
|
4
4
|
import { formatWithOptions, types } from "util";
|
|
5
|
-
import { PipelabContext, downloadFile, fetchPackage, fetchPipelabAsset, fetchPipelabCli, fetchPipelabPlugin, runPnpm, runWithLiveLogs } from "@pipelab/core-node";
|
|
6
|
-
import { access, mkdir, mkdtemp, realpath, writeFile } from "node:fs/promises";
|
|
7
|
-
import { dirname, join } from "node:path";
|
|
8
|
-
import { tmpdir } from "node:os";
|
|
5
|
+
import { PipelabContext, downloadFile, ensure, fetchPackage, fetchPipelabAsset, fetchPipelabCli, fetchPipelabPlugin, runPnpm, runWithLiveLogs } from "@pipelab/core-node";
|
|
9
6
|
import { createWriteStream } from "node:fs";
|
|
7
|
+
import { access, mkdir } from "node:fs/promises";
|
|
8
|
+
import { dirname, join } from "node:path";
|
|
10
9
|
import tar from "tar";
|
|
11
10
|
import yauzl from "yauzl";
|
|
12
11
|
import archiver from "archiver";
|
|
@@ -47,29 +46,21 @@ var __toESM = (mod, isNodeMode, target) => (target = mod != null ? __create(__ge
|
|
|
47
46
|
var __toCommonJS = (mod) => __hasOwnProp.call(mod, "module.exports") ? mod["module.exports"] : __copyProps(__defProp({}, "__esModule", { value: true }), mod);
|
|
48
47
|
//#endregion
|
|
49
48
|
//#region ../../packages/migration/src/models/createMigration.ts
|
|
50
|
-
function createMigration(migration) {
|
|
49
|
+
function createMigration$1(migration) {
|
|
51
50
|
return {
|
|
52
51
|
version: migration.version,
|
|
53
52
|
up: async (state, nextVersion) => {
|
|
54
|
-
const newState = await migration.up(state, nextVersion);
|
|
55
|
-
newState.version = nextVersion;
|
|
56
|
-
return newState;
|
|
57
|
-
},
|
|
58
|
-
down: async (state, nextVersion) => {
|
|
59
|
-
const newState = await migration.down(state, nextVersion);
|
|
53
|
+
const newState = migration.up ? await migration.up(state, nextVersion) : state;
|
|
60
54
|
newState.version = nextVersion;
|
|
61
55
|
return newState;
|
|
62
56
|
}
|
|
63
57
|
};
|
|
64
58
|
}
|
|
65
|
-
const initialVersion = () => {
|
|
66
|
-
throw new Error("Unable to go down on the initial version!");
|
|
67
|
-
};
|
|
68
59
|
const finalVersion = () => {
|
|
69
60
|
throw new Error("Unable to go up on the final version!");
|
|
70
61
|
};
|
|
71
62
|
//#endregion
|
|
72
|
-
//#region ../../node_modules/semver/internal/constants.js
|
|
63
|
+
//#region ../../packages/migration/node_modules/semver/internal/constants.js
|
|
73
64
|
var require_constants$2 = /* @__PURE__ */ __commonJSMin(((exports, module) => {
|
|
74
65
|
const SEMVER_SPEC_VERSION = "2.0.0";
|
|
75
66
|
const MAX_LENGTH = 256;
|
|
@@ -94,12 +85,12 @@ var require_constants$2 = /* @__PURE__ */ __commonJSMin(((exports, module) => {
|
|
|
94
85
|
};
|
|
95
86
|
}));
|
|
96
87
|
//#endregion
|
|
97
|
-
//#region ../../node_modules/semver/internal/debug.js
|
|
88
|
+
//#region ../../packages/migration/node_modules/semver/internal/debug.js
|
|
98
89
|
var require_debug = /* @__PURE__ */ __commonJSMin(((exports, module) => {
|
|
99
90
|
module.exports = typeof process === "object" && process.env && process.env.NODE_DEBUG && /\bsemver\b/i.test(process.env.NODE_DEBUG) ? (...args) => console.error("SEMVER", ...args) : () => {};
|
|
100
91
|
}));
|
|
101
92
|
//#endregion
|
|
102
|
-
//#region ../../node_modules/semver/internal/re.js
|
|
93
|
+
//#region ../../packages/migration/node_modules/semver/internal/re.js
|
|
103
94
|
var require_re = /* @__PURE__ */ __commonJSMin(((exports, module) => {
|
|
104
95
|
const { MAX_SAFE_COMPONENT_LENGTH, MAX_SAFE_BUILD_LENGTH, MAX_LENGTH } = require_constants$2();
|
|
105
96
|
const debug = require_debug();
|
|
@@ -178,7 +169,7 @@ var require_re = /* @__PURE__ */ __commonJSMin(((exports, module) => {
|
|
|
178
169
|
createToken("GTE0PRE", "^\\s*>=\\s*0\\.0\\.0-0\\s*$");
|
|
179
170
|
}));
|
|
180
171
|
//#endregion
|
|
181
|
-
//#region ../../node_modules/semver/internal/parse-options.js
|
|
172
|
+
//#region ../../packages/migration/node_modules/semver/internal/parse-options.js
|
|
182
173
|
var require_parse_options = /* @__PURE__ */ __commonJSMin(((exports, module) => {
|
|
183
174
|
const looseOption = Object.freeze({ loose: true });
|
|
184
175
|
const emptyOpts = Object.freeze({});
|
|
@@ -190,7 +181,7 @@ var require_parse_options = /* @__PURE__ */ __commonJSMin(((exports, module) =>
|
|
|
190
181
|
module.exports = parseOptions;
|
|
191
182
|
}));
|
|
192
183
|
//#endregion
|
|
193
|
-
//#region ../../node_modules/semver/internal/identifiers.js
|
|
184
|
+
//#region ../../packages/migration/node_modules/semver/internal/identifiers.js
|
|
194
185
|
var require_identifiers = /* @__PURE__ */ __commonJSMin(((exports, module) => {
|
|
195
186
|
const numeric = /^[0-9]+$/;
|
|
196
187
|
const compareIdentifiers = (a, b) => {
|
|
@@ -210,7 +201,7 @@ var require_identifiers = /* @__PURE__ */ __commonJSMin(((exports, module) => {
|
|
|
210
201
|
};
|
|
211
202
|
}));
|
|
212
203
|
//#endregion
|
|
213
|
-
//#region ../../node_modules/semver/classes/semver.js
|
|
204
|
+
//#region ../../packages/migration/node_modules/semver/classes/semver.js
|
|
214
205
|
var require_semver$1 = /* @__PURE__ */ __commonJSMin(((exports, module) => {
|
|
215
206
|
const debug = require_debug();
|
|
216
207
|
const { MAX_LENGTH, MAX_SAFE_INTEGER } = require_constants$2();
|
|
@@ -388,7 +379,7 @@ var require_semver$1 = /* @__PURE__ */ __commonJSMin(((exports, module) => {
|
|
|
388
379
|
};
|
|
389
380
|
}));
|
|
390
381
|
//#endregion
|
|
391
|
-
//#region ../../node_modules/semver/functions/parse.js
|
|
382
|
+
//#region ../../packages/migration/node_modules/semver/functions/parse.js
|
|
392
383
|
var require_parse = /* @__PURE__ */ __commonJSMin(((exports, module) => {
|
|
393
384
|
const SemVer = require_semver$1();
|
|
394
385
|
const parse = (version, options, throwErrors = false) => {
|
|
@@ -403,7 +394,7 @@ var require_parse = /* @__PURE__ */ __commonJSMin(((exports, module) => {
|
|
|
403
394
|
module.exports = parse;
|
|
404
395
|
}));
|
|
405
396
|
//#endregion
|
|
406
|
-
//#region ../../node_modules/semver/functions/valid.js
|
|
397
|
+
//#region ../../packages/migration/node_modules/semver/functions/valid.js
|
|
407
398
|
var require_valid$1 = /* @__PURE__ */ __commonJSMin(((exports, module) => {
|
|
408
399
|
const parse = require_parse();
|
|
409
400
|
const valid = (version, options) => {
|
|
@@ -413,7 +404,7 @@ var require_valid$1 = /* @__PURE__ */ __commonJSMin(((exports, module) => {
|
|
|
413
404
|
module.exports = valid;
|
|
414
405
|
}));
|
|
415
406
|
//#endregion
|
|
416
|
-
//#region ../../node_modules/semver/functions/clean.js
|
|
407
|
+
//#region ../../packages/migration/node_modules/semver/functions/clean.js
|
|
417
408
|
var require_clean = /* @__PURE__ */ __commonJSMin(((exports, module) => {
|
|
418
409
|
const parse = require_parse();
|
|
419
410
|
const clean = (version, options) => {
|
|
@@ -423,7 +414,7 @@ var require_clean = /* @__PURE__ */ __commonJSMin(((exports, module) => {
|
|
|
423
414
|
module.exports = clean;
|
|
424
415
|
}));
|
|
425
416
|
//#endregion
|
|
426
|
-
//#region ../../node_modules/semver/functions/inc.js
|
|
417
|
+
//#region ../../packages/migration/node_modules/semver/functions/inc.js
|
|
427
418
|
var require_inc = /* @__PURE__ */ __commonJSMin(((exports, module) => {
|
|
428
419
|
const SemVer = require_semver$1();
|
|
429
420
|
const inc = (version, release, options, identifier, identifierBase) => {
|
|
@@ -441,7 +432,7 @@ var require_inc = /* @__PURE__ */ __commonJSMin(((exports, module) => {
|
|
|
441
432
|
module.exports = inc;
|
|
442
433
|
}));
|
|
443
434
|
//#endregion
|
|
444
|
-
//#region ../../node_modules/semver/functions/diff.js
|
|
435
|
+
//#region ../../packages/migration/node_modules/semver/functions/diff.js
|
|
445
436
|
var require_diff = /* @__PURE__ */ __commonJSMin(((exports, module) => {
|
|
446
437
|
const parse = require_parse();
|
|
447
438
|
const diff = (version1, version2) => {
|
|
@@ -469,28 +460,28 @@ var require_diff = /* @__PURE__ */ __commonJSMin(((exports, module) => {
|
|
|
469
460
|
module.exports = diff;
|
|
470
461
|
}));
|
|
471
462
|
//#endregion
|
|
472
|
-
//#region ../../node_modules/semver/functions/major.js
|
|
463
|
+
//#region ../../packages/migration/node_modules/semver/functions/major.js
|
|
473
464
|
var require_major = /* @__PURE__ */ __commonJSMin(((exports, module) => {
|
|
474
465
|
const SemVer = require_semver$1();
|
|
475
466
|
const major = (a, loose) => new SemVer(a, loose).major;
|
|
476
467
|
module.exports = major;
|
|
477
468
|
}));
|
|
478
469
|
//#endregion
|
|
479
|
-
//#region ../../node_modules/semver/functions/minor.js
|
|
470
|
+
//#region ../../packages/migration/node_modules/semver/functions/minor.js
|
|
480
471
|
var require_minor = /* @__PURE__ */ __commonJSMin(((exports, module) => {
|
|
481
472
|
const SemVer = require_semver$1();
|
|
482
473
|
const minor = (a, loose) => new SemVer(a, loose).minor;
|
|
483
474
|
module.exports = minor;
|
|
484
475
|
}));
|
|
485
476
|
//#endregion
|
|
486
|
-
//#region ../../node_modules/semver/functions/patch.js
|
|
477
|
+
//#region ../../packages/migration/node_modules/semver/functions/patch.js
|
|
487
478
|
var require_patch = /* @__PURE__ */ __commonJSMin(((exports, module) => {
|
|
488
479
|
const SemVer = require_semver$1();
|
|
489
480
|
const patch = (a, loose) => new SemVer(a, loose).patch;
|
|
490
481
|
module.exports = patch;
|
|
491
482
|
}));
|
|
492
483
|
//#endregion
|
|
493
|
-
//#region ../../node_modules/semver/functions/prerelease.js
|
|
484
|
+
//#region ../../packages/migration/node_modules/semver/functions/prerelease.js
|
|
494
485
|
var require_prerelease = /* @__PURE__ */ __commonJSMin(((exports, module) => {
|
|
495
486
|
const parse = require_parse();
|
|
496
487
|
const prerelease = (version, options) => {
|
|
@@ -500,28 +491,28 @@ var require_prerelease = /* @__PURE__ */ __commonJSMin(((exports, module) => {
|
|
|
500
491
|
module.exports = prerelease;
|
|
501
492
|
}));
|
|
502
493
|
//#endregion
|
|
503
|
-
//#region ../../node_modules/semver/functions/compare.js
|
|
494
|
+
//#region ../../packages/migration/node_modules/semver/functions/compare.js
|
|
504
495
|
var require_compare = /* @__PURE__ */ __commonJSMin(((exports, module) => {
|
|
505
496
|
const SemVer = require_semver$1();
|
|
506
497
|
const compare = (a, b, loose) => new SemVer(a, loose).compare(new SemVer(b, loose));
|
|
507
498
|
module.exports = compare;
|
|
508
499
|
}));
|
|
509
500
|
//#endregion
|
|
510
|
-
//#region ../../node_modules/semver/functions/rcompare.js
|
|
501
|
+
//#region ../../packages/migration/node_modules/semver/functions/rcompare.js
|
|
511
502
|
var require_rcompare = /* @__PURE__ */ __commonJSMin(((exports, module) => {
|
|
512
503
|
const compare = require_compare();
|
|
513
504
|
const rcompare = (a, b, loose) => compare(b, a, loose);
|
|
514
505
|
module.exports = rcompare;
|
|
515
506
|
}));
|
|
516
507
|
//#endregion
|
|
517
|
-
//#region ../../node_modules/semver/functions/compare-loose.js
|
|
508
|
+
//#region ../../packages/migration/node_modules/semver/functions/compare-loose.js
|
|
518
509
|
var require_compare_loose = /* @__PURE__ */ __commonJSMin(((exports, module) => {
|
|
519
510
|
const compare = require_compare();
|
|
520
511
|
const compareLoose = (a, b) => compare(a, b, true);
|
|
521
512
|
module.exports = compareLoose;
|
|
522
513
|
}));
|
|
523
514
|
//#endregion
|
|
524
|
-
//#region ../../node_modules/semver/functions/compare-build.js
|
|
515
|
+
//#region ../../packages/migration/node_modules/semver/functions/compare-build.js
|
|
525
516
|
var require_compare_build = /* @__PURE__ */ __commonJSMin(((exports, module) => {
|
|
526
517
|
const SemVer = require_semver$1();
|
|
527
518
|
const compareBuild = (a, b, loose) => {
|
|
@@ -532,63 +523,63 @@ var require_compare_build = /* @__PURE__ */ __commonJSMin(((exports, module) =>
|
|
|
532
523
|
module.exports = compareBuild;
|
|
533
524
|
}));
|
|
534
525
|
//#endregion
|
|
535
|
-
//#region ../../node_modules/semver/functions/sort.js
|
|
526
|
+
//#region ../../packages/migration/node_modules/semver/functions/sort.js
|
|
536
527
|
var require_sort = /* @__PURE__ */ __commonJSMin(((exports, module) => {
|
|
537
528
|
const compareBuild = require_compare_build();
|
|
538
529
|
const sort = (list, loose) => list.sort((a, b) => compareBuild(a, b, loose));
|
|
539
530
|
module.exports = sort;
|
|
540
531
|
}));
|
|
541
532
|
//#endregion
|
|
542
|
-
//#region ../../node_modules/semver/functions/rsort.js
|
|
533
|
+
//#region ../../packages/migration/node_modules/semver/functions/rsort.js
|
|
543
534
|
var require_rsort = /* @__PURE__ */ __commonJSMin(((exports, module) => {
|
|
544
535
|
const compareBuild = require_compare_build();
|
|
545
536
|
const rsort = (list, loose) => list.sort((a, b) => compareBuild(b, a, loose));
|
|
546
537
|
module.exports = rsort;
|
|
547
538
|
}));
|
|
548
539
|
//#endregion
|
|
549
|
-
//#region ../../node_modules/semver/functions/gt.js
|
|
540
|
+
//#region ../../packages/migration/node_modules/semver/functions/gt.js
|
|
550
541
|
var require_gt = /* @__PURE__ */ __commonJSMin(((exports, module) => {
|
|
551
542
|
const compare = require_compare();
|
|
552
543
|
const gt = (a, b, loose) => compare(a, b, loose) > 0;
|
|
553
544
|
module.exports = gt;
|
|
554
545
|
}));
|
|
555
546
|
//#endregion
|
|
556
|
-
//#region ../../node_modules/semver/functions/lt.js
|
|
547
|
+
//#region ../../packages/migration/node_modules/semver/functions/lt.js
|
|
557
548
|
var require_lt = /* @__PURE__ */ __commonJSMin(((exports, module) => {
|
|
558
549
|
const compare = require_compare();
|
|
559
550
|
const lt = (a, b, loose) => compare(a, b, loose) < 0;
|
|
560
551
|
module.exports = lt;
|
|
561
552
|
}));
|
|
562
553
|
//#endregion
|
|
563
|
-
//#region ../../node_modules/semver/functions/eq.js
|
|
554
|
+
//#region ../../packages/migration/node_modules/semver/functions/eq.js
|
|
564
555
|
var require_eq = /* @__PURE__ */ __commonJSMin(((exports, module) => {
|
|
565
556
|
const compare = require_compare();
|
|
566
557
|
const eq = (a, b, loose) => compare(a, b, loose) === 0;
|
|
567
558
|
module.exports = eq;
|
|
568
559
|
}));
|
|
569
560
|
//#endregion
|
|
570
|
-
//#region ../../node_modules/semver/functions/neq.js
|
|
561
|
+
//#region ../../packages/migration/node_modules/semver/functions/neq.js
|
|
571
562
|
var require_neq = /* @__PURE__ */ __commonJSMin(((exports, module) => {
|
|
572
563
|
const compare = require_compare();
|
|
573
564
|
const neq = (a, b, loose) => compare(a, b, loose) !== 0;
|
|
574
565
|
module.exports = neq;
|
|
575
566
|
}));
|
|
576
567
|
//#endregion
|
|
577
|
-
//#region ../../node_modules/semver/functions/gte.js
|
|
568
|
+
//#region ../../packages/migration/node_modules/semver/functions/gte.js
|
|
578
569
|
var require_gte = /* @__PURE__ */ __commonJSMin(((exports, module) => {
|
|
579
570
|
const compare = require_compare();
|
|
580
571
|
const gte = (a, b, loose) => compare(a, b, loose) >= 0;
|
|
581
572
|
module.exports = gte;
|
|
582
573
|
}));
|
|
583
574
|
//#endregion
|
|
584
|
-
//#region ../../node_modules/semver/functions/lte.js
|
|
575
|
+
//#region ../../packages/migration/node_modules/semver/functions/lte.js
|
|
585
576
|
var require_lte = /* @__PURE__ */ __commonJSMin(((exports, module) => {
|
|
586
577
|
const compare = require_compare();
|
|
587
578
|
const lte = (a, b, loose) => compare(a, b, loose) <= 0;
|
|
588
579
|
module.exports = lte;
|
|
589
580
|
}));
|
|
590
581
|
//#endregion
|
|
591
|
-
//#region ../../node_modules/semver/functions/cmp.js
|
|
582
|
+
//#region ../../packages/migration/node_modules/semver/functions/cmp.js
|
|
592
583
|
var require_cmp = /* @__PURE__ */ __commonJSMin(((exports, module) => {
|
|
593
584
|
const eq = require_eq();
|
|
594
585
|
const neq = require_neq();
|
|
@@ -620,7 +611,7 @@ var require_cmp = /* @__PURE__ */ __commonJSMin(((exports, module) => {
|
|
|
620
611
|
module.exports = cmp;
|
|
621
612
|
}));
|
|
622
613
|
//#endregion
|
|
623
|
-
//#region ../../node_modules/semver/functions/coerce.js
|
|
614
|
+
//#region ../../packages/migration/node_modules/semver/functions/coerce.js
|
|
624
615
|
var require_coerce = /* @__PURE__ */ __commonJSMin(((exports, module) => {
|
|
625
616
|
const SemVer = require_semver$1();
|
|
626
617
|
const parse = require_parse();
|
|
@@ -648,7 +639,7 @@ var require_coerce = /* @__PURE__ */ __commonJSMin(((exports, module) => {
|
|
|
648
639
|
module.exports = coerce;
|
|
649
640
|
}));
|
|
650
641
|
//#endregion
|
|
651
|
-
//#region ../../node_modules/semver/internal/lrucache.js
|
|
642
|
+
//#region ../../packages/migration/node_modules/semver/internal/lrucache.js
|
|
652
643
|
var require_lrucache = /* @__PURE__ */ __commonJSMin(((exports, module) => {
|
|
653
644
|
var LRUCache = class {
|
|
654
645
|
constructor() {
|
|
@@ -681,7 +672,7 @@ var require_lrucache = /* @__PURE__ */ __commonJSMin(((exports, module) => {
|
|
|
681
672
|
module.exports = LRUCache;
|
|
682
673
|
}));
|
|
683
674
|
//#endregion
|
|
684
|
-
//#region ../../node_modules/semver/classes/range.js
|
|
675
|
+
//#region ../../packages/migration/node_modules/semver/classes/range.js
|
|
685
676
|
var require_range = /* @__PURE__ */ __commonJSMin(((exports, module) => {
|
|
686
677
|
const SPACE_CHARACTERS = /\s+/g;
|
|
687
678
|
module.exports = class Range {
|
|
@@ -953,7 +944,7 @@ var require_range = /* @__PURE__ */ __commonJSMin(((exports, module) => {
|
|
|
953
944
|
};
|
|
954
945
|
}));
|
|
955
946
|
//#endregion
|
|
956
|
-
//#region ../../node_modules/semver/classes/comparator.js
|
|
947
|
+
//#region ../../packages/migration/node_modules/semver/classes/comparator.js
|
|
957
948
|
var require_comparator = /* @__PURE__ */ __commonJSMin(((exports, module) => {
|
|
958
949
|
const ANY = Symbol("SemVer ANY");
|
|
959
950
|
module.exports = class Comparator {
|
|
@@ -1023,7 +1014,7 @@ var require_comparator = /* @__PURE__ */ __commonJSMin(((exports, module) => {
|
|
|
1023
1014
|
const Range = require_range();
|
|
1024
1015
|
}));
|
|
1025
1016
|
//#endregion
|
|
1026
|
-
//#region ../../node_modules/semver/functions/satisfies.js
|
|
1017
|
+
//#region ../../packages/migration/node_modules/semver/functions/satisfies.js
|
|
1027
1018
|
var require_satisfies = /* @__PURE__ */ __commonJSMin(((exports, module) => {
|
|
1028
1019
|
const Range = require_range();
|
|
1029
1020
|
const satisfies = (version, range, options) => {
|
|
@@ -1037,14 +1028,14 @@ var require_satisfies = /* @__PURE__ */ __commonJSMin(((exports, module) => {
|
|
|
1037
1028
|
module.exports = satisfies;
|
|
1038
1029
|
}));
|
|
1039
1030
|
//#endregion
|
|
1040
|
-
//#region ../../node_modules/semver/ranges/to-comparators.js
|
|
1031
|
+
//#region ../../packages/migration/node_modules/semver/ranges/to-comparators.js
|
|
1041
1032
|
var require_to_comparators = /* @__PURE__ */ __commonJSMin(((exports, module) => {
|
|
1042
1033
|
const Range = require_range();
|
|
1043
1034
|
const toComparators = (range, options) => new Range(range, options).set.map((comp) => comp.map((c) => c.value).join(" ").trim().split(" "));
|
|
1044
1035
|
module.exports = toComparators;
|
|
1045
1036
|
}));
|
|
1046
1037
|
//#endregion
|
|
1047
|
-
//#region ../../node_modules/semver/ranges/max-satisfying.js
|
|
1038
|
+
//#region ../../packages/migration/node_modules/semver/ranges/max-satisfying.js
|
|
1048
1039
|
var require_max_satisfying = /* @__PURE__ */ __commonJSMin(((exports, module) => {
|
|
1049
1040
|
const SemVer = require_semver$1();
|
|
1050
1041
|
const Range = require_range();
|
|
@@ -1070,7 +1061,7 @@ var require_max_satisfying = /* @__PURE__ */ __commonJSMin(((exports, module) =>
|
|
|
1070
1061
|
module.exports = maxSatisfying;
|
|
1071
1062
|
}));
|
|
1072
1063
|
//#endregion
|
|
1073
|
-
//#region ../../node_modules/semver/ranges/min-satisfying.js
|
|
1064
|
+
//#region ../../packages/migration/node_modules/semver/ranges/min-satisfying.js
|
|
1074
1065
|
var require_min_satisfying = /* @__PURE__ */ __commonJSMin(((exports, module) => {
|
|
1075
1066
|
const SemVer = require_semver$1();
|
|
1076
1067
|
const Range = require_range();
|
|
@@ -1096,7 +1087,7 @@ var require_min_satisfying = /* @__PURE__ */ __commonJSMin(((exports, module) =>
|
|
|
1096
1087
|
module.exports = minSatisfying;
|
|
1097
1088
|
}));
|
|
1098
1089
|
//#endregion
|
|
1099
|
-
//#region ../../node_modules/semver/ranges/min-version.js
|
|
1090
|
+
//#region ../../packages/migration/node_modules/semver/ranges/min-version.js
|
|
1100
1091
|
var require_min_version = /* @__PURE__ */ __commonJSMin(((exports, module) => {
|
|
1101
1092
|
const SemVer = require_semver$1();
|
|
1102
1093
|
const Range = require_range();
|
|
@@ -1135,7 +1126,7 @@ var require_min_version = /* @__PURE__ */ __commonJSMin(((exports, module) => {
|
|
|
1135
1126
|
module.exports = minVersion;
|
|
1136
1127
|
}));
|
|
1137
1128
|
//#endregion
|
|
1138
|
-
//#region ../../node_modules/semver/ranges/valid.js
|
|
1129
|
+
//#region ../../packages/migration/node_modules/semver/ranges/valid.js
|
|
1139
1130
|
var require_valid = /* @__PURE__ */ __commonJSMin(((exports, module) => {
|
|
1140
1131
|
const Range = require_range();
|
|
1141
1132
|
const validRange = (range, options) => {
|
|
@@ -1148,7 +1139,7 @@ var require_valid = /* @__PURE__ */ __commonJSMin(((exports, module) => {
|
|
|
1148
1139
|
module.exports = validRange;
|
|
1149
1140
|
}));
|
|
1150
1141
|
//#endregion
|
|
1151
|
-
//#region ../../node_modules/semver/ranges/outside.js
|
|
1142
|
+
//#region ../../packages/migration/node_modules/semver/ranges/outside.js
|
|
1152
1143
|
var require_outside = /* @__PURE__ */ __commonJSMin(((exports, module) => {
|
|
1153
1144
|
const SemVer = require_semver$1();
|
|
1154
1145
|
const Comparator = require_comparator();
|
|
@@ -1201,21 +1192,21 @@ var require_outside = /* @__PURE__ */ __commonJSMin(((exports, module) => {
|
|
|
1201
1192
|
module.exports = outside;
|
|
1202
1193
|
}));
|
|
1203
1194
|
//#endregion
|
|
1204
|
-
//#region ../../node_modules/semver/ranges/gtr.js
|
|
1195
|
+
//#region ../../packages/migration/node_modules/semver/ranges/gtr.js
|
|
1205
1196
|
var require_gtr = /* @__PURE__ */ __commonJSMin(((exports, module) => {
|
|
1206
1197
|
const outside = require_outside();
|
|
1207
1198
|
const gtr = (version, range, options) => outside(version, range, ">", options);
|
|
1208
1199
|
module.exports = gtr;
|
|
1209
1200
|
}));
|
|
1210
1201
|
//#endregion
|
|
1211
|
-
//#region ../../node_modules/semver/ranges/ltr.js
|
|
1202
|
+
//#region ../../packages/migration/node_modules/semver/ranges/ltr.js
|
|
1212
1203
|
var require_ltr = /* @__PURE__ */ __commonJSMin(((exports, module) => {
|
|
1213
1204
|
const outside = require_outside();
|
|
1214
1205
|
const ltr = (version, range, options) => outside(version, range, "<", options);
|
|
1215
1206
|
module.exports = ltr;
|
|
1216
1207
|
}));
|
|
1217
1208
|
//#endregion
|
|
1218
|
-
//#region ../../node_modules/semver/ranges/intersects.js
|
|
1209
|
+
//#region ../../packages/migration/node_modules/semver/ranges/intersects.js
|
|
1219
1210
|
var require_intersects = /* @__PURE__ */ __commonJSMin(((exports, module) => {
|
|
1220
1211
|
const Range = require_range();
|
|
1221
1212
|
const intersects = (r1, r2, options) => {
|
|
@@ -1226,7 +1217,7 @@ var require_intersects = /* @__PURE__ */ __commonJSMin(((exports, module) => {
|
|
|
1226
1217
|
module.exports = intersects;
|
|
1227
1218
|
}));
|
|
1228
1219
|
//#endregion
|
|
1229
|
-
//#region ../../node_modules/semver/ranges/simplify.js
|
|
1220
|
+
//#region ../../packages/migration/node_modules/semver/ranges/simplify.js
|
|
1230
1221
|
var require_simplify = /* @__PURE__ */ __commonJSMin(((exports, module) => {
|
|
1231
1222
|
const satisfies = require_satisfies();
|
|
1232
1223
|
const compare = require_compare();
|
|
@@ -1256,7 +1247,7 @@ var require_simplify = /* @__PURE__ */ __commonJSMin(((exports, module) => {
|
|
|
1256
1247
|
};
|
|
1257
1248
|
}));
|
|
1258
1249
|
//#endregion
|
|
1259
|
-
//#region ../../node_modules/semver/ranges/subset.js
|
|
1250
|
+
//#region ../../packages/migration/node_modules/semver/ranges/subset.js
|
|
1260
1251
|
var require_subset = /* @__PURE__ */ __commonJSMin(((exports, module) => {
|
|
1261
1252
|
const Range = require_range();
|
|
1262
1253
|
const Comparator = require_comparator();
|
|
@@ -1613,19 +1604,6 @@ function custom(check2, message) {
|
|
|
1613
1604
|
}
|
|
1614
1605
|
};
|
|
1615
1606
|
}
|
|
1616
|
-
function lazy(getter) {
|
|
1617
|
-
return {
|
|
1618
|
-
kind: "schema",
|
|
1619
|
-
type: "lazy",
|
|
1620
|
-
reference: lazy,
|
|
1621
|
-
expects: "unknown",
|
|
1622
|
-
async: false,
|
|
1623
|
-
getter,
|
|
1624
|
-
_run(dataset, config2) {
|
|
1625
|
-
return this.getter(dataset.value)._run(dataset, config2);
|
|
1626
|
-
}
|
|
1627
|
-
};
|
|
1628
|
-
}
|
|
1629
1607
|
function literal(literal_, message) {
|
|
1630
1608
|
return {
|
|
1631
1609
|
kind: "schema",
|
|
@@ -1642,6 +1620,56 @@ function literal(literal_, message) {
|
|
|
1642
1620
|
}
|
|
1643
1621
|
};
|
|
1644
1622
|
}
|
|
1623
|
+
function looseObject(entries, message) {
|
|
1624
|
+
return {
|
|
1625
|
+
kind: "schema",
|
|
1626
|
+
type: "loose_object",
|
|
1627
|
+
reference: looseObject,
|
|
1628
|
+
expects: "Object",
|
|
1629
|
+
async: false,
|
|
1630
|
+
entries,
|
|
1631
|
+
message,
|
|
1632
|
+
_run(dataset, config2) {
|
|
1633
|
+
const input = dataset.value;
|
|
1634
|
+
if (input && typeof input === "object") {
|
|
1635
|
+
dataset.typed = true;
|
|
1636
|
+
dataset.value = {};
|
|
1637
|
+
for (const key in this.entries) {
|
|
1638
|
+
const value2 = input[key];
|
|
1639
|
+
const valueDataset = this.entries[key]._run({
|
|
1640
|
+
typed: false,
|
|
1641
|
+
value: value2
|
|
1642
|
+
}, config2);
|
|
1643
|
+
if (valueDataset.issues) {
|
|
1644
|
+
const pathItem = {
|
|
1645
|
+
type: "object",
|
|
1646
|
+
origin: "value",
|
|
1647
|
+
input,
|
|
1648
|
+
key,
|
|
1649
|
+
value: value2
|
|
1650
|
+
};
|
|
1651
|
+
for (const issue of valueDataset.issues) {
|
|
1652
|
+
if (issue.path) issue.path.unshift(pathItem);
|
|
1653
|
+
else issue.path = [pathItem];
|
|
1654
|
+
dataset.issues?.push(issue);
|
|
1655
|
+
}
|
|
1656
|
+
if (!dataset.issues) dataset.issues = valueDataset.issues;
|
|
1657
|
+
if (config2.abortEarly) {
|
|
1658
|
+
dataset.typed = false;
|
|
1659
|
+
break;
|
|
1660
|
+
}
|
|
1661
|
+
}
|
|
1662
|
+
if (!valueDataset.typed) dataset.typed = false;
|
|
1663
|
+
if (valueDataset.value !== void 0 || key in input) dataset.value[key] = valueDataset.value;
|
|
1664
|
+
}
|
|
1665
|
+
if (!dataset.issues || !config2.abortEarly) {
|
|
1666
|
+
for (const key in input) if (_isValidObjectKey(input, key) && !(key in this.entries)) dataset.value[key] = input[key];
|
|
1667
|
+
}
|
|
1668
|
+
} else _addIssue(this, "type", dataset, config2);
|
|
1669
|
+
return dataset;
|
|
1670
|
+
}
|
|
1671
|
+
};
|
|
1672
|
+
}
|
|
1645
1673
|
function number(message) {
|
|
1646
1674
|
return {
|
|
1647
1675
|
kind: "schema",
|
|
@@ -1983,20 +2011,19 @@ var Migrator = class {
|
|
|
1983
2011
|
if (currentIndex === -1) throw new Error(`Current version "${currentVersion}" not found in migrations`);
|
|
1984
2012
|
if (targetIndex === -1) throw new Error(`Target version "${targetVersion}" not found in migrations`);
|
|
1985
2013
|
if (currentIndex === targetIndex) return finalState;
|
|
1986
|
-
|
|
1987
|
-
|
|
1988
|
-
const direction = isUpgrade ? "up" : "down";
|
|
1989
|
-
for (let i = currentIndex; isUpgrade ? i < targetIndex : i > targetIndex; i += increment) {
|
|
2014
|
+
if (!(currentIndex < targetIndex)) return finalState;
|
|
2015
|
+
for (let i = currentIndex; i < targetIndex; i++) {
|
|
1990
2016
|
const currentVersion = versions[i];
|
|
1991
|
-
const nextVersion = versions[i +
|
|
2017
|
+
const nextVersion = versions[i + 1];
|
|
1992
2018
|
if (options?.debug) console.log(" Migrating to version:", nextVersion);
|
|
1993
2019
|
const migrationVersion = currentVersion;
|
|
1994
2020
|
const migration = this.migrations[migrationVersion];
|
|
1995
2021
|
const { version: _, ...stateWithoutVersion } = finalState;
|
|
1996
2022
|
finalState = {
|
|
1997
|
-
...await migration
|
|
2023
|
+
...await migration.up(stateWithoutVersion, currentVersion),
|
|
1998
2024
|
version: nextVersion
|
|
1999
2025
|
};
|
|
2026
|
+
if (options?.onStep) await options.onStep(finalState, nextVersion);
|
|
2000
2027
|
if (options?.debug) console.log(" Migrated state:", finalState);
|
|
2001
2028
|
}
|
|
2002
2029
|
return finalState;
|
|
@@ -2023,10 +2050,71 @@ const createMigrator = () => {
|
|
|
2023
2050
|
};
|
|
2024
2051
|
//#endregion
|
|
2025
2052
|
//#region ../../packages/shared/src/config/migrators.ts
|
|
2053
|
+
const DEFAULT_PLUGINS = [
|
|
2054
|
+
{
|
|
2055
|
+
name: "@pipelab/plugin-construct",
|
|
2056
|
+
enabled: true,
|
|
2057
|
+
description: "Construct 3 export & packaging"
|
|
2058
|
+
},
|
|
2059
|
+
{
|
|
2060
|
+
name: "@pipelab/plugin-filesystem",
|
|
2061
|
+
enabled: true,
|
|
2062
|
+
description: "Filesystem utilities"
|
|
2063
|
+
},
|
|
2064
|
+
{
|
|
2065
|
+
name: "@pipelab/plugin-system",
|
|
2066
|
+
enabled: true,
|
|
2067
|
+
description: "System & shell commands"
|
|
2068
|
+
},
|
|
2069
|
+
{
|
|
2070
|
+
name: "@pipelab/plugin-steam",
|
|
2071
|
+
enabled: true,
|
|
2072
|
+
description: "Steam publishing"
|
|
2073
|
+
},
|
|
2074
|
+
{
|
|
2075
|
+
name: "@pipelab/plugin-itch",
|
|
2076
|
+
enabled: true,
|
|
2077
|
+
description: "Itch.io publishing"
|
|
2078
|
+
},
|
|
2079
|
+
{
|
|
2080
|
+
name: "@pipelab/plugin-electron",
|
|
2081
|
+
enabled: true,
|
|
2082
|
+
description: "Electron packaging"
|
|
2083
|
+
},
|
|
2084
|
+
{
|
|
2085
|
+
name: "@pipelab/plugin-discord",
|
|
2086
|
+
enabled: true,
|
|
2087
|
+
description: "Discord Rich Presence"
|
|
2088
|
+
},
|
|
2089
|
+
{
|
|
2090
|
+
name: "@pipelab/plugin-poki",
|
|
2091
|
+
enabled: true,
|
|
2092
|
+
description: "Poki publishing"
|
|
2093
|
+
},
|
|
2094
|
+
{
|
|
2095
|
+
name: "@pipelab/plugin-nvpatch",
|
|
2096
|
+
enabled: true,
|
|
2097
|
+
description: "NW.js patching"
|
|
2098
|
+
},
|
|
2099
|
+
{
|
|
2100
|
+
name: "@pipelab/plugin-tauri",
|
|
2101
|
+
enabled: true,
|
|
2102
|
+
description: "Tauri packaging"
|
|
2103
|
+
},
|
|
2104
|
+
{
|
|
2105
|
+
name: "@pipelab/plugin-minify",
|
|
2106
|
+
enabled: true,
|
|
2107
|
+
description: "Asset minification"
|
|
2108
|
+
},
|
|
2109
|
+
{
|
|
2110
|
+
name: "@pipelab/plugin-netlify",
|
|
2111
|
+
enabled: true,
|
|
2112
|
+
description: "Netlify deployment"
|
|
2113
|
+
}
|
|
2114
|
+
];
|
|
2115
|
+
const createMigration = (config) => createMigration$1(config);
|
|
2026
2116
|
const settingsMigratorInternal = createMigrator();
|
|
2027
2117
|
const defaultAppSettings$1 = settingsMigratorInternal.createDefault({
|
|
2028
|
-
cacheFolder: "",
|
|
2029
|
-
clearTemporaryFoldersOnPipelineEnd: false,
|
|
2030
2118
|
locale: "en-US",
|
|
2031
2119
|
theme: "light",
|
|
2032
2120
|
version: "7.0.0",
|
|
@@ -2041,15 +2129,15 @@ const defaultAppSettings$1 = settingsMigratorInternal.createDefault({
|
|
|
2041
2129
|
step: 0,
|
|
2042
2130
|
completed: false
|
|
2043
2131
|
}
|
|
2044
|
-
}
|
|
2132
|
+
},
|
|
2133
|
+
plugins: DEFAULT_PLUGINS
|
|
2045
2134
|
});
|
|
2046
2135
|
const appSettingsMigrator$1 = settingsMigratorInternal.createMigrations({
|
|
2047
2136
|
defaultValue: defaultAppSettings$1,
|
|
2048
2137
|
migrations: [
|
|
2049
2138
|
createMigration({
|
|
2050
2139
|
version: "1.0.0",
|
|
2051
|
-
up: (state) => state
|
|
2052
|
-
down: initialVersion
|
|
2140
|
+
up: (state) => state
|
|
2053
2141
|
}),
|
|
2054
2142
|
createMigration({
|
|
2055
2143
|
version: "2.0.0",
|
|
@@ -2058,9 +2146,6 @@ const appSettingsMigrator$1 = settingsMigratorInternal.createMigrations({
|
|
|
2058
2146
|
...state,
|
|
2059
2147
|
clearTemporaryFoldersOnPipelineEnd: false
|
|
2060
2148
|
};
|
|
2061
|
-
},
|
|
2062
|
-
down: () => {
|
|
2063
|
-
throw new Error("Can't migrate down from 2.0.0");
|
|
2064
2149
|
}
|
|
2065
2150
|
}),
|
|
2066
2151
|
createMigration({
|
|
@@ -2068,11 +2153,7 @@ const appSettingsMigrator$1 = settingsMigratorInternal.createMigrations({
|
|
|
2068
2153
|
up: (state) => ({
|
|
2069
2154
|
...state,
|
|
2070
2155
|
locale: "en-US"
|
|
2071
|
-
})
|
|
2072
|
-
down: (state) => {
|
|
2073
|
-
const { locale, ...rest } = state;
|
|
2074
|
-
return rest;
|
|
2075
|
-
}
|
|
2156
|
+
})
|
|
2076
2157
|
}),
|
|
2077
2158
|
createMigration({
|
|
2078
2159
|
version: "4.0.0",
|
|
@@ -2088,84 +2169,90 @@ const appSettingsMigrator$1 = settingsMigratorInternal.createMigrations({
|
|
|
2088
2169
|
completed: false
|
|
2089
2170
|
}
|
|
2090
2171
|
}
|
|
2091
|
-
})
|
|
2092
|
-
down: (state) => {
|
|
2093
|
-
const { tours, ...rest } = state;
|
|
2094
|
-
return rest;
|
|
2095
|
-
}
|
|
2172
|
+
})
|
|
2096
2173
|
}),
|
|
2097
2174
|
createMigration({
|
|
2098
2175
|
version: "5.0.0",
|
|
2099
2176
|
up: (state) => ({
|
|
2100
2177
|
...state,
|
|
2101
2178
|
autosave: true
|
|
2102
|
-
})
|
|
2103
|
-
down: (state) => {
|
|
2104
|
-
const { autosave, ...rest } = state;
|
|
2105
|
-
return rest;
|
|
2106
|
-
}
|
|
2179
|
+
})
|
|
2107
2180
|
}),
|
|
2108
2181
|
createMigration({
|
|
2109
2182
|
version: "6.0.0",
|
|
2110
|
-
up: (state) =>
|
|
2111
|
-
...state
|
|
2112
|
-
|
|
2113
|
-
|
|
2114
|
-
|
|
2115
|
-
|
|
2116
|
-
|
|
2183
|
+
up: (state) => {
|
|
2184
|
+
const { cacheFolder, clearTemporaryFoldersOnPipelineEnd: __, ...rest } = state;
|
|
2185
|
+
return {
|
|
2186
|
+
...rest,
|
|
2187
|
+
cacheFolder,
|
|
2188
|
+
agents: [],
|
|
2189
|
+
plugins: DEFAULT_PLUGINS
|
|
2190
|
+
};
|
|
2117
2191
|
}
|
|
2118
2192
|
}),
|
|
2119
2193
|
createMigration({
|
|
2120
2194
|
version: "7.0.0",
|
|
2121
|
-
up: finalVersion
|
|
2122
|
-
down: () => {
|
|
2123
|
-
throw new Error("Can't migrate down from 7.0.0");
|
|
2124
|
-
}
|
|
2195
|
+
up: finalVersion
|
|
2125
2196
|
})
|
|
2126
2197
|
]
|
|
2127
2198
|
});
|
|
2199
|
+
const connectionsMigratorInternal = createMigrator();
|
|
2200
|
+
const defaultConnections$1 = connectionsMigratorInternal.createDefault({
|
|
2201
|
+
version: "1.0.0",
|
|
2202
|
+
connections: []
|
|
2203
|
+
});
|
|
2204
|
+
const connectionsMigrator$1 = connectionsMigratorInternal.createMigrations({
|
|
2205
|
+
defaultValue: defaultConnections$1,
|
|
2206
|
+
migrations: [createMigration({
|
|
2207
|
+
version: "1.0.0",
|
|
2208
|
+
up: finalVersion
|
|
2209
|
+
})]
|
|
2210
|
+
});
|
|
2128
2211
|
const fileRepoMigratorInternal = createMigrator();
|
|
2129
2212
|
const defaultFileRepo$1 = fileRepoMigratorInternal.createDefault({
|
|
2130
|
-
version: "
|
|
2213
|
+
version: "3.0.0",
|
|
2131
2214
|
projects: [{
|
|
2132
2215
|
id: "main",
|
|
2133
2216
|
name: "Default project",
|
|
2134
2217
|
description: "The initial default project"
|
|
2135
2218
|
}],
|
|
2136
|
-
pipelines: []
|
|
2137
|
-
proxies: []
|
|
2219
|
+
pipelines: []
|
|
2138
2220
|
});
|
|
2139
2221
|
const fileRepoMigrations$1 = fileRepoMigratorInternal.createMigrations({
|
|
2140
2222
|
defaultValue: defaultFileRepo$1,
|
|
2141
|
-
migrations: [
|
|
2142
|
-
|
|
2143
|
-
|
|
2144
|
-
|
|
2145
|
-
|
|
2146
|
-
projects: [{
|
|
2147
|
-
id: "main",
|
|
2148
|
-
name: "Default project",
|
|
2149
|
-
description: "The initial default project"
|
|
2150
|
-
}],
|
|
2151
|
-
pipelines: Object.entries(state.data || {}).map(([id, file]) => {
|
|
2223
|
+
migrations: [
|
|
2224
|
+
createMigration({
|
|
2225
|
+
version: "1.0.0",
|
|
2226
|
+
up: (state) => {
|
|
2227
|
+
const pipelines = Object.entries(state.data || {}).map(([id, file]) => {
|
|
2152
2228
|
return {
|
|
2153
2229
|
...file,
|
|
2154
2230
|
id,
|
|
2155
2231
|
project: "main"
|
|
2156
2232
|
};
|
|
2157
|
-
})
|
|
2158
|
-
|
|
2159
|
-
|
|
2160
|
-
|
|
2161
|
-
|
|
2162
|
-
|
|
2163
|
-
|
|
2164
|
-
|
|
2165
|
-
|
|
2166
|
-
|
|
2167
|
-
|
|
2168
|
-
|
|
2233
|
+
});
|
|
2234
|
+
return {
|
|
2235
|
+
...state,
|
|
2236
|
+
projects: [{
|
|
2237
|
+
id: "main",
|
|
2238
|
+
name: "Default project",
|
|
2239
|
+
description: "The initial default project"
|
|
2240
|
+
}],
|
|
2241
|
+
pipelines
|
|
2242
|
+
};
|
|
2243
|
+
}
|
|
2244
|
+
}),
|
|
2245
|
+
createMigration({
|
|
2246
|
+
version: "2.0.0",
|
|
2247
|
+
up: (state) => {
|
|
2248
|
+
return { ...state };
|
|
2249
|
+
}
|
|
2250
|
+
}),
|
|
2251
|
+
createMigration({
|
|
2252
|
+
version: "3.0.0",
|
|
2253
|
+
up: finalVersion
|
|
2254
|
+
})
|
|
2255
|
+
]
|
|
2169
2256
|
});
|
|
2170
2257
|
const savedFileMigratorInternal = createMigrator();
|
|
2171
2258
|
const savedFileDefaultValue = savedFileMigratorInternal.createDefault({
|
|
@@ -2176,8 +2263,7 @@ const savedFileDefaultValue = savedFileMigratorInternal.createDefault({
|
|
|
2176
2263
|
description: "",
|
|
2177
2264
|
name: "",
|
|
2178
2265
|
variables: [],
|
|
2179
|
-
|
|
2180
|
-
version: "4.0.0"
|
|
2266
|
+
version: "5.0.0"
|
|
2181
2267
|
});
|
|
2182
2268
|
const savedFileMigrator$1 = savedFileMigratorInternal.createMigrations({
|
|
2183
2269
|
defaultValue: savedFileDefaultValue,
|
|
@@ -2191,21 +2277,19 @@ const savedFileMigrator$1 = savedFileMigratorInternal.createMigrations({
|
|
|
2191
2277
|
for (const block of blocks) if (block.type === "event") triggers.push(block);
|
|
2192
2278
|
else newBlocks.push(block);
|
|
2193
2279
|
return {
|
|
2280
|
+
...state,
|
|
2194
2281
|
canvas: {
|
|
2282
|
+
...state.canvas,
|
|
2195
2283
|
blocks: newBlocks,
|
|
2196
2284
|
triggers
|
|
2197
|
-
}
|
|
2198
|
-
description: state.description,
|
|
2199
|
-
name: state.name,
|
|
2200
|
-
variables: state.variables
|
|
2285
|
+
}
|
|
2201
2286
|
};
|
|
2202
|
-
}
|
|
2203
|
-
down: initialVersion
|
|
2287
|
+
}
|
|
2204
2288
|
}),
|
|
2205
2289
|
createMigration({
|
|
2206
2290
|
version: "2.0.0",
|
|
2207
2291
|
up: (state) => {
|
|
2208
|
-
const { canvas
|
|
2292
|
+
const { canvas } = state;
|
|
2209
2293
|
const { blocks, triggers } = canvas;
|
|
2210
2294
|
const newBlocks = [];
|
|
2211
2295
|
for (const block of blocks) {
|
|
@@ -2224,44 +2308,164 @@ const savedFileMigrator$1 = savedFileMigratorInternal.createMigrations({
|
|
|
2224
2308
|
});
|
|
2225
2309
|
}
|
|
2226
2310
|
return {
|
|
2227
|
-
...
|
|
2311
|
+
...state,
|
|
2228
2312
|
canvas: {
|
|
2313
|
+
...canvas,
|
|
2229
2314
|
triggers,
|
|
2230
2315
|
blocks: newBlocks
|
|
2231
2316
|
}
|
|
2232
2317
|
};
|
|
2233
|
-
},
|
|
2234
|
-
down: () => {
|
|
2235
|
-
throw new Error("Migration down not implemented");
|
|
2236
2318
|
}
|
|
2237
2319
|
}),
|
|
2238
2320
|
createMigration({
|
|
2239
2321
|
version: "3.0.0",
|
|
2240
|
-
up: (state) => {
|
|
2241
|
-
|
|
2242
|
-
|
|
2243
|
-
|
|
2244
|
-
};
|
|
2245
|
-
},
|
|
2246
|
-
down: () => {
|
|
2247
|
-
throw new Error("Migration down not implemented");
|
|
2248
|
-
}
|
|
2322
|
+
up: (state) => ({
|
|
2323
|
+
...state,
|
|
2324
|
+
type: "default"
|
|
2325
|
+
})
|
|
2249
2326
|
}),
|
|
2250
2327
|
createMigration({
|
|
2251
2328
|
version: "4.0.0",
|
|
2252
|
-
up:
|
|
2253
|
-
|
|
2254
|
-
|
|
2329
|
+
up: (_state) => {
|
|
2330
|
+
const state = _state;
|
|
2331
|
+
if (state.type === "simple") return {
|
|
2332
|
+
name: state.name,
|
|
2333
|
+
description: state.description,
|
|
2334
|
+
canvas: {
|
|
2335
|
+
blocks: [],
|
|
2336
|
+
triggers: []
|
|
2337
|
+
},
|
|
2338
|
+
variables: []
|
|
2339
|
+
};
|
|
2340
|
+
const migrateBlock = (block, pluginsMap) => {
|
|
2341
|
+
if (!block) return;
|
|
2342
|
+
if (block.origin?.pluginId) {
|
|
2343
|
+
block.origin.pluginId = getStrictPluginId(block.origin.pluginId);
|
|
2344
|
+
block.origin.version = pluginsMap[block.origin.pluginId] ?? "latest";
|
|
2345
|
+
}
|
|
2346
|
+
};
|
|
2347
|
+
const normalizedPlugins = {};
|
|
2348
|
+
if (state.plugins) for (const [key, val] of Object.entries(state.plugins)) normalizedPlugins[getStrictPluginId(key)] = val;
|
|
2349
|
+
if (state.canvas) {
|
|
2350
|
+
for (const block of state.canvas.blocks ?? []) migrateBlock(block, normalizedPlugins);
|
|
2351
|
+
for (const trigger of state.canvas.triggers ?? []) migrateBlock(trigger, normalizedPlugins);
|
|
2352
|
+
}
|
|
2353
|
+
const { plugins: _dropped, type: _type, ...rest } = state;
|
|
2354
|
+
return rest;
|
|
2255
2355
|
}
|
|
2356
|
+
}),
|
|
2357
|
+
createMigration({
|
|
2358
|
+
version: "5.0.0",
|
|
2359
|
+
up: finalVersion
|
|
2256
2360
|
})
|
|
2257
2361
|
]
|
|
2258
2362
|
});
|
|
2363
|
+
const LEGACY_ID_MAP = {
|
|
2364
|
+
construct: "@pipelab/plugin-construct",
|
|
2365
|
+
filesystem: "@pipelab/plugin-filesystem",
|
|
2366
|
+
system: "@pipelab/plugin-system",
|
|
2367
|
+
steam: "@pipelab/plugin-steam",
|
|
2368
|
+
itch: "@pipelab/plugin-itch",
|
|
2369
|
+
electron: "@pipelab/plugin-electron",
|
|
2370
|
+
discord: "@pipelab/plugin-discord",
|
|
2371
|
+
dicord: "@pipelab/plugin-discord",
|
|
2372
|
+
"@pipelab/plugin-dicord": "@pipelab/plugin-discord",
|
|
2373
|
+
poki: "@pipelab/plugin-poki",
|
|
2374
|
+
nvpatch: "@pipelab/plugin-nvpatch",
|
|
2375
|
+
tauri: "@pipelab/plugin-tauri",
|
|
2376
|
+
minify: "@pipelab/plugin-minify",
|
|
2377
|
+
netlify: "@pipelab/plugin-netlify"
|
|
2378
|
+
};
|
|
2379
|
+
const getStrictPluginId = (pluginId) => {
|
|
2380
|
+
if (!pluginId) return pluginId;
|
|
2381
|
+
return LEGACY_ID_MAP[pluginId] || pluginId;
|
|
2382
|
+
};
|
|
2383
|
+
const normalizeBlockPluginId = (block) => {
|
|
2384
|
+
if (!block) return false;
|
|
2385
|
+
let changed = false;
|
|
2386
|
+
if (block.origin?.pluginId) {
|
|
2387
|
+
const strictId = getStrictPluginId(block.origin.pluginId);
|
|
2388
|
+
if (block.origin.pluginId !== strictId) {
|
|
2389
|
+
block.origin.pluginId = strictId;
|
|
2390
|
+
changed = true;
|
|
2391
|
+
}
|
|
2392
|
+
}
|
|
2393
|
+
return changed;
|
|
2394
|
+
};
|
|
2395
|
+
const normalizePipelineConfig$1 = (state) => {
|
|
2396
|
+
if (!state) return false;
|
|
2397
|
+
let changed = false;
|
|
2398
|
+
if (state.canvas) {
|
|
2399
|
+
if (Array.isArray(state.canvas.blocks)) {
|
|
2400
|
+
for (const block of state.canvas.blocks) if (normalizeBlockPluginId(block)) changed = true;
|
|
2401
|
+
}
|
|
2402
|
+
if (Array.isArray(state.canvas.triggers)) {
|
|
2403
|
+
for (const trigger of state.canvas.triggers) if (normalizeBlockPluginId(trigger)) changed = true;
|
|
2404
|
+
}
|
|
2405
|
+
}
|
|
2406
|
+
return changed;
|
|
2407
|
+
};
|
|
2259
2408
|
const configRegistry$1 = {
|
|
2260
2409
|
settings: appSettingsMigrator$1,
|
|
2261
2410
|
projects: fileRepoMigrations$1,
|
|
2262
|
-
pipeline: savedFileMigrator$1
|
|
2411
|
+
pipeline: savedFileMigrator$1,
|
|
2412
|
+
connections: connectionsMigrator$1
|
|
2263
2413
|
};
|
|
2264
2414
|
//#endregion
|
|
2415
|
+
//#region ../../packages/shared/src/save-location.ts
|
|
2416
|
+
const SaveLocationInternalValidator = object({
|
|
2417
|
+
id: string(),
|
|
2418
|
+
project: string(),
|
|
2419
|
+
lastModified: string(),
|
|
2420
|
+
type: literal("internal"),
|
|
2421
|
+
configName: string()
|
|
2422
|
+
});
|
|
2423
|
+
/** @deprecated External pipeline files are deprecated and will be removed in future versions. */
|
|
2424
|
+
const SaveLocationExternalValidator = object({
|
|
2425
|
+
id: string(),
|
|
2426
|
+
project: string(),
|
|
2427
|
+
path: string(),
|
|
2428
|
+
lastModified: string(),
|
|
2429
|
+
type: literal("external"),
|
|
2430
|
+
summary: object({
|
|
2431
|
+
plugins: array(string()),
|
|
2432
|
+
name: string(),
|
|
2433
|
+
description: string()
|
|
2434
|
+
})
|
|
2435
|
+
});
|
|
2436
|
+
const SaveLocationPipelabCloudValidator = object({
|
|
2437
|
+
id: string(),
|
|
2438
|
+
project: string(),
|
|
2439
|
+
type: literal("pipelab-cloud")
|
|
2440
|
+
});
|
|
2441
|
+
const SaveLocationValidator = union([
|
|
2442
|
+
SaveLocationExternalValidator,
|
|
2443
|
+
SaveLocationInternalValidator,
|
|
2444
|
+
SaveLocationPipelabCloudValidator
|
|
2445
|
+
]);
|
|
2446
|
+
//#endregion
|
|
2447
|
+
//#region ../../packages/shared/src/config/projects-definition.ts
|
|
2448
|
+
const FileRepoValidatorV1 = object({
|
|
2449
|
+
version: literal("1.0.0"),
|
|
2450
|
+
data: optional(record(string(), SaveLocationValidator), {})
|
|
2451
|
+
});
|
|
2452
|
+
const FileRepoProjectValidatorV2 = object({
|
|
2453
|
+
id: string(),
|
|
2454
|
+
name: string(),
|
|
2455
|
+
description: string()
|
|
2456
|
+
});
|
|
2457
|
+
const FileRepoValidatorV2 = object({
|
|
2458
|
+
version: literal("2.0.0"),
|
|
2459
|
+
projects: array(FileRepoProjectValidatorV2),
|
|
2460
|
+
pipelines: optional(array(SaveLocationValidator), [])
|
|
2461
|
+
});
|
|
2462
|
+
const FileRepoValidatorV3 = object({
|
|
2463
|
+
version: literal("3.0.0"),
|
|
2464
|
+
projects: array(FileRepoProjectValidatorV2),
|
|
2465
|
+
pipelines: optional(array(SaveLocationValidator), [])
|
|
2466
|
+
});
|
|
2467
|
+
const FileRepoValidator = FileRepoValidatorV3;
|
|
2468
|
+
//#endregion
|
|
2265
2469
|
//#region ../../packages/shared/src/apis.ts
|
|
2266
2470
|
const ShellChannels = ["dialog:showOpenDialog", "dialog:showSaveDialog"];
|
|
2267
2471
|
//#endregion
|
|
@@ -2373,12 +2577,26 @@ const AppSettingsValidatorV7 = object({
|
|
|
2373
2577
|
name: string(),
|
|
2374
2578
|
url: string()
|
|
2375
2579
|
})),
|
|
2376
|
-
|
|
2580
|
+
plugins: array(object({
|
|
2581
|
+
name: string(),
|
|
2377
2582
|
enabled: boolean(),
|
|
2378
|
-
|
|
2379
|
-
|
|
2380
|
-
|
|
2583
|
+
description: string()
|
|
2584
|
+
})),
|
|
2585
|
+
cacheFolder: optional(string()),
|
|
2586
|
+
tempFolder: optional(string())
|
|
2587
|
+
});
|
|
2588
|
+
const ConnectionValidator = looseObject({
|
|
2589
|
+
id: string(),
|
|
2590
|
+
pluginName: string(),
|
|
2591
|
+
name: string(),
|
|
2592
|
+
createdAt: string(),
|
|
2593
|
+
isDefault: boolean()
|
|
2594
|
+
});
|
|
2595
|
+
const ConnectionsValidatorV1 = object({
|
|
2596
|
+
version: literal("1.0.0"),
|
|
2597
|
+
connections: array(ConnectionValidator)
|
|
2381
2598
|
});
|
|
2599
|
+
const ConnectionsValidator = ConnectionsValidatorV1;
|
|
2382
2600
|
const AppSettingsValidator = AppSettingsValidatorV7;
|
|
2383
2601
|
//#endregion
|
|
2384
2602
|
//#region ../../node_modules/tslog/dist/esm/prettyLogStyles.js
|
|
@@ -4051,9 +4269,6 @@ const processGraph = async (options) => {
|
|
|
4051
4269
|
options.steps[rawNode.uid].outputs = result.result.outputs;
|
|
4052
4270
|
}
|
|
4053
4271
|
options.onNodeExit(rawNode);
|
|
4054
|
-
} else if (rawNode.type === "loop") {
|
|
4055
|
-
options.onNodeEnter(rawNode);
|
|
4056
|
-
options.onNodeExit(rawNode);
|
|
4057
4272
|
} else if (rawNode.type === "comment") {} else if (rawNode.type === "event") {
|
|
4058
4273
|
options.onNodeEnter(rawNode);
|
|
4059
4274
|
options.onNodeExit(rawNode);
|
|
@@ -4068,7 +4283,7 @@ var en_US_default = {
|
|
|
4068
4283
|
settings: {
|
|
4069
4284
|
"darkTheme": "Dark theme",
|
|
4070
4285
|
"autosave": "Autosave",
|
|
4071
|
-
"autosaveDescription": "
|
|
4286
|
+
"autosaveDescription": "Automatically save changes to your pipelines in real-time.",
|
|
4072
4287
|
"language": "Language",
|
|
4073
4288
|
"languageOptions": {
|
|
4074
4289
|
"en-US": "English",
|
|
@@ -4083,12 +4298,16 @@ var en_US_default = {
|
|
|
4083
4298
|
"storage": "Storage",
|
|
4084
4299
|
"integrations": "Integrations",
|
|
4085
4300
|
"advanced": "Advanced",
|
|
4086
|
-
"billing": "Billing"
|
|
4301
|
+
"billing": "Billing",
|
|
4302
|
+
"plugins": "Plugins",
|
|
4303
|
+
"core-plugins": "Core Plugins",
|
|
4304
|
+
"community-plugins": "Community Plugins",
|
|
4305
|
+
"versions": "Versions"
|
|
4087
4306
|
},
|
|
4088
4307
|
"pipeline-cache-folder": "Pipeline Cache Folder:",
|
|
4089
4308
|
"enter-or-browse-for-a-folder": "Enter or browse for a folder",
|
|
4090
4309
|
"browse": "Browse",
|
|
4091
|
-
"manage-where-the-app-stores-temporary-and-cache-files": "
|
|
4310
|
+
"manage-where-the-app-stores-temporary-and-cache-files": "Configure local directories for temporary files and application cache.",
|
|
4092
4311
|
"clear-cache": "Clear cache",
|
|
4093
4312
|
"reset-to-default": "Reset to default",
|
|
4094
4313
|
"manage-subscription": "Manage Subscription",
|
|
@@ -4098,16 +4317,9 @@ var en_US_default = {
|
|
|
4098
4317
|
"failed-to-clear-cache-error-message": "Failed to clear cache: {0}",
|
|
4099
4318
|
"failed-to-reset-cache-folder-error-message": "Failed to reset cache folder: {0}",
|
|
4100
4319
|
"select-cache-folder": "Select Cache Folder",
|
|
4101
|
-
"restart-dashboard-tour": "
|
|
4102
|
-
"restart-editor-tour": "
|
|
4103
|
-
"tour-reset-success": "
|
|
4104
|
-
"retentionPolicy": "Retention Policy",
|
|
4105
|
-
"retentionPolicyDescription": "Manage how long your build logs and history are kept.",
|
|
4106
|
-
"retentionEnabled": "Enable Retention Policy",
|
|
4107
|
-
"retentionMaxEntries": "Maximum Entries",
|
|
4108
|
-
"retentionMaxEntriesDescription": "Keep up to this number of entries per pipeline.",
|
|
4109
|
-
"retentionMaxAge": "Maximum Age (days)",
|
|
4110
|
-
"retentionMaxAgeDescription": "Keep entries for up to this many days.",
|
|
4320
|
+
"restart-dashboard-tour": "Reset Dashboard Guide",
|
|
4321
|
+
"restart-editor-tour": "Reset Editor Guide",
|
|
4322
|
+
"tour-reset-success": "Help guides have been reset. They will reappear on your next visit.",
|
|
4111
4323
|
"storage-pipelab": "Pipelab",
|
|
4112
4324
|
"storage-other": "Other Apps",
|
|
4113
4325
|
"storage-free": "Free Space",
|
|
@@ -4117,12 +4329,11 @@ var en_US_default = {
|
|
|
4117
4329
|
},
|
|
4118
4330
|
headers: {
|
|
4119
4331
|
"dashboard": "Dashboard",
|
|
4120
|
-
"
|
|
4332
|
+
"pipelines": "Pipelines",
|
|
4121
4333
|
"editor": "Editor",
|
|
4122
|
-
"billing": "
|
|
4334
|
+
"billing": "@:settings.tabs.billing",
|
|
4123
4335
|
"team": "Team"
|
|
4124
4336
|
},
|
|
4125
|
-
navigation: { "build-history": "Build History" },
|
|
4126
4337
|
base: {
|
|
4127
4338
|
"close": "Close",
|
|
4128
4339
|
"save": "Save",
|
|
@@ -4133,44 +4344,55 @@ var en_US_default = {
|
|
|
4133
4344
|
"logs": "Logs",
|
|
4134
4345
|
"ok": "OK",
|
|
4135
4346
|
"add": "Add",
|
|
4136
|
-
"search": "Search..."
|
|
4347
|
+
"search": "Search...",
|
|
4348
|
+
"success": "Success",
|
|
4349
|
+
"error": "Error"
|
|
4137
4350
|
},
|
|
4138
4351
|
editor: {
|
|
4139
4352
|
"invalid-file-content": "Invalid file content",
|
|
4140
4353
|
"welcome-back": "Welcome back!",
|
|
4141
|
-
"please-log-in-to-run-a-
|
|
4142
|
-
"execution-done": "
|
|
4143
|
-
"your-project-has-been-executed-successfully": "Your
|
|
4144
|
-
"execution-failed": "
|
|
4145
|
-
"project-has-encountered-an-error": "
|
|
4146
|
-
"project-saved": "
|
|
4147
|
-
"your-project-has-be-saved-successfully": "Your
|
|
4354
|
+
"please-log-in-to-run-a-pipeline": "Please sign in to run this pipeline.",
|
|
4355
|
+
"execution-done": "Run completed successfully",
|
|
4356
|
+
"your-project-has-been-executed-successfully": "Your pipeline ran and completed successfully.",
|
|
4357
|
+
"execution-failed": "Run failed",
|
|
4358
|
+
"project-has-encountered-an-error": "The pipeline encountered an error:",
|
|
4359
|
+
"project-saved": "Pipeline saved",
|
|
4360
|
+
"your-project-has-be-saved-successfully": "Your pipeline has been saved successfully.",
|
|
4148
4361
|
"view-history": "History",
|
|
4149
4362
|
"add-plugin": "Add plugin",
|
|
4150
|
-
"display-advanced-nodes": "Display advanced nodes"
|
|
4363
|
+
"display-advanced-nodes": "Display advanced nodes",
|
|
4364
|
+
"project-settings": "Pipeline Settings",
|
|
4365
|
+
"jit-loading-title": "Preparing Plugins",
|
|
4366
|
+
"jit-loading-subtitle": "Please wait while Pipelab downloads and configures the required plugins for this pipeline.",
|
|
4367
|
+
"jit-loading-status": "Downloading and setting up plugin packages...",
|
|
4368
|
+
"validation-failed": "Validation Failed",
|
|
4369
|
+
"validation-plugin-disabled-or-missing": "The block \"{nodeName}\" requires the \"{pluginId}\" plugin, which is not currently installed or enabled.",
|
|
4370
|
+
"validation-missing-param": "Please configure the required field \"{paramName}\" in the \"{nodeName}\" block."
|
|
4151
4371
|
},
|
|
4152
4372
|
home: {
|
|
4153
4373
|
"invalid-preset": "Invalid preset",
|
|
4154
|
-
"store-project-on-the-cloud": "
|
|
4374
|
+
"store-project-on-the-cloud": "Save project to Cloud",
|
|
4155
4375
|
"cloud": "Cloud",
|
|
4156
|
-
"store-project-locally": "
|
|
4376
|
+
"store-project-locally": "Save project locally",
|
|
4157
4377
|
"local": "Local",
|
|
4158
4378
|
"invalid-number-of-paths-selected": "Invalid number of paths selected",
|
|
4159
4379
|
"pipelab-project": "Pipelab Project",
|
|
4160
4380
|
"choose-a-new-path": "Choose a new path",
|
|
4161
4381
|
"invalid-file-type": "Invalid file type",
|
|
4162
|
-
"create-project": "Create
|
|
4163
|
-
"
|
|
4382
|
+
"create-project": "Create Project",
|
|
4383
|
+
"create-pipeline": "Create Pipeline",
|
|
4384
|
+
"duplicate-project": "Duplicate Project",
|
|
4385
|
+
"duplicate-pipeline": "Duplicate Pipeline",
|
|
4164
4386
|
"project-name": "Project Name",
|
|
4165
4387
|
"new-project": "New Project",
|
|
4166
|
-
"new-pipeline": "New
|
|
4388
|
+
"new-pipeline": "New Pipeline",
|
|
4167
4389
|
"open": "Open",
|
|
4168
4390
|
"import": "Import",
|
|
4169
4391
|
"pipeline-name": "Pipeline Name",
|
|
4170
4392
|
"your-projects": "Your projects",
|
|
4171
4393
|
"no-projects-yet": "No projects yet",
|
|
4172
4394
|
"no-pipelines-yet": "No pipelines yet",
|
|
4173
|
-
"delete-project": "Delete
|
|
4395
|
+
"delete-project": "Delete Project",
|
|
4174
4396
|
"confirm-delete-project": "Are you sure you want to delete this project? This action cannot be undone.",
|
|
4175
4397
|
"cannot-delete-project": "Cannot delete project",
|
|
4176
4398
|
"project-not-empty": "This project contains pipelines. Please delete them first.",
|
|
@@ -4183,39 +4405,48 @@ var en_US_default = {
|
|
|
4183
4405
|
"rename-project": "Rename Project",
|
|
4184
4406
|
"new-project-name": "New Project Name",
|
|
4185
4407
|
"premium-feature": "This is a premium feature",
|
|
4186
|
-
"migrate-warning": "This file
|
|
4187
|
-
"simple-pipeline": "
|
|
4408
|
+
"migrate-warning": "This file format will soon be deprecated. Please migrate it to the new local workspace storage.",
|
|
4409
|
+
"simple-pipeline": "Basic pipeline",
|
|
4188
4410
|
"advanced-pipeline": "Advanced pipeline",
|
|
4189
4411
|
"new-simple-project": "New simple project",
|
|
4190
4412
|
"new-advanced-project": "New advanced project",
|
|
4191
|
-
"store-project-internally": "
|
|
4413
|
+
"store-project-internally": "Save project locally",
|
|
4192
4414
|
"internal": "Internal",
|
|
4193
|
-
"confirm-migration-message": "Are you sure you want to
|
|
4415
|
+
"confirm-migration-message": "Are you sure you want to move this pipeline to local workspace storage? Pipelab will manage this pipeline internally.",
|
|
4194
4416
|
"migrate-pipeline": "Migrate Pipeline",
|
|
4195
4417
|
"migration-success": "Pipeline migrated successfully",
|
|
4196
|
-
"migrate-to-internal": "
|
|
4418
|
+
"migrate-to-internal": "Move to Workspace",
|
|
4419
|
+
"only-internal-supported-notice": "Pipelab now manages all pipelines within the application workspace. External files are deprecated, but can be imported into your workspace.",
|
|
4420
|
+
"import-pipeline": "Import Pipeline",
|
|
4421
|
+
"import-from-stable": "Import from Stable...",
|
|
4422
|
+
"import-pipeline-file": "Import pipeline file (.pipelab)...",
|
|
4423
|
+
"import-success": "Pipeline imported successfully",
|
|
4424
|
+
"failed-to-read-file": "Failed to read the selected file",
|
|
4425
|
+
"export-pipeline": "Export Pipeline...",
|
|
4426
|
+
"export-success": "Pipeline exported successfully",
|
|
4427
|
+
"export-failed": "Failed to export pipeline"
|
|
4197
4428
|
},
|
|
4198
|
-
|
|
4429
|
+
pipelines: { "title": "@:headers.pipelines" },
|
|
4199
4430
|
tour: {
|
|
4200
4431
|
"start-tour": "Start Tour",
|
|
4201
4432
|
"projects-list-title": "Project Navigator",
|
|
4202
|
-
"projects-list-description": "This sidebar
|
|
4433
|
+
"projects-list-description": "This sidebar lists your projects. Selecting a project will show its pipelines in the main area.",
|
|
4203
4434
|
"add-project-title": "Create New Project",
|
|
4204
|
-
"add-project-description": "Projects
|
|
4205
|
-
"new-pipeline-title": "
|
|
4206
|
-
"new-pipeline-description": "Ready to automate? Create a new pipeline to start adding
|
|
4435
|
+
"add-project-description": "Projects organize your pipelines by topic or client. Click here to start a new project.",
|
|
4436
|
+
"new-pipeline-title": "Create a Pipeline",
|
|
4437
|
+
"new-pipeline-description": "Ready to automate? Create a new pipeline to start adding actions and logic.",
|
|
4207
4438
|
"project-actions-title": "Project Management",
|
|
4208
4439
|
"project-actions-description": "Use these buttons to rename or delete the currently selected project.",
|
|
4209
4440
|
"editor-canvas-title": "The Visual Canvas",
|
|
4210
|
-
"editor-canvas-description": "This is your
|
|
4441
|
+
"editor-canvas-description": "This is your canvas. Drag and drop action blocks here to build your automation flow.",
|
|
4211
4442
|
"editor-save-title": "Save Progress",
|
|
4212
|
-
"editor-save-description": "Keep your changes safe. We recommend saving
|
|
4213
|
-
"editor-run-title": "Test
|
|
4214
|
-
"editor-run-description": "Click Run to
|
|
4215
|
-
"editor-logs-title": "
|
|
4216
|
-
"editor-logs-description": "The
|
|
4217
|
-
"editor-close-title": "
|
|
4218
|
-
"editor-close-description": "Done for now? Return to the dashboard to manage other projects
|
|
4443
|
+
"editor-save-description": "Keep your changes safe. We recommend saving your pipeline frequently.",
|
|
4444
|
+
"editor-run-title": "Test Pipeline",
|
|
4445
|
+
"editor-run-description": "Click Run to test your pipeline. Pipelab will execute each block in real-time.",
|
|
4446
|
+
"editor-logs-title": "Run Logs",
|
|
4447
|
+
"editor-logs-description": "The log panel shows real-time execution steps, helping you monitor and debug.",
|
|
4448
|
+
"editor-close-title": "Close Editor",
|
|
4449
|
+
"editor-close-description": "Done for now? Return to the dashboard to manage other projects and pipelines."
|
|
4219
4450
|
}
|
|
4220
4451
|
};
|
|
4221
4452
|
//#endregion
|
|
@@ -4223,43 +4454,56 @@ var en_US_default = {
|
|
|
4223
4454
|
var fr_FR_default = {
|
|
4224
4455
|
settings: {
|
|
4225
4456
|
"darkTheme": "Thème sombre",
|
|
4457
|
+
"autosave": "Enregistrement automatique",
|
|
4458
|
+
"autosaveDescription": "Enregistrez automatiquement les modifications de vos pipelines en temps réel.",
|
|
4226
4459
|
"language": "Langue",
|
|
4227
4460
|
"languageOptions": {
|
|
4228
4461
|
"en-US": "English",
|
|
4229
4462
|
"fr-FR": "Français",
|
|
4230
|
-
"pt-BR": "
|
|
4231
|
-
"zh-CN": "
|
|
4232
|
-
"es-ES": "
|
|
4233
|
-
"de-DE": "
|
|
4463
|
+
"pt-BR": "Português",
|
|
4464
|
+
"zh-CN": "Chinois",
|
|
4465
|
+
"es-ES": "Espagnol",
|
|
4466
|
+
"de-DE": "Allemand"
|
|
4234
4467
|
},
|
|
4235
4468
|
"tabs": {
|
|
4236
4469
|
"general": "Général",
|
|
4237
4470
|
"storage": "Stockage",
|
|
4238
4471
|
"integrations": "Intégrations",
|
|
4239
4472
|
"advanced": "Avancé",
|
|
4240
|
-
"billing": "Facturation"
|
|
4473
|
+
"billing": "Facturation",
|
|
4474
|
+
"plugins": "Extensions",
|
|
4475
|
+
"core-plugins": "Extensions de base",
|
|
4476
|
+
"community-plugins": "Extensions de la communauté",
|
|
4477
|
+
"versions": "Versions"
|
|
4241
4478
|
},
|
|
4242
|
-
"
|
|
4243
|
-
"
|
|
4244
|
-
"
|
|
4245
|
-
"
|
|
4246
|
-
"
|
|
4247
|
-
"
|
|
4248
|
-
"
|
|
4249
|
-
"
|
|
4250
|
-
"
|
|
4251
|
-
"
|
|
4252
|
-
"
|
|
4253
|
-
"cache-
|
|
4254
|
-
"
|
|
4255
|
-
"
|
|
4256
|
-
"
|
|
4479
|
+
"pipeline-cache-folder": "Dossier cache des pipelines :",
|
|
4480
|
+
"enter-or-browse-for-a-folder": "Saisir ou parcourir pour choisir un dossier",
|
|
4481
|
+
"browse": "Parcourir",
|
|
4482
|
+
"manage-where-the-app-stores-temporary-and-cache-files": "Configurez les dossiers locaux pour les fichiers temporaires et le cache de l'application.",
|
|
4483
|
+
"clear-cache": "Vider le cache",
|
|
4484
|
+
"reset-to-default": "Réinitialiser par défaut",
|
|
4485
|
+
"manage-subscription": "Gérer l'abonnement",
|
|
4486
|
+
"renewal-date": "Date de renouvellement",
|
|
4487
|
+
"start-date": "Date de début :",
|
|
4488
|
+
"cache-cleared-successfully": "Cache vidé avec succès",
|
|
4489
|
+
"failed-to-clear-cache-error-message": "Échec du vidage du cache : {0}",
|
|
4490
|
+
"failed-to-reset-cache-folder-error-message": "Échec de la réinitialisation du dossier cache : {0}",
|
|
4491
|
+
"select-cache-folder": "Sélectionner le dossier cache",
|
|
4492
|
+
"restart-dashboard-tour": "Réinitialiser le guide du tableau de bord",
|
|
4493
|
+
"restart-editor-tour": "Réinitialiser le guide de l'éditeur",
|
|
4494
|
+
"tour-reset-success": "Les guides d'aide ont été réinitialisés. Ils réapparaîtront lors de votre prochaine visite.",
|
|
4495
|
+
"storage-pipelab": "Pipelab",
|
|
4496
|
+
"storage-other": "Autres applications",
|
|
4497
|
+
"storage-free": "Espace libre",
|
|
4498
|
+
"disk-usage": "Utilisation du disque",
|
|
4499
|
+
"free": "Libre",
|
|
4500
|
+
"other": "Autre"
|
|
4257
4501
|
},
|
|
4258
4502
|
headers: {
|
|
4259
4503
|
"dashboard": "Tableau de bord",
|
|
4260
|
-
"
|
|
4504
|
+
"pipelines": "Pipelines",
|
|
4261
4505
|
"editor": "Éditeur",
|
|
4262
|
-
"billing": "
|
|
4506
|
+
"billing": "@:settings.tabs.billing",
|
|
4263
4507
|
"team": "Équipe"
|
|
4264
4508
|
},
|
|
4265
4509
|
base: {
|
|
@@ -4269,49 +4513,121 @@ var fr_FR_default = {
|
|
|
4269
4513
|
"cancel": "Annuler",
|
|
4270
4514
|
"end": "Fin",
|
|
4271
4515
|
"delete": "Supprimer",
|
|
4272
|
-
"logs": "
|
|
4516
|
+
"logs": "Journaux",
|
|
4273
4517
|
"ok": "OK",
|
|
4274
4518
|
"add": "Ajouter",
|
|
4275
|
-
"search": "Rechercher..."
|
|
4519
|
+
"search": "Rechercher...",
|
|
4520
|
+
"success": "Succès",
|
|
4521
|
+
"error": "Erreur"
|
|
4276
4522
|
},
|
|
4277
4523
|
editor: {
|
|
4278
4524
|
"invalid-file-content": "Contenu du fichier invalide",
|
|
4279
|
-
"welcome-back": "Bon retour
|
|
4280
|
-
"please-log-in-to-run-a-
|
|
4281
|
-
"execution-done": "Exécution terminée",
|
|
4282
|
-
"your-project-has-been-executed-successfully": "Votre
|
|
4525
|
+
"welcome-back": "Bon retour !",
|
|
4526
|
+
"please-log-in-to-run-a-pipeline": "Veuillez vous connecter pour exécuter ce pipeline.",
|
|
4527
|
+
"execution-done": "Exécution terminée avec succès",
|
|
4528
|
+
"your-project-has-been-executed-successfully": "Votre pipeline s'est exécuté et s'est terminé avec succès.",
|
|
4283
4529
|
"execution-failed": "Échec de l'exécution",
|
|
4284
|
-
"project-has-encountered-an-error": "Le
|
|
4285
|
-
"project-saved": "
|
|
4286
|
-
"your-project-has-be-saved-successfully": "Votre
|
|
4287
|
-
"
|
|
4288
|
-
"
|
|
4530
|
+
"project-has-encountered-an-error": "Le pipeline a rencontré une erreur :",
|
|
4531
|
+
"project-saved": "Pipeline enregistré",
|
|
4532
|
+
"your-project-has-be-saved-successfully": "Votre pipeline a été enregistré avec succès.",
|
|
4533
|
+
"view-history": "Historique",
|
|
4534
|
+
"add-plugin": "Ajouter une extension",
|
|
4535
|
+
"display-advanced-nodes": "Afficher les nœuds avancés",
|
|
4536
|
+
"project-settings": "Paramètres du pipeline",
|
|
4537
|
+
"jit-loading-title": "Préparation des extensions",
|
|
4538
|
+
"jit-loading-subtitle": "Veuillez patienter pendant que Pipelab télécharge et configure les extensions requises pour ce pipeline.",
|
|
4539
|
+
"jit-loading-status": "Téléchargement et configuration des paquets d'extension...",
|
|
4540
|
+
"validation-failed": "Échec de la validation",
|
|
4541
|
+
"validation-plugin-disabled-or-missing": "Le bloc \"{nodeName}\" requiert l'extension \"{pluginId}\", qui n'est pas installée ou activée actuellement.",
|
|
4542
|
+
"validation-missing-param": "Veuillez configurer le champ requis \"{paramName}\" dans le bloc \"{nodeName}\"."
|
|
4289
4543
|
},
|
|
4290
4544
|
home: {
|
|
4291
|
-
"invalid-preset": "
|
|
4292
|
-
"store-project-on-the-cloud": "Enregistrer le projet
|
|
4293
|
-
"cloud": "
|
|
4545
|
+
"invalid-preset": "Modèle invalide",
|
|
4546
|
+
"store-project-on-the-cloud": "Enregistrer le projet dans le Cloud",
|
|
4547
|
+
"cloud": "Cloud",
|
|
4294
4548
|
"store-project-locally": "Enregistrer le projet localement",
|
|
4295
4549
|
"local": "Local",
|
|
4296
|
-
"invalid-number-of-paths-selected": "Nombre
|
|
4550
|
+
"invalid-number-of-paths-selected": "Nombre de chemins sélectionné invalide",
|
|
4297
4551
|
"pipelab-project": "Projet Pipelab",
|
|
4298
|
-
"choose-a-new-path": "
|
|
4552
|
+
"choose-a-new-path": "Choisir un nouveau chemin",
|
|
4299
4553
|
"invalid-file-type": "Type de fichier invalide",
|
|
4300
|
-
"create-project": "Créer
|
|
4301
|
-
"
|
|
4554
|
+
"create-project": "Créer le Projet",
|
|
4555
|
+
"create-pipeline": "Créer le Pipeline",
|
|
4556
|
+
"duplicate-project": "Dupliquer le Projet",
|
|
4557
|
+
"duplicate-pipeline": "Dupliquer le Pipeline",
|
|
4302
4558
|
"project-name": "Nom du projet",
|
|
4303
|
-
"new-project": "Nouveau
|
|
4559
|
+
"new-project": "Nouveau Projet",
|
|
4560
|
+
"new-pipeline": "Nouveau Pipeline",
|
|
4304
4561
|
"open": "Ouvrir",
|
|
4562
|
+
"import": "Importer",
|
|
4563
|
+
"pipeline-name": "Nom du pipeline",
|
|
4305
4564
|
"your-projects": "Vos projets",
|
|
4306
|
-
"no-projects-yet": "Aucun projet
|
|
4565
|
+
"no-projects-yet": "Aucun projet pour le moment",
|
|
4566
|
+
"no-pipelines-yet": "Aucun pipeline pour le moment",
|
|
4567
|
+
"delete-project": "Supprimer le Projet",
|
|
4568
|
+
"confirm-delete-project": "Êtes-vous sûr de vouloir supprimer ce projet ? Cette action est irréversible.",
|
|
4569
|
+
"cannot-delete-project": "Impossible de supprimer le projet",
|
|
4570
|
+
"project-not-empty": "Ce projet contient des pipelines. Veuillez d'abord les supprimer.",
|
|
4571
|
+
"transfer": "Transférer",
|
|
4572
|
+
"transfer-successful": "Transfert réussi",
|
|
4573
|
+
"pipeline-transferred": "Pipeline transféré avec succès",
|
|
4574
|
+
"select-project": "Sélectionner le Projet",
|
|
4575
|
+
"build-history": "Historique des exécutions",
|
|
4576
|
+
"duplicate": "Dupliquer",
|
|
4577
|
+
"rename-project": "Renommer le Projet",
|
|
4578
|
+
"new-project-name": "Nouveau nom du projet",
|
|
4579
|
+
"premium-feature": "Ceci est une fonctionnalité premium",
|
|
4580
|
+
"migrate-warning": "Ce format de fichier sera bientôt obsolète. Veuillez le migrer vers le nouveau stockage local.",
|
|
4581
|
+
"simple-pipeline": "Pipeline basique",
|
|
4582
|
+
"advanced-pipeline": "Pipeline avancé",
|
|
4583
|
+
"new-simple-project": "Nouveau projet simple",
|
|
4584
|
+
"new-advanced-project": "Nouveau projet avancé",
|
|
4585
|
+
"store-project-internally": "Enregistrer le projet localement",
|
|
4586
|
+
"internal": "Interne",
|
|
4587
|
+
"confirm-migration-message": "Êtes-vous sûr de vouloir déplacer ce pipeline vers le stockage local de l'application ? Pipelab gérera ce pipeline en interne.",
|
|
4588
|
+
"migrate-pipeline": "Migrer le Pipeline",
|
|
4589
|
+
"migration-success": "Pipeline migré avec succès",
|
|
4590
|
+
"migrate-to-internal": "Déplacer vers l'espace de travail",
|
|
4591
|
+
"only-internal-supported-notice": "Pipelab gère désormais tous les pipelines au sein de l'espace de travail de l'application. Les fichiers externes sont obsolètes, mais peuvent toujours être importés.",
|
|
4592
|
+
"import-pipeline": "Importer le Pipeline",
|
|
4593
|
+
"import-from-stable": "Importer depuis Stable...",
|
|
4594
|
+
"import-pipeline-file": "Importer un fichier de pipeline (.pipelab)...",
|
|
4595
|
+
"import-success": "Pipeline importé avec succès",
|
|
4596
|
+
"failed-to-read-file": "Échec de la lecture du fichier sélectionné",
|
|
4597
|
+
"export-pipeline": "Exporter le pipeline...",
|
|
4598
|
+
"export-success": "Pipeline exporté avec succès",
|
|
4599
|
+
"export-failed": "Échec de l'exportation du pipeline"
|
|
4307
4600
|
},
|
|
4308
|
-
|
|
4601
|
+
pipelines: { "title": "@:headers.pipelines" },
|
|
4602
|
+
tour: {
|
|
4603
|
+
"start-tour": "Démarrer le guide",
|
|
4604
|
+
"projects-list-title": "Navigateur de projets",
|
|
4605
|
+
"projects-list-description": "Cette barre latérale liste vos projets. En sélectionnant un projet, ses pipelines s'afficheront dans la zone principale.",
|
|
4606
|
+
"add-project-title": "Créer un nouveau projet",
|
|
4607
|
+
"add-project-description": "Les projets organisent vos pipelines par sujet ou client. Cliquez ici pour commencer un nouveau projet.",
|
|
4608
|
+
"new-pipeline-title": "Créer un pipeline",
|
|
4609
|
+
"new-pipeline-description": "Prêt à automatiser ? Créez un nouveau pipeline pour commencer à ajouter des actions et de la logique.",
|
|
4610
|
+
"project-actions-title": "Gestion du projet",
|
|
4611
|
+
"project-actions-description": "Utilisez ces boutons pour renommer ou supprimer le projet actuellement sélectionné.",
|
|
4612
|
+
"editor-canvas-title": "Le canevas visuel",
|
|
4613
|
+
"editor-canvas-description": "Ceci est votre canevas. Glissez-déposez des blocs d'action ici pour construire votre flux d'automatisation.",
|
|
4614
|
+
"editor-save-title": "Enregistrer la progression",
|
|
4615
|
+
"editor-save-description": "Protégez vos modifications. Nous vous recommandons d'enregistrer fréquemment votre pipeline.",
|
|
4616
|
+
"editor-run-title": "Tester le pipeline",
|
|
4617
|
+
"editor-run-description": "Cliquez sur Exécuter pour tester votre pipeline. Pipelab exécutera chaque bloc en temps réel.",
|
|
4618
|
+
"editor-logs-title": "Journaux d'exécution",
|
|
4619
|
+
"editor-logs-description": "Le panneau des journaux affiche les étapes d'exécution en temps réel, vous aidant à surveiller et déboguer.",
|
|
4620
|
+
"editor-close-title": "Fermer l'éditeur",
|
|
4621
|
+
"editor-close-description": "Terminé pour le moment ? Retournez au tableau de bord pour gérer d'autres projets et pipelines."
|
|
4622
|
+
}
|
|
4309
4623
|
};
|
|
4310
4624
|
//#endregion
|
|
4311
4625
|
//#region ../../packages/shared/src/i18n/pt_BR.json
|
|
4312
4626
|
var pt_BR_default = {
|
|
4313
4627
|
settings: {
|
|
4314
4628
|
"darkTheme": "Tema escuro",
|
|
4629
|
+
"autosave": "Salvar automaticamente",
|
|
4630
|
+
"autosaveDescription": "Salvar alterações em suas pipelines automaticamente em tempo real.",
|
|
4315
4631
|
"language": "Idioma",
|
|
4316
4632
|
"languageOptions": {
|
|
4317
4633
|
"en-US": "English",
|
|
@@ -4323,33 +4639,44 @@ var pt_BR_default = {
|
|
|
4323
4639
|
},
|
|
4324
4640
|
"tabs": {
|
|
4325
4641
|
"general": "Geral",
|
|
4326
|
-
"storage": "
|
|
4642
|
+
"storage": "Armazenamento",
|
|
4327
4643
|
"integrations": "Integrações",
|
|
4328
4644
|
"advanced": "Avançado",
|
|
4329
|
-
"billing": "
|
|
4645
|
+
"billing": "Faturamento",
|
|
4646
|
+
"plugins": "Extensões",
|
|
4647
|
+
"core-plugins": "Extensões nativas",
|
|
4648
|
+
"community-plugins": "Extensões da comunidade",
|
|
4649
|
+
"versions": "Versões"
|
|
4330
4650
|
},
|
|
4331
|
-
"
|
|
4332
|
-
"
|
|
4333
|
-
"
|
|
4334
|
-
"
|
|
4335
|
-
"
|
|
4336
|
-
"
|
|
4337
|
-
"
|
|
4338
|
-
"
|
|
4339
|
-
"
|
|
4340
|
-
"
|
|
4341
|
-
"
|
|
4342
|
-
"cache-
|
|
4343
|
-
"
|
|
4344
|
-
"
|
|
4345
|
-
"
|
|
4651
|
+
"pipeline-cache-folder": "Pasta de cache de pipelines:",
|
|
4652
|
+
"enter-or-browse-for-a-folder": "Digite ou procure uma pasta",
|
|
4653
|
+
"browse": "Procurar",
|
|
4654
|
+
"manage-where-the-app-stores-temporary-and-cache-files": "Configurar pastas locais para arquivos temporários e cache do aplicativo.",
|
|
4655
|
+
"clear-cache": "Limpar cache",
|
|
4656
|
+
"reset-to-default": "Redefinir para o padrão",
|
|
4657
|
+
"manage-subscription": "Gerenciar assinatura",
|
|
4658
|
+
"renewal-date": "Data de renovação",
|
|
4659
|
+
"start-date": "Data de início:",
|
|
4660
|
+
"cache-cleared-successfully": "Cache limpo com sucesso",
|
|
4661
|
+
"failed-to-clear-cache-error-message": "Falha ao limpar cache: {0}",
|
|
4662
|
+
"failed-to-reset-cache-folder-error-message": "Falha ao redefinir pasta de cache: {0}",
|
|
4663
|
+
"select-cache-folder": "Selecionar pasta de cache",
|
|
4664
|
+
"restart-dashboard-tour": "Redefinir guia de início",
|
|
4665
|
+
"restart-editor-tour": "Redefinir guia do editor",
|
|
4666
|
+
"tour-reset-success": "Os guias de ajuda foram redefinidos. Eles reaparecerão em sua próxima visita.",
|
|
4667
|
+
"storage-pipelab": "Pipelab",
|
|
4668
|
+
"storage-other": "Outros aplicativos",
|
|
4669
|
+
"storage-free": "Espaço livre",
|
|
4670
|
+
"disk-usage": "Uso do disco",
|
|
4671
|
+
"free": "Livre",
|
|
4672
|
+
"other": "Outro"
|
|
4346
4673
|
},
|
|
4347
4674
|
headers: {
|
|
4348
|
-
"dashboard": "
|
|
4349
|
-
"
|
|
4675
|
+
"dashboard": "Início",
|
|
4676
|
+
"pipelines": "Pipelines",
|
|
4350
4677
|
"editor": "Editor",
|
|
4351
|
-
"billing": "
|
|
4352
|
-
"team": "
|
|
4678
|
+
"billing": "@:settings.tabs.billing",
|
|
4679
|
+
"team": "Equipe"
|
|
4353
4680
|
},
|
|
4354
4681
|
base: {
|
|
4355
4682
|
"close": "Fechar",
|
|
@@ -4358,47 +4685,122 @@ var pt_BR_default = {
|
|
|
4358
4685
|
"cancel": "Cancelar",
|
|
4359
4686
|
"end": "Fim",
|
|
4360
4687
|
"delete": "Excluir",
|
|
4361
|
-
"logs": "
|
|
4688
|
+
"logs": "Registros",
|
|
4362
4689
|
"ok": "OK",
|
|
4363
|
-
"add": "Adicionar"
|
|
4690
|
+
"add": "Adicionar",
|
|
4691
|
+
"search": "Buscar...",
|
|
4692
|
+
"success": "Sucesso",
|
|
4693
|
+
"error": "Erro"
|
|
4364
4694
|
},
|
|
4365
4695
|
editor: {
|
|
4366
|
-
"invalid-file-content": "
|
|
4367
|
-
"welcome-back": "
|
|
4368
|
-
"please-log-in-to-run-a-
|
|
4369
|
-
"execution-done": "
|
|
4370
|
-
"your-project-has-been-executed-successfully": "
|
|
4371
|
-
"execution-failed": "
|
|
4372
|
-
"project-has-encountered-an-error": "
|
|
4373
|
-
"project-saved": "
|
|
4374
|
-
"your-project-has-be-saved-successfully": "
|
|
4696
|
+
"invalid-file-content": "Conteúdo do arquivo inválido",
|
|
4697
|
+
"welcome-back": "Bem-vindo de volta!",
|
|
4698
|
+
"please-log-in-to-run-a-pipeline": "Por favor, faça login para executar esta pipeline.",
|
|
4699
|
+
"execution-done": "Execução concluída com sucesso",
|
|
4700
|
+
"your-project-has-been-executed-successfully": "Sua pipeline foi executada e concluída com sucesso.",
|
|
4701
|
+
"execution-failed": "Falha na execução",
|
|
4702
|
+
"project-has-encountered-an-error": "A pipeline encontrou um erro:",
|
|
4703
|
+
"project-saved": "Pipeline salva",
|
|
4704
|
+
"your-project-has-be-saved-successfully": "Sua pipeline foi salva com sucesso.",
|
|
4705
|
+
"view-history": "Histórico",
|
|
4706
|
+
"add-plugin": "Adicionar extensão",
|
|
4707
|
+
"display-advanced-nodes": "Exibir blocos avançados",
|
|
4708
|
+
"project-settings": "Ajustes da pipeline",
|
|
4709
|
+
"jit-loading-title": "Preparando extensões",
|
|
4710
|
+
"jit-loading-subtitle": "Aguarde enquanto o Pipelab baixa e configura as extensões necessárias para esta pipeline.",
|
|
4711
|
+
"jit-loading-status": "Baixando e configurando pacotes de extensões...",
|
|
4712
|
+
"validation-failed": "Falha na validação",
|
|
4713
|
+
"validation-plugin-disabled-or-missing": "O bloco \"{nodeName}\" requer a extensão \"{pluginId}\", que não está instalada ou ativada.",
|
|
4714
|
+
"validation-missing-param": "Por favor, configure o campo obrigatório \"{paramName}\" no bloco \"{nodeName}\"."
|
|
4375
4715
|
},
|
|
4376
4716
|
home: {
|
|
4377
|
-
"invalid-preset": "
|
|
4378
|
-
"store-project-on-the-cloud": "
|
|
4379
|
-
"cloud": "
|
|
4380
|
-
"store-project-locally": "
|
|
4717
|
+
"invalid-preset": "Modelo inválido",
|
|
4718
|
+
"store-project-on-the-cloud": "Salvar projeto na nuvem",
|
|
4719
|
+
"cloud": "Nuvem",
|
|
4720
|
+
"store-project-locally": "Salvar projeto localmente",
|
|
4381
4721
|
"local": "Local",
|
|
4382
|
-
"invalid-number-of-paths-selected": "
|
|
4383
|
-
"pipelab-project": "Pipelab
|
|
4384
|
-
"choose-a-new-path": "
|
|
4385
|
-
"invalid-file-type": "
|
|
4386
|
-
"create-project": "
|
|
4387
|
-
"
|
|
4388
|
-
"project
|
|
4389
|
-
"
|
|
4390
|
-
"
|
|
4391
|
-
"
|
|
4392
|
-
"
|
|
4722
|
+
"invalid-number-of-paths-selected": "Número de caminhos selecionado inválido",
|
|
4723
|
+
"pipelab-project": "Projeto Pipelab",
|
|
4724
|
+
"choose-a-new-path": "Escolha um novo caminho",
|
|
4725
|
+
"invalid-file-type": "Tipo de arquivo inválido",
|
|
4726
|
+
"create-project": "Criar Projeto",
|
|
4727
|
+
"create-pipeline": "Criar Pipeline",
|
|
4728
|
+
"duplicate-project": "Duplicar Projeto",
|
|
4729
|
+
"duplicate-pipeline": "Duplicar Pipeline",
|
|
4730
|
+
"project-name": "Nome do projeto",
|
|
4731
|
+
"new-project": "Novo Projeto",
|
|
4732
|
+
"new-pipeline": "Nova Pipeline",
|
|
4733
|
+
"open": "Abrir",
|
|
4734
|
+
"import": "Importar",
|
|
4735
|
+
"pipeline-name": "Nome da pipeline",
|
|
4736
|
+
"your-projects": "Seus projetos",
|
|
4737
|
+
"no-projects-yet": "Nenhum projeto ainda",
|
|
4738
|
+
"no-pipelines-yet": "Nenhuma pipeline ainda",
|
|
4739
|
+
"delete-project": "Excluir Projeto",
|
|
4740
|
+
"confirm-delete-project": "Tem certeza de que deseja excluir este projeto? Esta ação não pode ser desfeita.",
|
|
4741
|
+
"cannot-delete-project": "Não é possível excluir o projeto",
|
|
4742
|
+
"project-not-empty": "Este projeto contém pipelines. Por favor, exclua-os primeiro.",
|
|
4743
|
+
"transfer": "Transferir",
|
|
4744
|
+
"transfer-successful": "Transferência bem-sucedida",
|
|
4745
|
+
"pipeline-transferred": "Pipeline transferida com sucesso",
|
|
4746
|
+
"select-project": "Selecionar Projeto",
|
|
4747
|
+
"build-history": "Histórico de execuções",
|
|
4748
|
+
"duplicate": "Duplicar",
|
|
4749
|
+
"rename-project": "Renomear Projeto",
|
|
4750
|
+
"new-project-name": "Novo nome do projeto",
|
|
4751
|
+
"premium-feature": "Este é um recurso premium",
|
|
4752
|
+
"migrate-warning": "Este formato de arquivo em prazo curto será descontinuado. Por favor, migre-o para o novo armazenamento local do aplicativo.",
|
|
4753
|
+
"simple-pipeline": "Pipeline básica",
|
|
4754
|
+
"advanced-pipeline": "Pipeline avançada",
|
|
4755
|
+
"new-simple-project": "Novo projeto simples",
|
|
4756
|
+
"new-advanced-project": "Novo projeto avançado",
|
|
4757
|
+
"store-project-internally": "Salvar projeto localmente",
|
|
4758
|
+
"internal": "Interno",
|
|
4759
|
+
"confirm-migration-message": "Tem certeza de que deseja mover esta pipeline para o armazenamento local do aplicativo? O Pipelab gerenciará esta pipeline internamente.",
|
|
4760
|
+
"migrate-pipeline": "Migrar Pipeline",
|
|
4761
|
+
"migration-success": "Pipeline migrada com sucesso",
|
|
4762
|
+
"migrate-to-internal": "Mover para o espaço de trabalho",
|
|
4763
|
+
"only-internal-supported-notice": "O Pipelab agora gerencia todas as pipelines dentro do espaço de trabalho do aplicativo. Arquivos externos foram descontinuados, mas podem ser importados.",
|
|
4764
|
+
"import-pipeline": "Importar Pipeline",
|
|
4765
|
+
"import-from-stable": "Importar do Stable...",
|
|
4766
|
+
"import-pipeline-file": "Importar arquivo de pipeline (.pipelab)...",
|
|
4767
|
+
"import-success": "Pipeline importada com sucesso",
|
|
4768
|
+
"failed-to-read-file": "Falha ao ler o arquivo selecionado",
|
|
4769
|
+
"export-pipeline": "Exportar pipeline...",
|
|
4770
|
+
"export-success": "Pipeline exportado com sucesso",
|
|
4771
|
+
"export-failed": "Falha ao exportar pipeline"
|
|
4393
4772
|
},
|
|
4394
|
-
|
|
4773
|
+
pipelines: { "title": "@:headers.pipelines" },
|
|
4774
|
+
tour: {
|
|
4775
|
+
"start-tour": "Iniciar guia",
|
|
4776
|
+
"projects-list-title": "Navegador de projetos",
|
|
4777
|
+
"projects-list-description": "Esta barra lateral mostra seus projetos. Ao selecionar um, suas pipelines serão exibidas na área principal.",
|
|
4778
|
+
"add-project-title": "Criar novo projeto",
|
|
4779
|
+
"add-project-description": "Os projetos organizam suas pipelines por tópico ou cliente. Clique aqui para criar um novo projeto.",
|
|
4780
|
+
"new-pipeline-title": "Criar uma pipeline",
|
|
4781
|
+
"new-pipeline-description": "Pronto para automatizar? Crie uma nova pipeline para começar a adicionar ações e lógica.",
|
|
4782
|
+
"project-actions-title": "Gerenciamento de projetos",
|
|
4783
|
+
"project-actions-description": "Use estes botões para renomear ou excluir o projeto selecionado.",
|
|
4784
|
+
"editor-canvas-title": "O painel visual",
|
|
4785
|
+
"editor-canvas-description": "Este é o seu painel. Arraste e solte blocos de ação aqui para construir seu fluxo.",
|
|
4786
|
+
"editor-save-title": "Salvar progresso",
|
|
4787
|
+
"editor-save-description": "Mantenha suas alterações seguras. Recomendamos salvar sua pipeline frequentemente.",
|
|
4788
|
+
"editor-run-title": "Testar pipeline",
|
|
4789
|
+
"editor-run-description": "Clique em Executar para testar sua pipeline. O Pipelab executará cada bloco em tempo real.",
|
|
4790
|
+
"editor-logs-title": "Registros de execução",
|
|
4791
|
+
"editor-logs-description": "O painel de registros exibe as etapas de execução em tempo real, ajudando você a monitorar e depurar.",
|
|
4792
|
+
"editor-close-title": "Fechar editor",
|
|
4793
|
+
"editor-close-description": "Terminou por agora? Volte para o painel principal para gerenciar outros projetos e pipelines."
|
|
4794
|
+
}
|
|
4395
4795
|
};
|
|
4396
4796
|
//#endregion
|
|
4397
4797
|
//#region ../../packages/shared/src/i18n/zh_CN.json
|
|
4398
4798
|
var zh_CN_default = {
|
|
4399
4799
|
settings: {
|
|
4400
|
-
"darkTheme": "
|
|
4401
|
-
"
|
|
4800
|
+
"darkTheme": "深色主题",
|
|
4801
|
+
"autosave": "自动保存",
|
|
4802
|
+
"autosaveDescription": "自动保存流水线修改,省心省力。",
|
|
4803
|
+
"language": "语言",
|
|
4402
4804
|
"languageOptions": {
|
|
4403
4805
|
"en-US": "English",
|
|
4404
4806
|
"fr-FR": "French",
|
|
@@ -4408,34 +4810,45 @@ var zh_CN_default = {
|
|
|
4408
4810
|
"de-DE": "German"
|
|
4409
4811
|
},
|
|
4410
4812
|
"tabs": {
|
|
4411
|
-
"general": "
|
|
4412
|
-
"storage": "
|
|
4413
|
-
"integrations": "
|
|
4414
|
-
"advanced": "
|
|
4415
|
-
"billing": "
|
|
4813
|
+
"general": "常规",
|
|
4814
|
+
"storage": "存储",
|
|
4815
|
+
"integrations": "集成",
|
|
4816
|
+
"advanced": "高级",
|
|
4817
|
+
"billing": "计费",
|
|
4818
|
+
"plugins": "插件",
|
|
4819
|
+
"core-plugins": "核心插件",
|
|
4820
|
+
"community-plugins": "社区插件",
|
|
4821
|
+
"versions": "版本"
|
|
4416
4822
|
},
|
|
4417
|
-
"
|
|
4418
|
-
"
|
|
4419
|
-
"
|
|
4420
|
-
"
|
|
4421
|
-
"
|
|
4422
|
-
"
|
|
4423
|
-
"
|
|
4424
|
-
"
|
|
4425
|
-
"
|
|
4426
|
-
"
|
|
4427
|
-
"
|
|
4428
|
-
"cache-
|
|
4429
|
-
"
|
|
4430
|
-
"
|
|
4431
|
-
"
|
|
4823
|
+
"pipeline-cache-folder": "流水线缓存文件夹:",
|
|
4824
|
+
"enter-or-browse-for-a-folder": "输入或浏览选择文件夹",
|
|
4825
|
+
"browse": "浏览",
|
|
4826
|
+
"manage-where-the-app-stores-temporary-and-cache-files": "配置用于存储临时文件和应用程序缓存的本地目录。",
|
|
4827
|
+
"clear-cache": "清除缓存",
|
|
4828
|
+
"reset-to-default": "恢复默认",
|
|
4829
|
+
"manage-subscription": "管理订阅",
|
|
4830
|
+
"renewal-date": "续订日期",
|
|
4831
|
+
"start-date": "开始日期:",
|
|
4832
|
+
"cache-cleared-successfully": "缓存清除成功",
|
|
4833
|
+
"failed-to-clear-cache-error-message": "清除缓存失败: {0}",
|
|
4834
|
+
"failed-to-reset-cache-folder-error-message": "重置缓存文件夹失败: {0}",
|
|
4835
|
+
"select-cache-folder": "选择缓存文件夹",
|
|
4836
|
+
"restart-dashboard-tour": "重置仪表盘指南",
|
|
4837
|
+
"restart-editor-tour": "重置编辑器指南",
|
|
4838
|
+
"tour-reset-success": "帮助指南已重置。将在您下次访问时重新显示。",
|
|
4839
|
+
"storage-pipelab": "Pipelab",
|
|
4840
|
+
"storage-other": "其他应用",
|
|
4841
|
+
"storage-free": "空闲空间",
|
|
4842
|
+
"disk-usage": "磁盘使用情况",
|
|
4843
|
+
"free": "空闲",
|
|
4844
|
+
"other": "其他"
|
|
4432
4845
|
},
|
|
4433
4846
|
headers: {
|
|
4434
|
-
"dashboard": "
|
|
4435
|
-
"
|
|
4436
|
-
"editor": "
|
|
4437
|
-
"billing": "
|
|
4438
|
-
"team": "
|
|
4847
|
+
"dashboard": "仪表盘",
|
|
4848
|
+
"pipelines": "流水线",
|
|
4849
|
+
"editor": "编辑器",
|
|
4850
|
+
"billing": "@:settings.tabs.billing",
|
|
4851
|
+
"team": "团队"
|
|
4439
4852
|
},
|
|
4440
4853
|
base: {
|
|
4441
4854
|
"close": "关闭",
|
|
@@ -4446,45 +4859,120 @@ var zh_CN_default = {
|
|
|
4446
4859
|
"delete": "删除",
|
|
4447
4860
|
"logs": "日志",
|
|
4448
4861
|
"ok": "确定",
|
|
4449
|
-
"add": "添加"
|
|
4862
|
+
"add": "添加",
|
|
4863
|
+
"search": "搜索...",
|
|
4864
|
+
"success": "成功",
|
|
4865
|
+
"error": "错误"
|
|
4450
4866
|
},
|
|
4451
4867
|
editor: {
|
|
4452
|
-
"invalid-file-content": "
|
|
4453
|
-
"welcome-back": "
|
|
4454
|
-
"please-log-in-to-run-a-
|
|
4455
|
-
"execution-done": "
|
|
4456
|
-
"your-project-has-been-executed-successfully": "
|
|
4457
|
-
"execution-failed": "
|
|
4458
|
-
"project-has-encountered-an-error": "
|
|
4459
|
-
"project-saved": "
|
|
4460
|
-
"your-project-has-be-saved-successfully": "
|
|
4868
|
+
"invalid-file-content": "无效的文件内容",
|
|
4869
|
+
"welcome-back": "欢迎回来!",
|
|
4870
|
+
"please-log-in-to-run-a-pipeline": "请登录后运行此流水线。",
|
|
4871
|
+
"execution-done": "运行成功完成",
|
|
4872
|
+
"your-project-has-been-executed-successfully": "您的流水线已成功运行完成。",
|
|
4873
|
+
"execution-failed": "运行失败",
|
|
4874
|
+
"project-has-encountered-an-error": "流水线遇到错误:",
|
|
4875
|
+
"project-saved": "流水线已保存",
|
|
4876
|
+
"your-project-has-be-saved-successfully": "您的流水线已成功保存。",
|
|
4877
|
+
"view-history": "历史记录",
|
|
4878
|
+
"add-plugin": "添加插件",
|
|
4879
|
+
"display-advanced-nodes": "显示高级节点",
|
|
4880
|
+
"project-settings": "流水线设置",
|
|
4881
|
+
"jit-loading-title": "正在准备插件",
|
|
4882
|
+
"jit-loading-subtitle": "请稍候,Pipelab 正在下载并配置此流水线所需的插件。",
|
|
4883
|
+
"jit-loading-status": "正在下载并安装插件包...",
|
|
4884
|
+
"validation-failed": "验证失败",
|
|
4885
|
+
"validation-plugin-disabled-or-missing": "节点 \"{nodeName}\" 需要插件 \"{pluginId}\",该插件目前未安装或未启用。",
|
|
4886
|
+
"validation-missing-param": "请配置节点 \"{nodeName}\" 中的必填字段 \"{paramName}\"。"
|
|
4461
4887
|
},
|
|
4462
4888
|
home: {
|
|
4463
|
-
"invalid-preset": "
|
|
4464
|
-
"store-project-on-the-cloud": "
|
|
4465
|
-
"cloud": "
|
|
4466
|
-
"store-project-locally": "
|
|
4467
|
-
"local": "
|
|
4468
|
-
"invalid-number-of-paths-selected": "
|
|
4469
|
-
"pipelab-project": "Pipelab
|
|
4470
|
-
"choose-a-new-path": "
|
|
4471
|
-
"invalid-file-type": "
|
|
4472
|
-
"create-project": "
|
|
4473
|
-
"
|
|
4474
|
-
"project
|
|
4475
|
-
"
|
|
4476
|
-
"
|
|
4477
|
-
"
|
|
4478
|
-
"
|
|
4889
|
+
"invalid-preset": "无效的预设",
|
|
4890
|
+
"store-project-on-the-cloud": "保存项目到云端",
|
|
4891
|
+
"cloud": "云端",
|
|
4892
|
+
"store-project-locally": "本地保存项目",
|
|
4893
|
+
"local": "本地",
|
|
4894
|
+
"invalid-number-of-paths-selected": "选择的路径数量无效",
|
|
4895
|
+
"pipelab-project": "Pipelab 项目",
|
|
4896
|
+
"choose-a-new-path": "选择新路径",
|
|
4897
|
+
"invalid-file-type": "无效的文件类型",
|
|
4898
|
+
"create-project": "创建项目",
|
|
4899
|
+
"create-pipeline": "创建流水线",
|
|
4900
|
+
"duplicate-project": "复制项目",
|
|
4901
|
+
"duplicate-pipeline": "复制流水线",
|
|
4902
|
+
"project-name": "项目名称",
|
|
4903
|
+
"new-project": "新建项目",
|
|
4904
|
+
"new-pipeline": "新建流水线",
|
|
4905
|
+
"open": "打开",
|
|
4906
|
+
"import": "导入",
|
|
4907
|
+
"pipeline-name": "流水线名称",
|
|
4908
|
+
"your-projects": "您的项目",
|
|
4909
|
+
"no-projects-yet": "暂无项目",
|
|
4910
|
+
"no-pipelines-yet": "暂无流水线",
|
|
4911
|
+
"delete-project": "删除项目",
|
|
4912
|
+
"confirm-delete-project": "您确定要删除此项目吗?此操作无法撤销。",
|
|
4913
|
+
"cannot-delete-project": "无法删除项目",
|
|
4914
|
+
"project-not-empty": "此项目包含流水线。请先删除它们。",
|
|
4915
|
+
"transfer": "转移",
|
|
4916
|
+
"transfer-successful": "转移成功",
|
|
4917
|
+
"pipeline-transferred": "流水线已成功转移",
|
|
4918
|
+
"select-project": "选择项目",
|
|
4919
|
+
"build-history": "运行历史",
|
|
4920
|
+
"duplicate": "复制",
|
|
4921
|
+
"rename-project": "重命名项目",
|
|
4922
|
+
"new-project-name": "新项目名称",
|
|
4923
|
+
"premium-feature": "这是高级会员功能",
|
|
4924
|
+
"migrate-warning": "此文件格式即将被弃用。请将其迁移到新的本地工作区存储。",
|
|
4925
|
+
"simple-pipeline": "基础流水线",
|
|
4926
|
+
"advanced-pipeline": "高级流水线",
|
|
4927
|
+
"new-simple-project": "新建简单项目",
|
|
4928
|
+
"new-advanced-project": "新建高级项目",
|
|
4929
|
+
"store-project-internally": "本地保存项目",
|
|
4930
|
+
"internal": "内部",
|
|
4931
|
+
"confirm-migration-message": "您确定要将此流水线移动到本地工作区存储吗?Pipelab 将在内部管理此流水线。",
|
|
4932
|
+
"migrate-pipeline": "迁移流水线",
|
|
4933
|
+
"migration-success": "流水线已成功迁移",
|
|
4934
|
+
"migrate-to-internal": "移动到工作区",
|
|
4935
|
+
"only-internal-supported-notice": "Pipelab 现在管理应用工作区内的所有流水线。外部文件已被弃用,但仍可以导入。",
|
|
4936
|
+
"import-pipeline": "导入流水线",
|
|
4937
|
+
"import-from-stable": "从 Stable 导入...",
|
|
4938
|
+
"import-pipeline-file": "导入管道文件 (.pipelab)...",
|
|
4939
|
+
"import-success": "流水线已成功导入",
|
|
4940
|
+
"failed-to-read-file": "读取所选文件失败",
|
|
4941
|
+
"export-pipeline": "导出流水线...",
|
|
4942
|
+
"export-success": "流水线导出成功",
|
|
4943
|
+
"export-failed": "导出流水线失败"
|
|
4479
4944
|
},
|
|
4480
|
-
|
|
4945
|
+
pipelines: { "title": "@:headers.pipelines" },
|
|
4946
|
+
tour: {
|
|
4947
|
+
"start-tour": "开始向导",
|
|
4948
|
+
"projects-list-title": "项目导航器",
|
|
4949
|
+
"projects-list-description": "此侧边栏列出您的项目。选择一个项目将在主区域显示其包含的流水线。",
|
|
4950
|
+
"add-project-title": "创建新项目",
|
|
4951
|
+
"add-project-description": "项目可以按主题或客户组织您的流水线。点击这里开始一个新项目。",
|
|
4952
|
+
"new-pipeline-title": "创建流水线",
|
|
4953
|
+
"new-pipeline-description": "准备好自动化了吗?创建一个新流水线开始添加操作和逻辑。",
|
|
4954
|
+
"project-actions-title": "项目管理",
|
|
4955
|
+
"project-actions-description": "使用这些按钮重命名或删除当前选择的项目。",
|
|
4956
|
+
"editor-canvas-title": "可视化画布",
|
|
4957
|
+
"editor-canvas-description": "这是您的画布。拖放操作块到这里以构建您的自动化流程。",
|
|
4958
|
+
"editor-save-title": "保存进度",
|
|
4959
|
+
"editor-save-description": "确保您的更改已安全保存。我们建议您经常保存流水线。",
|
|
4960
|
+
"editor-run-title": "测试流水线",
|
|
4961
|
+
"editor-run-description": "点击“运行”测试流水线。Pipelab 将实时执行每个步骤。",
|
|
4962
|
+
"editor-logs-title": "运行日志",
|
|
4963
|
+
"editor-logs-description": "日志面板实时显示执行步骤,帮助您监控和调试。",
|
|
4964
|
+
"editor-close-title": "关闭编辑器",
|
|
4965
|
+
"editor-close-description": "今天的工作完成了吗?返回仪表盘以管理其他项目和流水线。"
|
|
4966
|
+
}
|
|
4481
4967
|
};
|
|
4482
4968
|
//#endregion
|
|
4483
4969
|
//#region ../../packages/shared/src/i18n/es_ES.json
|
|
4484
4970
|
var es_ES_default = {
|
|
4485
4971
|
settings: {
|
|
4486
|
-
"darkTheme": "
|
|
4487
|
-
"
|
|
4972
|
+
"darkTheme": "Tema oscuro",
|
|
4973
|
+
"autosave": "Guardado automático",
|
|
4974
|
+
"autosaveDescription": "Guarda automáticamente los cambios en tus pipelines en tiempo real.",
|
|
4975
|
+
"language": "Idioma",
|
|
4488
4976
|
"languageOptions": {
|
|
4489
4977
|
"en-US": "English",
|
|
4490
4978
|
"fr-FR": "French",
|
|
@@ -4495,33 +4983,44 @@ var es_ES_default = {
|
|
|
4495
4983
|
},
|
|
4496
4984
|
"tabs": {
|
|
4497
4985
|
"general": "General",
|
|
4498
|
-
"storage": "
|
|
4499
|
-
"integrations": "
|
|
4500
|
-
"advanced": "
|
|
4501
|
-
"billing": "
|
|
4986
|
+
"storage": "Almacenamiento",
|
|
4987
|
+
"integrations": "Integraciones",
|
|
4988
|
+
"advanced": "Avanzado",
|
|
4989
|
+
"billing": "Facturación",
|
|
4990
|
+
"plugins": "Complementos",
|
|
4991
|
+
"core-plugins": "Complementos principales",
|
|
4992
|
+
"community-plugins": "Complementos de la comunidad",
|
|
4993
|
+
"versions": "Versiones"
|
|
4502
4994
|
},
|
|
4503
|
-
"
|
|
4504
|
-
"
|
|
4505
|
-
"
|
|
4506
|
-
"
|
|
4507
|
-
"
|
|
4508
|
-
"
|
|
4509
|
-
"
|
|
4510
|
-
"
|
|
4511
|
-
"
|
|
4512
|
-
"
|
|
4513
|
-
"
|
|
4514
|
-
"cache-
|
|
4515
|
-
"
|
|
4516
|
-
"
|
|
4517
|
-
"
|
|
4995
|
+
"pipeline-cache-folder": "Carpeta de caché de pipelines:",
|
|
4996
|
+
"enter-or-browse-for-a-folder": "Escribe o busca una carpeta",
|
|
4997
|
+
"browse": "Buscar",
|
|
4998
|
+
"manage-where-the-app-stores-temporary-and-cache-files": "Configura carpetas locales para archivos temporales y caché de la aplicación.",
|
|
4999
|
+
"clear-cache": "Limpiar caché",
|
|
5000
|
+
"reset-to-default": "Restablecer por defecto",
|
|
5001
|
+
"manage-subscription": "Gestionar suscripción",
|
|
5002
|
+
"renewal-date": "Fecha de renovación",
|
|
5003
|
+
"start-date": "Fecha de inicio:",
|
|
5004
|
+
"cache-cleared-successfully": "Caché limpia con éxito",
|
|
5005
|
+
"failed-to-clear-cache-error-message": "Error al limpiar la caché: {0}",
|
|
5006
|
+
"failed-to-reset-cache-folder-error-message": "Error al restablecer la carpeta de caché: {0}",
|
|
5007
|
+
"select-cache-folder": "Seleccionar carpeta de caché",
|
|
5008
|
+
"restart-dashboard-tour": "Restablecer guía de inicio",
|
|
5009
|
+
"restart-editor-tour": "Restablecer guía del editor",
|
|
5010
|
+
"tour-reset-success": "Las guías de ayuda se han restablecido. Volverán a aparecer en tu próxima visita.",
|
|
5011
|
+
"storage-pipelab": "Pipelab",
|
|
5012
|
+
"storage-other": "Otras aplicaciones",
|
|
5013
|
+
"storage-free": "Espacio libre",
|
|
5014
|
+
"disk-usage": "Uso del disco",
|
|
5015
|
+
"free": "Libre",
|
|
5016
|
+
"other": "Otro"
|
|
4518
5017
|
},
|
|
4519
5018
|
headers: {
|
|
4520
|
-
"dashboard": "
|
|
4521
|
-
"
|
|
5019
|
+
"dashboard": "Inicio",
|
|
5020
|
+
"pipelines": "Pipelines",
|
|
4522
5021
|
"editor": "Editor",
|
|
4523
|
-
"billing": "
|
|
4524
|
-
"team": "
|
|
5022
|
+
"billing": "@:settings.tabs.billing",
|
|
5023
|
+
"team": "Equipo"
|
|
4525
5024
|
},
|
|
4526
5025
|
base: {
|
|
4527
5026
|
"close": "Cerrar",
|
|
@@ -4532,45 +5031,120 @@ var es_ES_default = {
|
|
|
4532
5031
|
"delete": "Eliminar",
|
|
4533
5032
|
"logs": "Registros",
|
|
4534
5033
|
"ok": "Aceptar",
|
|
4535
|
-
"add": "Añadir"
|
|
5034
|
+
"add": "Añadir",
|
|
5035
|
+
"search": "Buscar...",
|
|
5036
|
+
"success": "Éxito",
|
|
5037
|
+
"error": "Error"
|
|
4536
5038
|
},
|
|
4537
5039
|
editor: {
|
|
4538
|
-
"invalid-file-content": "
|
|
4539
|
-
"welcome-back": "
|
|
4540
|
-
"please-log-in-to-run-a-
|
|
4541
|
-
"execution-done": "
|
|
4542
|
-
"your-project-has-been-executed-successfully": "
|
|
4543
|
-
"execution-failed": "
|
|
4544
|
-
"project-has-encountered-an-error": "
|
|
4545
|
-
"project-saved": "
|
|
4546
|
-
"your-project-has-be-saved-successfully": "
|
|
5040
|
+
"invalid-file-content": "Contenido de archivo no válido",
|
|
5041
|
+
"welcome-back": "¡Bienvenido de nuevo!",
|
|
5042
|
+
"please-log-in-to-run-a-pipeline": "Inicia sesión para ejecutar este pipeline.",
|
|
5043
|
+
"execution-done": "Ejecución completada con éxito",
|
|
5044
|
+
"your-project-has-been-executed-successfully": "Tu pipeline se ha ejecutado correctamente.",
|
|
5045
|
+
"execution-failed": "Ejecución fallida",
|
|
5046
|
+
"project-has-encountered-an-error": "El pipeline ha encontrado un error:",
|
|
5047
|
+
"project-saved": "Pipeline guardado",
|
|
5048
|
+
"your-project-has-be-saved-successfully": "Tu pipeline se ha guardado correctamente.",
|
|
5049
|
+
"view-history": "Historial",
|
|
5050
|
+
"add-plugin": "Añadir complemento",
|
|
5051
|
+
"display-advanced-nodes": "Mostrar bloques avanzados",
|
|
5052
|
+
"project-settings": "Ajustes del pipeline",
|
|
5053
|
+
"jit-loading-title": "Preparando complementos",
|
|
5054
|
+
"jit-loading-subtitle": "Espera mientras Pipelab descarga y configura los complementos necesarios para este pipeline.",
|
|
5055
|
+
"jit-loading-status": "Descargando y configurando paquetes de complementos...",
|
|
5056
|
+
"validation-failed": "Validación fallida",
|
|
5057
|
+
"validation-plugin-disabled-or-missing": "El bloque \"{nodeName}\" requiere el complemento \"{pluginId}\", que no está instalado o activo.",
|
|
5058
|
+
"validation-missing-param": "Configura el campo obligatorio \"{paramName}\" en el bloque \"{nodeName}\"."
|
|
4547
5059
|
},
|
|
4548
5060
|
home: {
|
|
4549
|
-
"invalid-preset": "
|
|
4550
|
-
"store-project-on-the-cloud": "
|
|
4551
|
-
"cloud": "
|
|
4552
|
-
"store-project-locally": "
|
|
5061
|
+
"invalid-preset": "Plantilla no válida",
|
|
5062
|
+
"store-project-on-the-cloud": "Guardar proyecto en la nube",
|
|
5063
|
+
"cloud": "Nube",
|
|
5064
|
+
"store-project-locally": "Guardar proyecto localmente",
|
|
4553
5065
|
"local": "Local",
|
|
4554
|
-
"invalid-number-of-paths-selected": "
|
|
4555
|
-
"pipelab-project": "Pipelab
|
|
4556
|
-
"choose-a-new-path": "
|
|
4557
|
-
"invalid-file-type": "
|
|
4558
|
-
"create-project": "
|
|
4559
|
-
"
|
|
4560
|
-
"project
|
|
4561
|
-
"
|
|
4562
|
-
"
|
|
4563
|
-
"
|
|
4564
|
-
"
|
|
5066
|
+
"invalid-number-of-paths-selected": "Número de rutas seleccionado no válido",
|
|
5067
|
+
"pipelab-project": "Proyecto Pipelab",
|
|
5068
|
+
"choose-a-new-path": "Elige una nueva ruta",
|
|
5069
|
+
"invalid-file-type": "Tipo de archivo no válido",
|
|
5070
|
+
"create-project": "Crear Proyecto",
|
|
5071
|
+
"create-pipeline": "Crear Pipeline",
|
|
5072
|
+
"duplicate-project": "Duplicar Proyecto",
|
|
5073
|
+
"duplicate-pipeline": "Duplicar Pipeline",
|
|
5074
|
+
"project-name": "Nombre del proyecto",
|
|
5075
|
+
"new-project": "Nuevo Proyecto",
|
|
5076
|
+
"new-pipeline": "Nuevo Pipeline",
|
|
5077
|
+
"open": "Abrir",
|
|
5078
|
+
"import": "Importar",
|
|
5079
|
+
"pipeline-name": "Nombre del pipeline",
|
|
5080
|
+
"your-projects": "Tus proyectos",
|
|
5081
|
+
"no-projects-yet": "Aún no hay proyectos",
|
|
5082
|
+
"no-pipelines-yet": "Aún no hay pipelines",
|
|
5083
|
+
"delete-project": "Eliminar Proyecto",
|
|
5084
|
+
"confirm-delete-project": "¿Estás seguro de que quieres eliminar este proyecto? Esta acción no se puede deshacer.",
|
|
5085
|
+
"cannot-delete-project": "No se puede eliminar el proyecto",
|
|
5086
|
+
"project-not-empty": "Este proyecto contiene pipelines. Elíminalos primero.",
|
|
5087
|
+
"transfer": "Transferir",
|
|
5088
|
+
"transfer-successful": "Transferencia completada",
|
|
5089
|
+
"pipeline-transferred": "Pipeline transferido con éxito",
|
|
5090
|
+
"select-project": "Seleccionar Proyecto",
|
|
5091
|
+
"build-history": "Historial de ejecuciones",
|
|
5092
|
+
"duplicate": "Duplicar",
|
|
5093
|
+
"rename-project": "Renombrar Proyecto",
|
|
5094
|
+
"new-project-name": "Nuevo nombre del proyecto",
|
|
5095
|
+
"premium-feature": "Esta es una función premium",
|
|
5096
|
+
"migrate-warning": "Este formato de archivo pronto quedará obsoleto. Mígralo al nuevo almacenamiento local de la aplicación.",
|
|
5097
|
+
"simple-pipeline": "Pipeline básico",
|
|
5098
|
+
"advanced-pipeline": "Pipeline avanzado",
|
|
5099
|
+
"new-simple-project": "Nuevo proyecto simple",
|
|
5100
|
+
"new-advanced-project": "Nuevo proyecto avanzado",
|
|
5101
|
+
"store-project-internally": "Guardar proyecto localmente",
|
|
5102
|
+
"internal": "Interno",
|
|
5103
|
+
"confirm-migration-message": "¿Estás seguro de que quieres mover este pipeline al almacenamiento local de la aplicación? Pipelab gérera este pipeline internamente.",
|
|
5104
|
+
"migrate-pipeline": "Migrar Pipeline",
|
|
5105
|
+
"migration-success": "Pipeline migrado con éxito",
|
|
5106
|
+
"migrate-to-internal": "Mover al espacio de trabajo",
|
|
5107
|
+
"only-internal-supported-notice": "Pipelab ahora gestiona todos los pipelines dentro del espacio de trabajo. Los archivos externos están obsoletos, pero pueden importarse.",
|
|
5108
|
+
"import-pipeline": "Importar Pipeline",
|
|
5109
|
+
"import-from-stable": "Importar desde Stable...",
|
|
5110
|
+
"import-pipeline-file": "Importar archivo de pipeline (.pipelab)...",
|
|
5111
|
+
"import-success": "Pipeline importado con éxito",
|
|
5112
|
+
"failed-to-read-file": "Error al leer el archivo seleccionado",
|
|
5113
|
+
"export-pipeline": "Exportar pipeline...",
|
|
5114
|
+
"export-success": "Pipeline exportado correctamente",
|
|
5115
|
+
"export-failed": "Error al exportar el pipeline"
|
|
4565
5116
|
},
|
|
4566
|
-
|
|
5117
|
+
pipelines: { "title": "@:headers.pipelines" },
|
|
5118
|
+
tour: {
|
|
5119
|
+
"start-tour": "Iniciar guía",
|
|
5120
|
+
"projects-list-title": "Navegador de proyectos",
|
|
5121
|
+
"projects-list-description": "Esta barra lateral muestra tus proyectos. Al seleccionar uno se mostrarán sus pipelines en el área principal.",
|
|
5122
|
+
"add-project-title": "Crear nuevo proyecto",
|
|
5123
|
+
"add-project-description": "Los proyectos organizan tus pipelines por tema o cliente. Haz clic aquí para crear uno.",
|
|
5124
|
+
"new-pipeline-title": "Crear un pipeline",
|
|
5125
|
+
"new-pipeline-description": "¿Listo para automatizar? Crea un nuevo pipeline para empezar a añadir acciones y lógica.",
|
|
5126
|
+
"project-actions-title": "Gestión de proyectos",
|
|
5127
|
+
"project-actions-description": "Usa estos botones para renombrar o eliminar el proyecto seleccionado.",
|
|
5128
|
+
"editor-canvas-title": "El lienzo visual",
|
|
5129
|
+
"editor-canvas-description": "Este es tu lienzo. Arrastra y suelta bloques de acción aquí para construir tu flujo.",
|
|
5130
|
+
"editor-save-title": "Guardar progreso",
|
|
5131
|
+
"editor-save-description": "Mantén tus cambios seguros. Te recomendamos guardar tu pipeline con frecuencia.",
|
|
5132
|
+
"editor-run-title": "Probar pipeline",
|
|
5133
|
+
"editor-run-description": "Haz clic en Ejecutar para probar tu pipeline. Pipelab ejecutará cada bloque en tiempo real.",
|
|
5134
|
+
"editor-logs-title": "Registros de ejecución",
|
|
5135
|
+
"editor-logs-description": "El panel de registros muestra los pasos en tiempo real, ayudándote a supervisar y depurar.",
|
|
5136
|
+
"editor-close-title": "Cerrar editor",
|
|
5137
|
+
"editor-close-description": "¿Has terminado? Vuelve al panel de inicio para gestionar otros proyectos y pipelines."
|
|
5138
|
+
}
|
|
4567
5139
|
};
|
|
4568
5140
|
//#endregion
|
|
4569
5141
|
//#region ../../packages/shared/src/i18n/de_DE.json
|
|
4570
5142
|
var de_DE_default = {
|
|
4571
5143
|
settings: {
|
|
4572
|
-
"darkTheme": "
|
|
4573
|
-
"
|
|
5144
|
+
"darkTheme": "Dunkles Design",
|
|
5145
|
+
"autosave": "Automatisch speichern",
|
|
5146
|
+
"autosaveDescription": "Änderungen an Ihren Pipelines automatisch in Echtzeit speichern.",
|
|
5147
|
+
"language": "Sprache",
|
|
4574
5148
|
"languageOptions": {
|
|
4575
5149
|
"en-US": "English",
|
|
4576
5150
|
"fr-FR": "French",
|
|
@@ -4580,33 +5154,44 @@ var de_DE_default = {
|
|
|
4580
5154
|
"de-DE": "German"
|
|
4581
5155
|
},
|
|
4582
5156
|
"tabs": {
|
|
4583
|
-
"general": "
|
|
4584
|
-
"storage": "
|
|
4585
|
-
"integrations": "
|
|
4586
|
-
"advanced": "
|
|
4587
|
-
"billing": "
|
|
5157
|
+
"general": "Allgemein",
|
|
5158
|
+
"storage": "Speicher",
|
|
5159
|
+
"integrations": "Integrationen",
|
|
5160
|
+
"advanced": "Erweitert",
|
|
5161
|
+
"billing": "Abrechnung",
|
|
5162
|
+
"plugins": "Erweiterungen",
|
|
5163
|
+
"core-plugins": "Kern-Erweiterungen",
|
|
5164
|
+
"community-plugins": "Community-Erweiterungen",
|
|
5165
|
+
"versions": "Versionen"
|
|
4588
5166
|
},
|
|
4589
|
-
"
|
|
4590
|
-
"
|
|
4591
|
-
"
|
|
4592
|
-
"
|
|
4593
|
-
"
|
|
4594
|
-
"
|
|
4595
|
-
"
|
|
4596
|
-
"
|
|
4597
|
-
"
|
|
4598
|
-
"
|
|
4599
|
-
"
|
|
4600
|
-
"cache-
|
|
4601
|
-
"
|
|
4602
|
-
"
|
|
4603
|
-
"
|
|
5167
|
+
"pipeline-cache-folder": "Pipeline-Cache-Ordner:",
|
|
5168
|
+
"enter-or-browse-for-a-folder": "Ordner eingeben oder auswählen",
|
|
5169
|
+
"browse": "Durchsuchen",
|
|
5170
|
+
"manage-where-the-app-stores-temporary-and-cache-files": "Konfigurieren Sie lokale Ordner für temporäre Dateien und Anwendungs-Cache.",
|
|
5171
|
+
"clear-cache": "Cache leeren",
|
|
5172
|
+
"reset-to-default": "Auf Standard zurücksetzen",
|
|
5173
|
+
"manage-subscription": "Abonnement verwalten",
|
|
5174
|
+
"renewal-date": "Verlängerungsdatum",
|
|
5175
|
+
"start-date": "Startdatum:",
|
|
5176
|
+
"cache-cleared-successfully": "Cache erfolgreich geleert",
|
|
5177
|
+
"failed-to-clear-cache-error-message": "Cache konnte nicht geleert werden: {0}",
|
|
5178
|
+
"failed-to-reset-cache-folder-error-message": "Cache-Ordner konnte nicht zurückgesetzt werden: {0}",
|
|
5179
|
+
"select-cache-folder": "Cache-Ordner auswählen",
|
|
5180
|
+
"restart-dashboard-tour": "Dashboard-Anleitung zurücksetzen",
|
|
5181
|
+
"restart-editor-tour": "Editor-Anleitung zurücksetzen",
|
|
5182
|
+
"tour-reset-success": "Anleitungen wurden zurückgesetzt. Sie werden bei Ihrem nächsten Besuch wieder angezeigt.",
|
|
5183
|
+
"storage-pipelab": "Pipelab",
|
|
5184
|
+
"storage-other": "Andere Apps",
|
|
5185
|
+
"storage-free": "Freier Speicher",
|
|
5186
|
+
"disk-usage": "Festplattennutzung",
|
|
5187
|
+
"free": "Frei",
|
|
5188
|
+
"other": "Sonstige"
|
|
4604
5189
|
},
|
|
4605
5190
|
headers: {
|
|
4606
5191
|
"dashboard": "Dashboard",
|
|
4607
|
-
"
|
|
5192
|
+
"pipelines": "Pipelines",
|
|
4608
5193
|
"editor": "Editor",
|
|
4609
|
-
"billing": "
|
|
5194
|
+
"billing": "@:settings.tabs.billing",
|
|
4610
5195
|
"team": "Team"
|
|
4611
5196
|
},
|
|
4612
5197
|
base: {
|
|
@@ -4618,44 +5203,118 @@ var de_DE_default = {
|
|
|
4618
5203
|
"delete": "Löschen",
|
|
4619
5204
|
"logs": "Protokolle",
|
|
4620
5205
|
"ok": "OK",
|
|
4621
|
-
"add": "Hinzufügen"
|
|
5206
|
+
"add": "Hinzufügen",
|
|
5207
|
+
"search": "Suchen...",
|
|
5208
|
+
"success": "Erfolg",
|
|
5209
|
+
"error": "Fehler"
|
|
4622
5210
|
},
|
|
4623
5211
|
editor: {
|
|
4624
|
-
"invalid-file-content": "
|
|
4625
|
-
"welcome-back": "
|
|
4626
|
-
"please-log-in-to-run-a-
|
|
4627
|
-
"execution-done": "
|
|
4628
|
-
"your-project-has-been-executed-successfully": "
|
|
4629
|
-
"execution-failed": "
|
|
4630
|
-
"project-has-encountered-an-error": "
|
|
4631
|
-
"project-saved": "
|
|
4632
|
-
"your-project-has-be-saved-successfully": "
|
|
5212
|
+
"invalid-file-content": "Ungültiger Dateiinhalt",
|
|
5213
|
+
"welcome-back": "Willkommen zurück!",
|
|
5214
|
+
"please-log-in-to-run-a-pipeline": "Bitte melden Sie sich an, um diese Pipeline auszuführen.",
|
|
5215
|
+
"execution-done": "Ausführung erfolgreich abgeschlossen",
|
|
5216
|
+
"your-project-has-been-executed-successfully": "Ihre Pipeline wurde erfolgreich ausgeführt.",
|
|
5217
|
+
"execution-failed": "Ausführung fehlgeschlagen",
|
|
5218
|
+
"project-has-encountered-an-error": "Die Pipeline hat einen Fehler festgestellt:",
|
|
5219
|
+
"project-saved": "Pipeline gespeichert",
|
|
5220
|
+
"your-project-has-be-saved-successfully": "Ihre Pipeline wurde erfolgreich gespeichert.",
|
|
5221
|
+
"view-history": "Verlauf",
|
|
5222
|
+
"add-plugin": "Erweiterung hinzufügen",
|
|
5223
|
+
"display-advanced-nodes": "Erweiterte Blöcke anzeigen",
|
|
5224
|
+
"project-settings": "Pipeline-Einstellungen",
|
|
5225
|
+
"jit-loading-title": "Erweiterungen werden vorbereitet",
|
|
5226
|
+
"jit-loading-subtitle": "Bitte warten Sie, während Pipelab die für diese Pipeline erforderlichen Erweiterungen herunterlädt und konfigures.",
|
|
5227
|
+
"jit-loading-status": "Herunterladen und Einrichten von Erweiterungspaketen...",
|
|
5228
|
+
"validation-failed": "Validierung fehlgeschlagen",
|
|
5229
|
+
"validation-plugin-disabled-or-missing": "Der Block \"{nodeName}\" erfordert die Erweiterung \"{pluginId}\", die derzeit nicht installiert oder aktiviert ist.",
|
|
5230
|
+
"validation-missing-param": "Bitte konfigurieren Sie das erforderliche Feld \"{paramName}\" im Block \"{nodeName}\"."
|
|
4633
5231
|
},
|
|
4634
5232
|
home: {
|
|
4635
|
-
"invalid-preset": "
|
|
4636
|
-
"store-project-on-the-cloud": "
|
|
5233
|
+
"invalid-preset": "Ungültige Vorlage",
|
|
5234
|
+
"store-project-on-the-cloud": "Projekt in der Cloud speichern",
|
|
4637
5235
|
"cloud": "Cloud",
|
|
4638
|
-
"store-project-locally": "
|
|
4639
|
-
"local": "
|
|
4640
|
-
"invalid-number-of-paths-selected": "
|
|
4641
|
-
"pipelab-project": "Pipelab
|
|
4642
|
-
"choose-a-new-path": "
|
|
4643
|
-
"invalid-file-type": "
|
|
4644
|
-
"create-project": "
|
|
4645
|
-
"
|
|
4646
|
-
"project
|
|
4647
|
-
"
|
|
4648
|
-
"
|
|
4649
|
-
"
|
|
4650
|
-
"
|
|
5236
|
+
"store-project-locally": "Projekt lokal speichern",
|
|
5237
|
+
"local": "Lokal",
|
|
5238
|
+
"invalid-number-of-paths-selected": "Ungültige Anzahl ausgewählter Pfade",
|
|
5239
|
+
"pipelab-project": "Pipelab-Projekt",
|
|
5240
|
+
"choose-a-new-path": "Wählen Sie einen neuen Pfad",
|
|
5241
|
+
"invalid-file-type": "Ungültiger Dateityp",
|
|
5242
|
+
"create-project": "Projekt erstellen",
|
|
5243
|
+
"create-pipeline": "Pipeline erstellen",
|
|
5244
|
+
"duplicate-project": "Projekt duplizieren",
|
|
5245
|
+
"duplicate-pipeline": "Pipeline duplizieren",
|
|
5246
|
+
"project-name": "Projektname",
|
|
5247
|
+
"new-project": "Neues Projekt",
|
|
5248
|
+
"new-pipeline": "Neue Pipeline",
|
|
5249
|
+
"open": "Öffnen",
|
|
5250
|
+
"import": "Importieren",
|
|
5251
|
+
"pipeline-name": "Pipelinename",
|
|
5252
|
+
"your-projects": "Ihre Projekte",
|
|
5253
|
+
"no-projects-yet": "Noch keine Projekte",
|
|
5254
|
+
"no-pipelines-yet": "Noch keine Pipelines",
|
|
5255
|
+
"delete-project": "Projekt löschen",
|
|
5256
|
+
"confirm-delete-project": "Sind Sie sicher, dass Sie dieses Projekt löschen möchten? Dies kann nicht rückgängig gemacht werden.",
|
|
5257
|
+
"cannot-delete-project": "Projekt kann nicht gelöscht werden",
|
|
5258
|
+
"project-not-empty": "Dieses Projekt enthält Pipelines. Bitte löschen Sie diese zuerst.",
|
|
5259
|
+
"transfer": "Übertragen",
|
|
5260
|
+
"transfer-successful": "Übertragung erfolgreich",
|
|
5261
|
+
"pipeline-transferred": "Pipeline erfolgreich übertragen",
|
|
5262
|
+
"select-project": "Projekt auswählen",
|
|
5263
|
+
"build-history": "Ausführungsverlauf",
|
|
5264
|
+
"duplicate": "Duplizieren",
|
|
5265
|
+
"rename-project": "Projekt umbenennen",
|
|
5266
|
+
"new-project-name": "Neuer Projektname",
|
|
5267
|
+
"premium-feature": "Dies ist eine Premium-Funktion",
|
|
5268
|
+
"migrate-warning": "Dieses Dateiformat wird bald nicht mehr unterstützt. Bitte migrieren Sie es in den neuen lokalen Arbeitsbereich.",
|
|
5269
|
+
"simple-pipeline": "Einfache Pipeline",
|
|
5270
|
+
"advanced-pipeline": "Erweiterte Pipeline",
|
|
5271
|
+
"new-simple-project": "Neues einfaches Projekt",
|
|
5272
|
+
"new-advanced-project": "Neues erweitertes Projekt",
|
|
5273
|
+
"store-project-internally": "Projekt lokal speichern",
|
|
5274
|
+
"internal": "Intern",
|
|
5275
|
+
"confirm-migration-message": "Sind Sie sicher, dass Sie diese Pipeline in den lokalen Arbeitsbereich verschieben möchten? Pipelab wird diese Pipeline intern verwalten.",
|
|
5276
|
+
"migrate-pipeline": "Pipeline migrieren",
|
|
5277
|
+
"migration-success": "Pipeline erfolgreich migriert",
|
|
5278
|
+
"migrate-to-internal": "In Arbeitsbereich verschieben",
|
|
5279
|
+
"only-internal-supported-notice": "Pipelab verwaltet jetzt alle Pipelines im Arbeitsbereich der Anwendung. Externe Dateien sind veraltet, können aber weiterhin importiert werden.",
|
|
5280
|
+
"import-pipeline": "Pipeline importieren",
|
|
5281
|
+
"import-from-stable": "Aus Stable importieren...",
|
|
5282
|
+
"import-pipeline-file": "Pipeline-Datei importieren (.pipelab)...",
|
|
5283
|
+
"import-success": "Pipeline erfolgreich importiert",
|
|
5284
|
+
"failed-to-read-file": "Ausgewählte Datei konnte nicht gelesen werden",
|
|
5285
|
+
"export-pipeline": "Pipeline exportieren...",
|
|
5286
|
+
"export-success": "Pipeline erfolgreich exportiert",
|
|
5287
|
+
"export-failed": "Fehler beim Exportieren der Pipeline"
|
|
4651
5288
|
},
|
|
4652
|
-
|
|
5289
|
+
pipelines: { "title": "@:headers.pipelines" },
|
|
5290
|
+
tour: {
|
|
5291
|
+
"start-tour": "Anleitung starten",
|
|
5292
|
+
"projects-list-title": "Projekt-Navigator",
|
|
5293
|
+
"projects-list-description": "Diese Seitenleiste zeigt Ihre Projekte. Durch Auswahl eines Projekts werden dessen Pipelines im Hauptbereich angezeigt.",
|
|
5294
|
+
"add-project-title": "Neues Projekt erstellen",
|
|
5295
|
+
"add-project-description": "Projekte organisieren Ihre Pipelines nach Thema oder Kunde. Klicken Sie hier, um ein neues Projekt zu starten.",
|
|
5296
|
+
"new-pipeline-title": "Pipeline erstellen",
|
|
5297
|
+
"new-pipeline-description": "Bereit zur Automatisierung? Erstellen Sie eine neue Pipeline, um Aktionen und Logik hinzuzufügen.",
|
|
5298
|
+
"project-actions-title": "Projektverwaltung",
|
|
5299
|
+
"project-actions-description": "Verwenden Sie diese Schaltflächen, um das derzeit ausgewählte Projekt umzubenennen oder zu löschen.",
|
|
5300
|
+
"editor-canvas-title": "Der visuelle Editor",
|
|
5301
|
+
"editor-canvas-description": "Dies ist Ihr Arbeitsbereich. Ziehen Sie Aktionsblöcke hierher, um Ihren Automatisierungsfluss zu erstellen.",
|
|
5302
|
+
"editor-save-title": "Fortschritt speichern",
|
|
5303
|
+
"editor-save-description": "Schützen Sie Ihre Änderungen. Wir empfehlen, Ihre Pipeline häufig zu speichern.",
|
|
5304
|
+
"editor-run-title": "Pipeline testen",
|
|
5305
|
+
"editor-run-description": "Klicken Sie auf Ausführen, um Ihre Pipeline zu testen. Pipelab führt jeden Block in Echtzeit aus.",
|
|
5306
|
+
"editor-logs-title": "Ausführungsprotokolle",
|
|
5307
|
+
"editor-logs-description": "Das Protokollfenster zeigt die Ausführungsschritte in Echtzeit, um Sie bei der Überwachung und Fehlersuche zu unterstützen.",
|
|
5308
|
+
"editor-close-title": "Editor schließen",
|
|
5309
|
+
"editor-close-description": "Fertig für heute? Kehren Sie zum Dashboard zurück, um andere Projekte und Pipelines zu verwalten."
|
|
5310
|
+
}
|
|
4653
5311
|
};
|
|
4654
5312
|
//#endregion
|
|
4655
5313
|
//#region ../../packages/shared/src/model.ts
|
|
4656
5314
|
const OriginValidator = object({
|
|
4657
5315
|
pluginId: string(),
|
|
4658
|
-
nodeId: string()
|
|
5316
|
+
nodeId: string(),
|
|
5317
|
+
version: optional(pipe(string(), description("Pinned version of the plugin for this block. Falls back to \"latest\" when absent.")))
|
|
4659
5318
|
});
|
|
4660
5319
|
const BlockActionValidatorV1 = object({
|
|
4661
5320
|
type: literal("action"),
|
|
@@ -4668,7 +5327,7 @@ const EditorParamValidatorV3 = union([literal("simple"), literal("editor")]);
|
|
|
4668
5327
|
const BlockActionValidatorV3 = object({
|
|
4669
5328
|
type: literal("action"),
|
|
4670
5329
|
uid: string(),
|
|
4671
|
-
name: pipe(
|
|
5330
|
+
name: optional(pipe(string(), description("A custom name provided by the user"))),
|
|
4672
5331
|
disabled: optional(boolean()),
|
|
4673
5332
|
params: record(string(), object({
|
|
4674
5333
|
editor: EditorParamValidatorV3,
|
|
@@ -4676,21 +5335,6 @@ const BlockActionValidatorV3 = object({
|
|
|
4676
5335
|
})),
|
|
4677
5336
|
origin: OriginValidator
|
|
4678
5337
|
});
|
|
4679
|
-
object({
|
|
4680
|
-
type: literal("condition"),
|
|
4681
|
-
uid: string(),
|
|
4682
|
-
origin: OriginValidator,
|
|
4683
|
-
params: record(string(), any()),
|
|
4684
|
-
branchTrue: lazy(() => array(BlockValidator)),
|
|
4685
|
-
branchFalse: lazy(() => array(BlockValidator))
|
|
4686
|
-
});
|
|
4687
|
-
object({
|
|
4688
|
-
type: literal("loop"),
|
|
4689
|
-
uid: string(),
|
|
4690
|
-
origin: OriginValidator,
|
|
4691
|
-
params: record(string(), any()),
|
|
4692
|
-
children: lazy(() => array(BlockValidator))
|
|
4693
|
-
});
|
|
4694
5338
|
const BlockEventValidator = object({
|
|
4695
5339
|
type: literal("event"),
|
|
4696
5340
|
uid: string(),
|
|
@@ -4706,7 +5350,6 @@ object({
|
|
|
4706
5350
|
const BlockValidatorV1 = variant("type", [BlockActionValidatorV1, BlockEventValidator]);
|
|
4707
5351
|
const BlockValidatorV2 = variant("type", [BlockActionValidatorV1]);
|
|
4708
5352
|
const BlockValidatorV3 = variant("type", [BlockActionValidatorV3]);
|
|
4709
|
-
const BlockValidator = BlockValidatorV3;
|
|
4710
5353
|
const CanvasValidatorV1 = object({ blocks: array(BlockValidatorV1) });
|
|
4711
5354
|
const CanvasValidatorV2 = object({
|
|
4712
5355
|
blocks: array(BlockValidatorV2),
|
|
@@ -4738,19 +5381,21 @@ const SavedFileValidatorV3 = object({
|
|
|
4738
5381
|
canvas: CanvasValidatorV3,
|
|
4739
5382
|
variables: array(VariableValidatorV1)
|
|
4740
5383
|
});
|
|
4741
|
-
const
|
|
5384
|
+
const SavedFileDefaultValidatorV4 = object({
|
|
4742
5385
|
version: literal("4.0.0"),
|
|
4743
5386
|
type: literal("default"),
|
|
4744
5387
|
name: string(),
|
|
4745
5388
|
description: string(),
|
|
5389
|
+
plugins: optional(record(string(), string())),
|
|
4746
5390
|
canvas: CanvasValidatorV3,
|
|
4747
5391
|
variables: array(VariableValidatorV1)
|
|
4748
5392
|
});
|
|
4749
|
-
const
|
|
5393
|
+
const SavedFileSimpleValidatorV4 = object({
|
|
4750
5394
|
version: literal("4.0.0"),
|
|
4751
5395
|
type: literal("simple"),
|
|
4752
5396
|
name: string(),
|
|
4753
5397
|
description: string(),
|
|
5398
|
+
plugins: optional(record(string(), string())),
|
|
4754
5399
|
source: object({
|
|
4755
5400
|
type: union([
|
|
4756
5401
|
literal("c3-html"),
|
|
@@ -4776,8 +5421,47 @@ const SavedFileSimpleValidator = object({
|
|
|
4776
5421
|
})
|
|
4777
5422
|
})
|
|
4778
5423
|
});
|
|
4779
|
-
const
|
|
4780
|
-
|
|
5424
|
+
const SavedFileDefaultValidatorV5 = object({
|
|
5425
|
+
version: literal("5.0.0"),
|
|
5426
|
+
name: string(),
|
|
5427
|
+
description: string(),
|
|
5428
|
+
canvas: CanvasValidatorV3,
|
|
5429
|
+
variables: array(VariableValidatorV1)
|
|
5430
|
+
});
|
|
5431
|
+
const SavedFileSimpleValidatorV5 = object({
|
|
5432
|
+
version: literal("5.0.0"),
|
|
5433
|
+
type: literal("simple"),
|
|
5434
|
+
name: string(),
|
|
5435
|
+
description: string(),
|
|
5436
|
+
plugins: record(string(), string()),
|
|
5437
|
+
source: object({
|
|
5438
|
+
type: union([
|
|
5439
|
+
literal("c3-html"),
|
|
5440
|
+
literal("c3-nwjs"),
|
|
5441
|
+
literal("godot"),
|
|
5442
|
+
literal("html")
|
|
5443
|
+
]),
|
|
5444
|
+
path: string()
|
|
5445
|
+
}),
|
|
5446
|
+
packaging: object({ enabled: boolean() }),
|
|
5447
|
+
publishing: object({
|
|
5448
|
+
steam: object({
|
|
5449
|
+
enabled: boolean(),
|
|
5450
|
+
appId: optional(string())
|
|
5451
|
+
}),
|
|
5452
|
+
itch: object({
|
|
5453
|
+
enabled: boolean(),
|
|
5454
|
+
project: optional(string())
|
|
5455
|
+
}),
|
|
5456
|
+
poki: object({
|
|
5457
|
+
enabled: boolean(),
|
|
5458
|
+
gameId: optional(string())
|
|
5459
|
+
})
|
|
5460
|
+
})
|
|
5461
|
+
});
|
|
5462
|
+
const SavedFileValidatorV4 = union([SavedFileDefaultValidatorV4, SavedFileSimpleValidatorV4]);
|
|
5463
|
+
const SavedFileValidatorV5 = SavedFileDefaultValidatorV5;
|
|
5464
|
+
const SavedFileValidator = SavedFileValidatorV5;
|
|
4781
5465
|
//#endregion
|
|
4782
5466
|
//#region ../../node_modules/vue/node_modules/@vue/shared/dist/shared.cjs.prod.js
|
|
4783
5467
|
/**
|
|
@@ -46922,7 +47606,13 @@ const plugins = (0, vue_exports.shallowRef)([]);
|
|
|
46922
47606
|
const usePlugins = () => {
|
|
46923
47607
|
const load = () => {};
|
|
46924
47608
|
const registerPlugins = (newPlugins) => {
|
|
46925
|
-
plugins.value
|
|
47609
|
+
const current = [...plugins.value];
|
|
47610
|
+
for (const np of newPlugins) {
|
|
47611
|
+
const idx = current.findIndex((p) => p.id === np.id);
|
|
47612
|
+
if (idx !== -1) current[idx] = np;
|
|
47613
|
+
else current.push(np);
|
|
47614
|
+
}
|
|
47615
|
+
plugins.value = current;
|
|
46926
47616
|
};
|
|
46927
47617
|
return {
|
|
46928
47618
|
load,
|
|
@@ -47029,18 +47719,6 @@ const createExpression = (expression) => {
|
|
|
47029
47719
|
type: "expression"
|
|
47030
47720
|
};
|
|
47031
47721
|
};
|
|
47032
|
-
const createCondition = (condition) => {
|
|
47033
|
-
return {
|
|
47034
|
-
...condition,
|
|
47035
|
-
type: "condition"
|
|
47036
|
-
};
|
|
47037
|
-
};
|
|
47038
|
-
const createLoop = (loop) => {
|
|
47039
|
-
return {
|
|
47040
|
-
...loop,
|
|
47041
|
-
type: "loop"
|
|
47042
|
-
};
|
|
47043
|
-
};
|
|
47044
47722
|
const createEvent = (event) => {
|
|
47045
47723
|
return {
|
|
47046
47724
|
...event,
|
|
@@ -47048,38 +47726,6 @@ const createEvent = (event) => {
|
|
|
47048
47726
|
};
|
|
47049
47727
|
};
|
|
47050
47728
|
//#endregion
|
|
47051
|
-
//#region ../../packages/shared/src/save-location.ts
|
|
47052
|
-
const SaveLocationInternalValidator = object({
|
|
47053
|
-
id: string(),
|
|
47054
|
-
project: string(),
|
|
47055
|
-
lastModified: string(),
|
|
47056
|
-
type: literal("internal"),
|
|
47057
|
-
configName: string()
|
|
47058
|
-
});
|
|
47059
|
-
/** @deprecated External pipeline files are deprecated and will be removed in future versions. */
|
|
47060
|
-
const SaveLocationExternalValidator = object({
|
|
47061
|
-
id: string(),
|
|
47062
|
-
project: string(),
|
|
47063
|
-
path: string(),
|
|
47064
|
-
lastModified: string(),
|
|
47065
|
-
type: literal("external"),
|
|
47066
|
-
summary: object({
|
|
47067
|
-
plugins: array(string()),
|
|
47068
|
-
name: string(),
|
|
47069
|
-
description: string()
|
|
47070
|
-
})
|
|
47071
|
-
});
|
|
47072
|
-
const SaveLocationPipelabCloudValidator = object({
|
|
47073
|
-
id: string(),
|
|
47074
|
-
project: string(),
|
|
47075
|
-
type: literal("pipelab-cloud")
|
|
47076
|
-
});
|
|
47077
|
-
const SaveLocationValidator = union([
|
|
47078
|
-
SaveLocationExternalValidator,
|
|
47079
|
-
SaveLocationInternalValidator,
|
|
47080
|
-
SaveLocationPipelabCloudValidator
|
|
47081
|
-
]);
|
|
47082
|
-
//#endregion
|
|
47083
47729
|
//#region ../../packages/shared/src/subscription-errors.ts
|
|
47084
47730
|
var SubscriptionRequiredError = class extends Error {
|
|
47085
47731
|
code = "SUBSCRIPTION_REQUIRED";
|
|
@@ -64204,6 +64850,24 @@ const supabase = (options) => {
|
|
|
64204
64850
|
//#endregion
|
|
64205
64851
|
//#region ../../packages/shared/src/utils.ts
|
|
64206
64852
|
const foo = "bar";
|
|
64853
|
+
const transformUrl = (url) => {
|
|
64854
|
+
if (url && typeof url === "string") {
|
|
64855
|
+
const getHost = () => {
|
|
64856
|
+
if (typeof window !== "undefined") if (window.location.port === "5173") return `http://${window.location.hostname}:33753`;
|
|
64857
|
+
else return `${window.location.protocol}//${window.location.host}`;
|
|
64858
|
+
return "http://localhost:33753";
|
|
64859
|
+
};
|
|
64860
|
+
if (url.startsWith("file://")) {
|
|
64861
|
+
const filePath = url.substring(7);
|
|
64862
|
+
return `${getHost()}/media-file/${encodeURIComponent(filePath)}`;
|
|
64863
|
+
}
|
|
64864
|
+
if (url.startsWith("media://")) {
|
|
64865
|
+
const filePath = url.replace(/^media:\/\/+/, "/");
|
|
64866
|
+
return `${getHost()}/media-file/${encodeURIComponent(filePath)}`;
|
|
64867
|
+
}
|
|
64868
|
+
}
|
|
64869
|
+
return url || "";
|
|
64870
|
+
};
|
|
64207
64871
|
//#endregion
|
|
64208
64872
|
//#region ../../packages/shared/src/validation.ts
|
|
64209
64873
|
const isRequired = (param) => {
|
|
@@ -64247,34 +64911,6 @@ const isWebSocketResponseMessage = (message) => {
|
|
|
64247
64911
|
const isWebSocketErrorMessage = (message) => {
|
|
64248
64912
|
return message && message.type === "error" && message.requestId && message.error;
|
|
64249
64913
|
};
|
|
64250
|
-
object({
|
|
64251
|
-
version: literal("1.0.0"),
|
|
64252
|
-
data: optional(record(string(), SaveLocationValidator), {})
|
|
64253
|
-
});
|
|
64254
|
-
const FileRepoProjectValidatorV2$1 = object({
|
|
64255
|
-
id: string(),
|
|
64256
|
-
name: string(),
|
|
64257
|
-
description: string()
|
|
64258
|
-
});
|
|
64259
|
-
object({
|
|
64260
|
-
version: literal("2.0.0"),
|
|
64261
|
-
projects: array(FileRepoProjectValidatorV2$1),
|
|
64262
|
-
pipelines: optional(array(SaveLocationValidator), [])
|
|
64263
|
-
});
|
|
64264
|
-
object({
|
|
64265
|
-
version: literal("1.0.0"),
|
|
64266
|
-
data: optional(record(string(), SaveLocationValidator), {})
|
|
64267
|
-
});
|
|
64268
|
-
const FileRepoProjectValidatorV2 = object({
|
|
64269
|
-
id: string(),
|
|
64270
|
-
name: string(),
|
|
64271
|
-
description: string()
|
|
64272
|
-
});
|
|
64273
|
-
object({
|
|
64274
|
-
version: literal("2.0.0"),
|
|
64275
|
-
projects: array(FileRepoProjectValidatorV2),
|
|
64276
|
-
pipelines: optional(array(SaveLocationValidator), [])
|
|
64277
|
-
});
|
|
64278
64914
|
//#endregion
|
|
64279
64915
|
//#region ../../packages/shared/src/index.ts
|
|
64280
64916
|
const appSettingsMigrator = appSettingsMigrator$1;
|
|
@@ -64283,11 +64919,12 @@ const fileRepoMigrations = fileRepoMigrations$1;
|
|
|
64283
64919
|
const defaultFileRepo = defaultFileRepo$1;
|
|
64284
64920
|
const savedFileMigrator = savedFileMigrator$1;
|
|
64285
64921
|
const configRegistry = configRegistry$1;
|
|
64922
|
+
const normalizePipelineConfig = normalizePipelineConfig$1;
|
|
64923
|
+
const connectionsMigrator = connectionsMigrator$1;
|
|
64924
|
+
const defaultConnections = defaultConnections$1;
|
|
64286
64925
|
//#endregion
|
|
64287
64926
|
//#region src/pipelab.ts
|
|
64288
64927
|
const createActionRunner = (runner) => runner;
|
|
64289
|
-
const createConditionRunner = (runner) => runner;
|
|
64290
|
-
const createLoopRunner = (runner) => runner;
|
|
64291
64928
|
const createExpressionRunner = (runner) => runner;
|
|
64292
64929
|
const createEventRunner = (runner) => runner;
|
|
64293
64930
|
const sleep = (duration) => {
|
|
@@ -64310,23 +64947,6 @@ const fileExists = async (path) => {
|
|
|
64310
64947
|
}
|
|
64311
64948
|
};
|
|
64312
64949
|
//#endregion
|
|
64313
|
-
//#region src/fs-utils.ts
|
|
64314
|
-
const ensure = async (filesPath, defaultContent = "{}") => {
|
|
64315
|
-
await mkdir(dirname(filesPath), { recursive: true });
|
|
64316
|
-
try {
|
|
64317
|
-
await access(filesPath);
|
|
64318
|
-
} catch {
|
|
64319
|
-
await writeFile(filesPath, defaultContent);
|
|
64320
|
-
}
|
|
64321
|
-
};
|
|
64322
|
-
const generateTempFolder = async (base) => {
|
|
64323
|
-
const targetBase = base || tmpdir();
|
|
64324
|
-
await mkdir(targetBase, { recursive: true });
|
|
64325
|
-
const realPath = await realpath(targetBase);
|
|
64326
|
-
console.log("join", join(realPath, "pipelab-"));
|
|
64327
|
-
return await mkdtemp(join(realPath, "pipelab-"));
|
|
64328
|
-
};
|
|
64329
|
-
//#endregion
|
|
64330
64950
|
//#region src/archive-utils.ts
|
|
64331
64951
|
/**
|
|
64332
64952
|
* Extracts a .tar.gz archive.
|
|
@@ -64440,6 +65060,6 @@ const detectRuntime = async (appFolder) => {
|
|
|
64440
65060
|
return detectedRuntime;
|
|
64441
65061
|
};
|
|
64442
65062
|
//#endregion
|
|
64443
|
-
export { AppSettingsValidator, AppSettingsValidatorV1, AppSettingsValidatorV2, AppSettingsValidatorV3, AppSettingsValidatorV4, AppSettingsValidatorV5, AppSettingsValidatorV6, AppSettingsValidatorV7, BenefitNotFoundError, EditorParamValidatorV3, ExternalCommandError, OriginValidator, PipelabContext, src_default as RELEASE_SYNC, SaveLocationExternalValidator, SaveLocationInternalValidator, SaveLocationPipelabCloudValidator, SaveLocationValidator,
|
|
65063
|
+
export { AppSettingsValidator, AppSettingsValidatorV1, AppSettingsValidatorV2, AppSettingsValidatorV3, AppSettingsValidatorV4, AppSettingsValidatorV5, AppSettingsValidatorV6, AppSettingsValidatorV7, BenefitNotFoundError, ConnectionValidator, ConnectionsValidator, ConnectionsValidatorV1, EditorParamValidatorV3, ExternalCommandError, FileRepoProjectValidatorV2, FileRepoValidator, FileRepoValidatorV1, FileRepoValidatorV2, FileRepoValidatorV3, OriginValidator, PipelabContext, src_default as RELEASE_SYNC, SaveLocationExternalValidator, SaveLocationInternalValidator, SaveLocationPipelabCloudValidator, SaveLocationValidator, SavedFileDefaultValidatorV4, SavedFileDefaultValidatorV5, SavedFileSimpleValidatorV4, SavedFileSimpleValidatorV5, SavedFileValidator, SavedFileValidatorV1, SavedFileValidatorV2, SavedFileValidatorV3, SavedFileValidatorV4, SavedFileValidatorV5, ShellChannels, SubscriptionExpiredError, SubscriptionRequiredError, UnauthorizedError, VariableValidatorV1, WebSocketConnectionError, WebSocketError, WebSocketTimeoutError, appSettingsMigrator, configRegistry, connectionsMigrator, createAction, createActionRunner, createArray, createBooleanParam, createColorPicker, createDefinition, createEvent, createEventRunner, createExpression, createExpressionRunner, createNetlifySiteParam, createNodeDefinition, createNumberParam, createPasswordParam, createPathParam, createPlugin, createQuickJs, createQuickJsFromVariant, createRawParam, createStringParam, createSubscriptionError, createVersionSchema, de_DE_default as de_DE, defaultAppSettings, defaultConnections, defaultFileRepo, detectRuntime, downloadFile, en_US_default as en_US, ensure, es_ES_default as es_ES, extractTarGz, extractZip, fetchPackage, fetchPipelabAsset, fetchPipelabCli, fetchPipelabPlugin, fileExists, fileRepoMigrations, fmt, foo, fr_FR_default as fr_FR, getSubscriptionErrorMessage, isRenderer, isRequired, isSubscriptionError, isSupabaseAvailable, isWebSocketErrorMessage, isWebSocketRequestMessage, isWebSocketResponseMessage, makeResolvedParams, newVariant, normalizePipelineConfig, processGraph, pt_BR_default as pt_BR, runPnpm, runWithLiveLogs, savedFileMigrator, schema, sleep, supabase, transformUrl, useLogger, usePlugins, variableToFormattedVariable, zh_CN_default as zh_CN, zipFolder };
|
|
64444
65064
|
|
|
64445
65065
|
//# sourceMappingURL=index.mjs.map
|