@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/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,21 @@
|
|
|
1
1
|
# @pipelab/shared
|
|
2
2
|
|
|
3
|
+
## 2.0.1-beta.23
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- xwc
|
|
8
|
+
- Updated dependencies
|
|
9
|
+
- @pipelab/migration@1.0.1-beta.22
|
|
10
|
+
|
|
11
|
+
## 2.0.1-beta.22
|
|
12
|
+
|
|
13
|
+
### Patch Changes
|
|
14
|
+
|
|
15
|
+
- sdsd
|
|
16
|
+
- Updated dependencies
|
|
17
|
+
- @pipelab/migration@1.0.1-beta.21
|
|
18
|
+
|
|
3
19
|
## 2.0.1-beta.21
|
|
4
20
|
|
|
5
21
|
### Patch Changes
|
package/dist/index.d.mts
CHANGED
|
@@ -1022,13 +1022,17 @@ interface IBuildHistoryStorage {
|
|
|
1022
1022
|
oldestEntry?: number;
|
|
1023
1023
|
newestEntry?: number;
|
|
1024
1024
|
numberOfPipelines: number;
|
|
1025
|
-
cachePath: string;
|
|
1026
1025
|
userDataPath: string;
|
|
1027
1026
|
retentionPolicy: {
|
|
1028
1027
|
enabled: boolean;
|
|
1029
1028
|
maxEntries: number;
|
|
1030
1029
|
maxAge: number;
|
|
1031
1030
|
};
|
|
1031
|
+
disk: {
|
|
1032
|
+
total: number;
|
|
1033
|
+
free: number;
|
|
1034
|
+
pipelab: number;
|
|
1035
|
+
};
|
|
1032
1036
|
}>;
|
|
1033
1037
|
}
|
|
1034
1038
|
interface RetentionPolicy {
|
|
@@ -1354,8 +1358,6 @@ declare const AppSettingsValidatorV6: valibot.ObjectSchema<{
|
|
|
1354
1358
|
declare const AppSettingsValidatorV7: valibot.ObjectSchema<{
|
|
1355
1359
|
readonly theme: valibot.UnionSchema<[valibot.LiteralSchema<"light", undefined>, valibot.LiteralSchema<"dark", undefined>], undefined>;
|
|
1356
1360
|
readonly version: valibot.LiteralSchema<"7.0.0", undefined>;
|
|
1357
|
-
readonly cacheFolder: valibot.StringSchema<undefined>;
|
|
1358
|
-
readonly clearTemporaryFoldersOnPipelineEnd: valibot.BooleanSchema<undefined>;
|
|
1359
1361
|
readonly locale: valibot.UnionSchema<[valibot.LiteralSchema<"en-US", undefined>, valibot.LiteralSchema<"fr-FR", undefined>, valibot.LiteralSchema<"pt-BR", undefined>, valibot.LiteralSchema<"zh-CN", undefined>, valibot.LiteralSchema<"es-ES", undefined>, valibot.LiteralSchema<"de-DE", undefined>], undefined>;
|
|
1360
1362
|
readonly tours: valibot.ObjectSchema<{
|
|
1361
1363
|
readonly dashboard: valibot.ObjectSchema<{
|
|
@@ -1392,8 +1394,6 @@ type AppConfig = AppConfigV7;
|
|
|
1392
1394
|
declare const AppSettingsValidator: valibot.ObjectSchema<{
|
|
1393
1395
|
readonly theme: valibot.UnionSchema<[valibot.LiteralSchema<"light", undefined>, valibot.LiteralSchema<"dark", undefined>], undefined>;
|
|
1394
1396
|
readonly version: valibot.LiteralSchema<"7.0.0", undefined>;
|
|
1395
|
-
readonly cacheFolder: valibot.StringSchema<undefined>;
|
|
1396
|
-
readonly clearTemporaryFoldersOnPipelineEnd: valibot.BooleanSchema<undefined>;
|
|
1397
1397
|
readonly locale: valibot.UnionSchema<[valibot.LiteralSchema<"en-US", undefined>, valibot.LiteralSchema<"fr-FR", undefined>, valibot.LiteralSchema<"pt-BR", undefined>, valibot.LiteralSchema<"zh-CN", undefined>, valibot.LiteralSchema<"es-ES", undefined>, valibot.LiteralSchema<"de-DE", undefined>], undefined>;
|
|
1398
1398
|
readonly tours: valibot.ObjectSchema<{
|
|
1399
1399
|
readonly dashboard: valibot.ObjectSchema<{
|
|
@@ -1535,8 +1535,6 @@ declare let settings$5: {
|
|
|
1535
1535
|
advanced: string;
|
|
1536
1536
|
billing: string;
|
|
1537
1537
|
};
|
|
1538
|
-
clearTempFolders: string;
|
|
1539
|
-
clearTempFoldersDescription: string;
|
|
1540
1538
|
"pipeline-cache-folder": string;
|
|
1541
1539
|
"enter-or-browse-for-a-folder": string;
|
|
1542
1540
|
browse: string;
|
|
@@ -1553,6 +1551,19 @@ declare let settings$5: {
|
|
|
1553
1551
|
"restart-dashboard-tour": string;
|
|
1554
1552
|
"restart-editor-tour": string;
|
|
1555
1553
|
"tour-reset-success": string;
|
|
1554
|
+
retentionPolicy: string;
|
|
1555
|
+
retentionPolicyDescription: string;
|
|
1556
|
+
retentionEnabled: string;
|
|
1557
|
+
retentionMaxEntries: string;
|
|
1558
|
+
retentionMaxEntriesDescription: string;
|
|
1559
|
+
retentionMaxAge: string;
|
|
1560
|
+
retentionMaxAgeDescription: string;
|
|
1561
|
+
"storage-pipelab": string;
|
|
1562
|
+
"storage-other": string;
|
|
1563
|
+
"storage-free": string;
|
|
1564
|
+
"disk-usage": string;
|
|
1565
|
+
free: string;
|
|
1566
|
+
other: string;
|
|
1556
1567
|
};
|
|
1557
1568
|
declare namespace headers$5 {
|
|
1558
1569
|
let dashboard: string;
|