diff --git a/app/api/ext/projects/[projectCode]/episodes/route.ts b/app/api/ext/projects/[projectCode]/episodes/route.ts index 9ae4afd..f7b7592 100644 --- a/app/api/ext/projects/[projectCode]/episodes/route.ts +++ b/app/api/ext/projects/[projectCode]/episodes/route.ts @@ -55,7 +55,9 @@ export async function GET( episode: true, sequence: true, status: true, - exrOutput: true, + exrOutput: true, + seqTimecodeStart: true, + seqTimecodeEnd: true, sourceClip: true, timecodeStart: true, timecodeEnd: true, diff --git a/app/api/ext/projects/[projectCode]/shots/route.ts b/app/api/ext/projects/[projectCode]/shots/route.ts index 68a6bec..d790dba 100644 --- a/app/api/ext/projects/[projectCode]/shots/route.ts +++ b/app/api/ext/projects/[projectCode]/shots/route.ts @@ -84,7 +84,9 @@ export async function GET( timecodeStart: true, timecodeEnd: true, clipDuration: true, - exrOutput: true, + exrOutput: true, + seqTimecodeStart: true, + seqTimecodeEnd: true, thumbnailUrl: true, artist: { select: { id: true, name: true, email: true }, diff --git a/app/api/ext/shots/[shotId]/route.ts b/app/api/ext/shots/[shotId]/route.ts index d40a455..bef3d2b 100644 --- a/app/api/ext/shots/[shotId]/route.ts +++ b/app/api/ext/shots/[shotId]/route.ts @@ -54,7 +54,9 @@ export async function GET( timecodeStart: true, timecodeEnd: true, clipDuration: true, - exrOutput: true, + exrOutput: true, + seqTimecodeStart: true, + seqTimecodeEnd: true, createdAt: true, updatedAt: true, project: { diff --git a/app/api/ext/shots/lookup/route.ts b/app/api/ext/shots/lookup/route.ts index 5e8ff0a..d994a45 100644 --- a/app/api/ext/shots/lookup/route.ts +++ b/app/api/ext/shots/lookup/route.ts @@ -62,7 +62,9 @@ export async function GET(req: NextRequest) { timecodeStart: true, timecodeEnd: true, clipDuration: true, - exrOutput: true, + exrOutput: true, + seqTimecodeStart: true, + seqTimecodeEnd: true, thumbnailUrl: true, createdAt: true, updatedAt: true,