@pipelab/shared 2.0.1-beta.20 → 2.0.1-beta.21
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 +8 -0
- package/dist/index.d.mts +22 -0
- package/dist/index.d.mts.map +1 -1
- package/dist/index.mjs +6 -1
- package/dist/index.mjs.map +1 -1
- package/package.json +3 -3
- package/.turbo/turbo-build.log +0 -41
- package/.turbo/turbo-lint.log +0 -136
package/CHANGELOG.md
CHANGED
package/dist/index.d.mts
CHANGED
|
@@ -1021,6 +1021,14 @@ interface IBuildHistoryStorage {
|
|
|
1021
1021
|
totalSize: number;
|
|
1022
1022
|
oldestEntry?: number;
|
|
1023
1023
|
newestEntry?: number;
|
|
1024
|
+
numberOfPipelines: number;
|
|
1025
|
+
cachePath: string;
|
|
1026
|
+
userDataPath: string;
|
|
1027
|
+
retentionPolicy: {
|
|
1028
|
+
enabled: boolean;
|
|
1029
|
+
maxEntries: number;
|
|
1030
|
+
maxAge: number;
|
|
1031
|
+
};
|
|
1024
1032
|
}>;
|
|
1025
1033
|
}
|
|
1026
1034
|
interface RetentionPolicy {
|
|
@@ -1365,6 +1373,13 @@ declare const AppSettingsValidatorV7: valibot.ObjectSchema<{
|
|
|
1365
1373
|
readonly name: valibot.StringSchema<undefined>;
|
|
1366
1374
|
readonly url: valibot.StringSchema<undefined>;
|
|
1367
1375
|
}, undefined>, undefined>;
|
|
1376
|
+
readonly buildHistory: valibot.ObjectSchema<{
|
|
1377
|
+
readonly retentionPolicy: valibot.ObjectSchema<{
|
|
1378
|
+
readonly enabled: valibot.BooleanSchema<undefined>;
|
|
1379
|
+
readonly maxEntries: valibot.NumberSchema<undefined>;
|
|
1380
|
+
readonly maxAge: valibot.NumberSchema<undefined>;
|
|
1381
|
+
}, undefined>;
|
|
1382
|
+
}, undefined>;
|
|
1368
1383
|
}, undefined>;
|
|
1369
1384
|
type AppConfigV1 = InferInput<typeof AppSettingsValidatorV1>;
|
|
1370
1385
|
type AppConfigV2 = InferInput<typeof AppSettingsValidatorV2>;
|
|
@@ -1396,6 +1411,13 @@ declare const AppSettingsValidator: valibot.ObjectSchema<{
|
|
|
1396
1411
|
readonly name: valibot.StringSchema<undefined>;
|
|
1397
1412
|
readonly url: valibot.StringSchema<undefined>;
|
|
1398
1413
|
}, undefined>, undefined>;
|
|
1414
|
+
readonly buildHistory: valibot.ObjectSchema<{
|
|
1415
|
+
readonly retentionPolicy: valibot.ObjectSchema<{
|
|
1416
|
+
readonly enabled: valibot.BooleanSchema<undefined>;
|
|
1417
|
+
readonly maxEntries: valibot.NumberSchema<undefined>;
|
|
1418
|
+
readonly maxAge: valibot.NumberSchema<undefined>;
|
|
1419
|
+
}, undefined>;
|
|
1420
|
+
}, undefined>;
|
|
1399
1421
|
}, undefined>;
|
|
1400
1422
|
//#endregion
|
|
1401
1423
|
//#region src/database.types.d.ts
|