@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.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 = 60, Max = 2_592_000 (30 days) */
186
- seconds: z.number().int().positive().min(60).max(2592e3)
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