@trigger.dev/core 2.3.15 → 2.3.17
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.d.mts +3 -3
- package/dist/index.d.ts +3 -3
- package/dist/index.js +2 -2
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +2 -2
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.mjs
CHANGED
|
@@ -182,8 +182,8 @@ var ScheduledPayloadSchema = z.object({
|
|
|
182
182
|
lastTimestamp: z.coerce.date().optional()
|
|
183
183
|
});
|
|
184
184
|
var IntervalOptionsSchema = z.object({
|
|
185
|
-
/** The number of seconds for the interval. Min =
|
|
186
|
-
seconds: z.number().int().positive().min(
|
|
185
|
+
/** The number of seconds for the interval. Min = 20, Max = 2_592_000 (30 days) */
|
|
186
|
+
seconds: z.number().int().positive().min(20).max(2592e3)
|
|
187
187
|
});
|
|
188
188
|
var CronOptionsSchema = z.object({
|
|
189
189
|
/** A CRON expression that defines the schedule. A useful tool when writing CRON
|