Skip to content

Commit

Permalink
feat: add new governance notification types (#292)
Browse files Browse the repository at this point in the history
* feat: add new governance notification types

* chore: update api report
  • Loading branch information
andyesp authored Aug 8, 2024
1 parent ef293ea commit e92b54b
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 0 deletions.
4 changes: 4 additions & 0 deletions report/schemas.api.md
Original file line number Diff line number Diff line change
Expand Up @@ -1850,8 +1850,12 @@ export enum NotificationType {
// (undocumented)
GOVERNANCE_TENDER_PASSED = "governance_tender_passed",
// (undocumented)
GOVERNANCE_VOTED_ON_BEHALF = "governance_voted_on_behalf",
// (undocumented)
GOVERNANCE_VOTING_ENDED_VOTER = "governance_voting_ended_voter",
// (undocumented)
GOVERNANCE_WHALE_VOTE = "governance_whale_vote",
// (undocumented)
ITEM_SOLD = "item_sold",
// (undocumented)
LAND_RENTAL_ENDED = "rental_ended",
Expand Down
2 changes: 2 additions & 0 deletions src/platform/notifications/notifications.ts
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,8 @@ export enum NotificationType {
GOVERNANCE_VOTING_ENDED_VOTER = 'governance_voting_ended_voter',
GOVERNANCE_PITCH_PASSED = 'governance_pitch_passed',
GOVERNANCE_TENDER_PASSED = 'governance_tender_passed',
GOVERNANCE_WHALE_VOTE = 'governance_whale_vote',
GOVERNANCE_VOTED_ON_BEHALF = 'governance_voted_on_behalf',
ITEM_SOLD = 'item_sold',
LAND_RENTAL_ENDED = 'rental_ended',
LAND_RENTED = 'rental_started',
Expand Down

0 comments on commit e92b54b

Please sign in to comment.