@livetiles/reach-plugin-types 0.5.0-preview.331 → 0.5.0-preview.333
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/lib/index.d.ts +6 -2
- package/package.json +1 -1
package/lib/index.d.ts
CHANGED
|
@@ -6584,14 +6584,18 @@ declare module "apps/reach-app/src/app/admin/web-hooks/utils" {
|
|
|
6584
6584
|
CommentUpdated = "CommentUpdated",
|
|
6585
6585
|
CommentDeleted = "CommentDeleted",
|
|
6586
6586
|
LikeAdded = "LikeAdded",
|
|
6587
|
-
LikeRemoved = "LikeRemoved"
|
|
6587
|
+
LikeRemoved = "LikeRemoved",
|
|
6588
|
+
PostCreated = "PostCreated",
|
|
6589
|
+
PostUpdated = "PostUpdated",
|
|
6590
|
+
PostDeleted = "PostDeleted"
|
|
6588
6591
|
}
|
|
6589
6592
|
export enum WebHookCategory {
|
|
6590
6593
|
News = "News",
|
|
6591
6594
|
Events = "Events",
|
|
6592
6595
|
Comments = "Comments",
|
|
6593
6596
|
Likes = "Likes",
|
|
6594
|
-
UserSelfRegistration = "UserSelfRegistration"
|
|
6597
|
+
UserSelfRegistration = "UserSelfRegistration",
|
|
6598
|
+
Posts = "Posts"
|
|
6595
6599
|
}
|
|
6596
6600
|
}
|
|
6597
6601
|
declare module "apps/reach-app/src/app/admin/web-hooks/WebHookEditor" {
|