[WIP] Business

This commit is contained in:
Isaac
2024-02-27 16:20:37 +04:00
parent 729a260626
commit aa4ca00cb0
51 changed files with 2521 additions and 362 deletions

View File

@@ -1080,10 +1080,14 @@ public enum ChatHistoryListSource {
case customView(historyView: Signal<(MessageHistoryView, ViewUpdateType), NoError>)
}
public enum ChatQuickReplyShortcutType {
case generic
case greeting
case away
}
public enum ChatCustomContentsKind: Equatable {
case greetingMessageInput
case awayMessageInput
case quickReplyMessageInput(shortcut: String)
case quickReplyMessageInput(shortcut: String, shortcutType: ChatQuickReplyShortcutType)
}
public protocol ChatCustomContentsProtocol: AnyObject {