alpha
Login
or
Join now
gwen.works
/
churros-notella
Star
0
Fork
0
Atom
Configure Feed
Issues
Pull Requests
Commits
Tags
Feed URL
Select the types of activity you want to include in your feed.
This repository has no description
Star
0
Fork
0
Atom
Configure Feed
Issues
Pull Requests
Commits
Tags
Feed URL
Select the types of activity you want to include in your feed.
Overview
Issues
Pulls
Pipelines
chore: update typescript types
author
Ewen Le Bihan
date
2 years ago
(Oct 30, 2024, 12:27 PM +0100)
commit
706da9bc
706da9bcd50aae7292e6344db7d4a12447af6b2e
parent
67681238
676812387e629254556d8bb35c7ae59b51c094a3
+8
1 changed file
Expand all
Collapse all
Unified
Split
types.ts
+8
types.ts
Reviewed
···
48
48
* Type of event that triggered the notification
49
49
*/
50
50
export enum Event {
51
51
+
BookingPaid = "booking_paid",
51
52
CommentReply = "comment_reply",
53
53
+
ContributionPaid = "contribution_paid",
54
54
+
Custom = "custom",
55
55
+
GodchildAccepted = "godchild_accepted",
56
56
+
GodchildRejected = "godchild_rejected",
52
57
GodchildRequest = "godchild_request",
58
58
+
LoginStuck = "login_stuck",
53
59
NewComment = "new_comment",
54
60
NewPost = "new_post",
55
61
NewTicket = "new_ticket",
62
62
+
PendingSignup = "pending_signup",
63
63
+
Test = "test",
56
64
}