-
Notifications
You must be signed in to change notification settings - Fork 118
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Move AppInterface definition * Lock events on apps load
- Loading branch information
Showing
13 changed files
with
157 additions
and
84 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
export enum AppInterface { | ||
// Messages | ||
IPreMessageSentPrevent = 'IPreMessageSentPrevent', | ||
IPreMessageSentExtend = 'IPreMessageSentExtend', | ||
IPreMessageSentModify = 'IPreMessageSentModify', | ||
IPostMessageSent = 'IPostMessageSent', | ||
IPreMessageDeletePrevent = 'IPreMessageDeletePrevent', | ||
IPostMessageDeleted = 'IPostMessageDeleted', | ||
IPreMessageUpdatedPrevent = 'IPreMessageUpdatedPrevent', | ||
IPreMessageUpdatedExtend = 'IPreMessageUpdatedExtend', | ||
IPreMessageUpdatedModify = 'IPreMessageUpdatedModify', | ||
IPostMessageUpdated = 'IPostMessageUpdated', | ||
// Rooms | ||
IPreRoomCreatePrevent = 'IPreRoomCreatePrevent', | ||
IPreRoomCreateExtend = 'IPreRoomCreateExtend', | ||
IPreRoomCreateModify = 'IPreRoomCreateModify', | ||
IPostRoomCreate = 'IPostRoomCreate', | ||
IPreRoomDeletePrevent = 'IPreRoomDeletePrevent', | ||
IPostRoomDeleted = 'IPostRoomDeleted', | ||
IPreRoomUserJoined = 'IPreRoomUserJoined', | ||
IPostRoomUserJoined = 'IPostRoomUserJoined', | ||
// External Components | ||
IPostExternalComponentOpened = 'IPostExternalComponentOpened', | ||
IPostExternalComponentClosed = 'IPostExternalComponentClosed', | ||
// Blocks | ||
IUIKitInteractionHandler = 'IUIKitInteractionHandler', | ||
// Livechat | ||
IPostLivechatRoomStarted = 'IPostLivechatRoomStarted', | ||
IPostLivechatRoomClosed = 'IPostLivechatRoomClosed', | ||
/** | ||
* @deprecated please use the AppMethod.EXECUTE_POST_LIVECHAT_ROOM_CLOSED method | ||
*/ | ||
ILivechatRoomClosedHandler = 'ILivechatRoomClosedHandler', | ||
IPostLivechatAgentAssigned = 'IPostLivechatAgentAssigned', | ||
IPostLivechatAgentUnassigned = 'IPostLivechatAgentUnassigned', | ||
} |
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
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.