@pipelab/shared 2.0.1-beta.21 → 2.0.1-beta.23
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/CHANGELOG.md +16 -0
- package/dist/index.d.mts +18 -7
- package/dist/index.d.mts.map +1 -1
- package/dist/index.mjs +14 -5
- package/dist/index.mjs.map +1 -1
- package/package.json +3 -3
- package/src/build-history.ts +5 -1
- package/src/config.schema.ts +0 -2
- package/src/i18n/en_US.json +14 -3
package/dist/index.mjs
CHANGED
|
@@ -365,8 +365,6 @@ const AppSettingsValidatorV6 = object({
|
|
|
365
365
|
const AppSettingsValidatorV7 = object({
|
|
366
366
|
theme: union([literal("light"), literal("dark")]),
|
|
367
367
|
version: literal("7.0.0"),
|
|
368
|
-
cacheFolder: string(),
|
|
369
|
-
clearTemporaryFoldersOnPipelineEnd: boolean(),
|
|
370
368
|
locale: union([
|
|
371
369
|
literal("en-US"),
|
|
372
370
|
literal("fr-FR"),
|
|
@@ -612,8 +610,6 @@ var en_US_default = {
|
|
|
612
610
|
"advanced": "Advanced",
|
|
613
611
|
"billing": "Billing"
|
|
614
612
|
},
|
|
615
|
-
"clearTempFolders": "Automatically clean up temporary files",
|
|
616
|
-
"clearTempFoldersDescription": "When enabled, all temporary files created during pipeline execution will be automatically deleted after the pipeline completes. This helps save disk space but you may need to copy artifacts yourself to preserve them.",
|
|
617
613
|
"pipeline-cache-folder": "Pipeline Cache Folder:",
|
|
618
614
|
"enter-or-browse-for-a-folder": "Enter or browse for a folder",
|
|
619
615
|
"browse": "Browse",
|
|
@@ -629,7 +625,20 @@ var en_US_default = {
|
|
|
629
625
|
"select-cache-folder": "Select Cache Folder",
|
|
630
626
|
"restart-dashboard-tour": "Restart Dashboard Tour",
|
|
631
627
|
"restart-editor-tour": "Restart Editor Tour",
|
|
632
|
-
"tour-reset-success": "Tour has been reset. It will start the next time you visit the page."
|
|
628
|
+
"tour-reset-success": "Tour has been reset. It will start the next time you visit the page.",
|
|
629
|
+
"retentionPolicy": "Retention Policy",
|
|
630
|
+
"retentionPolicyDescription": "Manage how long your build logs and history are kept.",
|
|
631
|
+
"retentionEnabled": "Enable Retention Policy",
|
|
632
|
+
"retentionMaxEntries": "Maximum Entries",
|
|
633
|
+
"retentionMaxEntriesDescription": "Keep up to this number of entries per pipeline.",
|
|
634
|
+
"retentionMaxAge": "Maximum Age (days)",
|
|
635
|
+
"retentionMaxAgeDescription": "Keep entries for up to this many days.",
|
|
636
|
+
"storage-pipelab": "Pipelab",
|
|
637
|
+
"storage-other": "Other Apps",
|
|
638
|
+
"storage-free": "Free Space",
|
|
639
|
+
"disk-usage": "Disk Usage",
|
|
640
|
+
"free": "Free",
|
|
641
|
+
"other": "Other"
|
|
633
642
|
},
|
|
634
643
|
headers: {
|
|
635
644
|
"dashboard": "Dashboard",
|