Skip to content

Commit

Permalink
Merge pull request #1922 from ThatOneCalculator/verified
Browse files Browse the repository at this point in the history
Add verified for Firefish field
  • Loading branch information
h3poteto authored Sep 22, 2023
2 parents 950ff62 + c402e23 commit 23e2241
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 1 deletion.
3 changes: 2 additions & 1 deletion megalodon/src/entities/field.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ namespace Entity {
export type Field = {
name: string
value: string
verified_at: string | null
verified_at?: string | null
verified?: boolean | false
}
}
1 change: 1 addition & 0 deletions megalodon/src/firefish/api_client.ts
Original file line number Diff line number Diff line change
Expand Up @@ -459,6 +459,7 @@ namespace FirefishAPI {
return {
name: f.name,
value: f.value,
verified: f.verified,
verified_at: null
}
}
Expand Down
1 change: 1 addition & 0 deletions megalodon/src/firefish/entities/field.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,6 @@ namespace FirefishEntity {
export type Field = {
name: string
value: string
verified?: boolean
}
}

0 comments on commit 23e2241

Please sign in to comment.