@awsless/awsless 0.0.73 → 0.0.74
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/bin.js +1 -1
- package/package.json +1 -1
package/dist/bin.js
CHANGED
|
@@ -1334,7 +1334,7 @@ var LogSchema = z6.union([
|
|
|
1334
1334
|
z6.boolean(),
|
|
1335
1335
|
DurationSchema.refine(durationMin(Duration.days(1)), "Minimum log retention is 1 day")
|
|
1336
1336
|
]);
|
|
1337
|
-
var WarmSchema = z6.number().int().min(
|
|
1337
|
+
var WarmSchema = z6.number().int().min(0).max(10);
|
|
1338
1338
|
var FunctionSchema = z6.union([
|
|
1339
1339
|
LocalFileSchema,
|
|
1340
1340
|
z6.object({
|