Skip to content

Commit

Permalink
Updated profiles to include new export fields (#39)
Browse files Browse the repository at this point in the history
  • Loading branch information
orchetect committed May 2, 2024
1 parent 873e4ba commit 192d18a
Show file tree
Hide file tree
Showing 4 changed files with 40 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -59,9 +59,14 @@ extension AirtableExportProfile {
dict[.checked] = marker.checked
dict[.status] = marker.status
dict[.notes] = marker.notes
dict[.reel] = marker.reel
dict[.scene] = marker.scene
dict[.take] = marker.take
dict[.position] = marker.position
dict[.clipType] = marker.clipType
dict[.clipName] = marker.clipName
dict[.clipIn] = marker.clipIn
dict[.clipOut] = marker.clipOut
dict[.clipDuration] = marker.clipDuration
dict[.clipKeywords] = marker.clipKeywords.flat
dict[.videoRole] = marker.videoRole
Expand Down Expand Up @@ -90,9 +95,14 @@ extension AirtableExportProfile {
dict[.checked] = .string(marker.checked)
dict[.status] = .string(marker.status)
dict[.notes] = .string(marker.notes)
dict[.reel] = .string(marker.reel)
dict[.scene] = .string(marker.scene)
dict[.take] = .string(marker.take)
dict[.position] = .string(marker.position)
dict[.clipType] = .string(marker.clipType)
dict[.clipName] = .string(marker.clipName)
dict[.clipIn] = .string(marker.clipIn)
dict[.clipOut] = .string(marker.clipOut)
dict[.clipDuration] = .string(marker.clipDuration)
dict[.clipKeywords] = .array(marker.clipKeywords.array)
dict[.videoRole] = .string(marker.videoRole)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -59,9 +59,14 @@ extension CSVProfile {
dict[.checked] = marker.checked
dict[.status] = marker.status
dict[.notes] = marker.notes
dict[.reel] = marker.reel
dict[.scene] = marker.scene
dict[.take] = marker.take
dict[.position] = marker.position
dict[.clipType] = marker.clipType
dict[.clipName] = marker.clipName
dict[.clipIn] = marker.clipIn
dict[.clipOut] = marker.clipOut
dict[.clipDuration] = marker.clipDuration
dict[.clipKeywords] = marker.clipKeywords.flat
dict[.videoRole] = marker.videoRole
Expand Down Expand Up @@ -90,9 +95,14 @@ extension CSVProfile {
dict[.checked] = .string(marker.checked)
dict[.status] = .string(marker.status)
dict[.notes] = .string(marker.notes)
dict[.reel] = .string(marker.reel)
dict[.scene] = .string(marker.scene)
dict[.take] = .string(marker.take)
dict[.position] = .string(marker.position)
dict[.clipType] = .string(marker.clipType)
dict[.clipName] = .string(marker.clipName)
dict[.clipIn] = .string(marker.clipIn)
dict[.clipOut] = .string(marker.clipOut)
dict[.clipDuration] = .string(marker.clipDuration)
dict[.clipKeywords] = .array(marker.clipKeywords.array)
dict[.videoRole] = .string(marker.videoRole)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -59,9 +59,14 @@ extension NotionExportProfile {
dict[.checked] = marker.checked
dict[.status] = marker.status
dict[.notes] = marker.notes
dict[.reel] = marker.reel
dict[.scene] = marker.scene
dict[.take] = marker.take
dict[.position] = marker.position
dict[.clipType] = marker.clipType
dict[.clipName] = marker.clipName
dict[.clipIn] = marker.clipIn
dict[.clipOut] = marker.clipOut
dict[.clipDuration] = marker.clipDuration
dict[.clipKeywords] = marker.clipKeywords.flat
dict[.videoRole] = marker.videoRole
Expand Down Expand Up @@ -90,9 +95,14 @@ extension NotionExportProfile {
dict[.checked] = .string(marker.checked)
dict[.status] = .string(marker.status)
dict[.notes] = .string(marker.notes)
dict[.reel] = .string(marker.reel)
dict[.scene] = .string(marker.scene)
dict[.take] = .string(marker.take)
dict[.position] = .string(marker.position)
dict[.clipType] = .string(marker.clipType)
dict[.clipName] = .string(marker.clipName)
dict[.clipIn] = .string(marker.clipIn)
dict[.clipOut] = .string(marker.clipOut)
dict[.clipDuration] = .string(marker.clipDuration)
dict[.clipKeywords] = .array(marker.clipKeywords.array)
dict[.videoRole] = .string(marker.videoRole)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -60,9 +60,14 @@ extension TSVProfile {
dict[.checked] = marker.checked
dict[.status] = marker.status
dict[.notes] = marker.notes
dict[.reel] = marker.reel
dict[.scene] = marker.scene
dict[.take] = marker.take
dict[.position] = marker.position
dict[.clipType] = marker.clipType
dict[.clipName] = marker.clipName
dict[.clipIn] = marker.clipIn
dict[.clipOut] = marker.clipOut
dict[.clipDuration] = marker.clipDuration
dict[.clipKeywords] = marker.clipKeywords.flat
dict[.videoRole] = marker.videoRole
Expand Down Expand Up @@ -91,9 +96,14 @@ extension TSVProfile {
dict[.checked] = .string(marker.checked)
dict[.status] = .string(marker.status)
dict[.notes] = .string(marker.notes)
dict[.reel] = .string(marker.reel)
dict[.scene] = .string(marker.scene)
dict[.take] = .string(marker.take)
dict[.position] = .string(marker.position)
dict[.clipType] = .string(marker.clipType)
dict[.clipName] = .string(marker.clipName)
dict[.clipIn] = .string(marker.clipIn)
dict[.clipOut] = .string(marker.clipOut)
dict[.clipDuration] = .string(marker.clipDuration)
dict[.clipKeywords] = .array(marker.clipKeywords.array)
dict[.videoRole] = .string(marker.videoRole)
Expand Down

0 comments on commit 192d18a

Please sign in to comment.