forked from TID-Lab/aggie
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #33 from TID-Lab/batch-mode
Batch mode
- Loading branch information
Showing
53 changed files
with
1,470 additions
and
883 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,23 +1,31 @@ | ||
export interface hasId { | ||
_id: string; | ||
} | ||
|
||
export const VERACITY_OPTIONS = [ | ||
"Unconfirmed", | ||
"Confirmed False", | ||
"Confirmed True", | ||
] as const; | ||
export type VeracityOptions = (typeof VERACITY_OPTIONS)[number]; | ||
|
||
export const ESCALATED_OPTIONS = ["true", "false"] as const; | ||
export type EscalatedOptions = (typeof ESCALATED_OPTIONS)[number]; | ||
|
||
export const CLOSED_OPTIONS = ["true", "false"] as const; | ||
export type ClosedOptions = (typeof CLOSED_OPTIONS)[number]; | ||
|
||
export const MEDIA_OPTIONS = [ | ||
"twitter", | ||
"tiktok", | ||
"instagram", | ||
"RSS", | ||
"elmo", | ||
"SMS GH", | ||
"youtube", | ||
"facebook", | ||
]; | ||
] as const; | ||
export type MediaOptions = (typeof MEDIA_OPTIONS)[number]; | ||
|
||
export const ESCALATED_OPTIONS = ["true", "false"] as const; | ||
export type EscalatedOptions = (typeof ESCALATED_OPTIONS)[number]; | ||
|
||
export const CLOSED_OPTIONS = ["true", "false"] as const; | ||
export type ClosedOptions = (typeof CLOSED_OPTIONS)[number]; | ||
|
||
export const IRRELEVANCE_OPTIONS = ["true", "maybe", "false"] as const; | ||
export type IrrelevanceOptions = (typeof IRRELEVANCE_OPTIONS)[number]; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.