MCPcopy Index your code
hub / github.com/simstudioai/sim / getSchedulePayloadClaimedAt

Function getSchedulePayloadClaimedAt

apps/sim/app/api/schedules/execute/route.ts:236–240  ·  view source on GitHub ↗
(payload: ScheduleExecutionPayload | null)

Source from the content-addressed store, hash-verified

234}
235
236function getSchedulePayloadClaimedAt(payload: ScheduleExecutionPayload | null): Date | null {
237 if (!payload) return null
238 const claimedAt = new Date(payload.now)
239 return Number.isNaN(claimedAt.getTime()) ? null : claimedAt
240}
241
242async function restoreScheduleClaim(
243 scheduleId: string,

Callers 3

processScheduleItemFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected