├── README.md └── SwiftUIChat ├── Podfile ├── Podfile.lock ├── Pods ├── Manifest.lock ├── Pods.xcodeproj │ ├── project.pbxproj │ └── xcuserdata │ │ └── cardoso.xcuserdatad │ │ └── xcschemes │ │ ├── Pods-SwiftUIChat.xcscheme │ │ ├── Starscream.xcscheme │ │ ├── StreamChat-StreamChat.xcscheme │ │ ├── StreamChat.xcscheme │ │ └── xcschememanagement.plist ├── Starscream │ ├── LICENSE │ ├── README.md │ └── Sources │ │ ├── Compression │ │ ├── Compression.swift │ │ └── WSCompression.swift │ │ ├── DataBytes │ │ └── Data+Extensions.swift │ │ ├── Engine │ │ ├── Engine.swift │ │ ├── NativeEngine.swift │ │ └── WSEngine.swift │ │ ├── Framer │ │ ├── FoundationHTTPHandler.swift │ │ ├── FoundationHTTPServerHandler.swift │ │ ├── FrameCollector.swift │ │ ├── Framer.swift │ │ ├── HTTPHandler.swift │ │ └── StringHTTPHandler.swift │ │ ├── Security │ │ ├── FoundationSecurity.swift │ │ └── Security.swift │ │ ├── Server │ │ ├── Server.swift │ │ └── WebSocketServer.swift │ │ ├── Starscream │ │ └── WebSocket.swift │ │ └── Transport │ │ ├── FoundationTransport.swift │ │ ├── TCPTransport.swift │ │ └── Transport.swift ├── StreamChat │ ├── LICENSE │ ├── README.md │ └── Sources │ │ └── StreamChat │ │ ├── APIClient │ │ ├── APIClient.swift │ │ ├── Endpoints │ │ │ ├── AttachmentEndpoints.swift │ │ │ ├── ChannelEndpoints.swift │ │ │ ├── DeviceEndpoints.swift │ │ │ ├── Endpoint.swift │ │ │ ├── GuestEndpoints.swift │ │ │ ├── MemberEndpoints.swift │ │ │ ├── MessageEndpoints.swift │ │ │ ├── ModerationEndpoints.swift │ │ │ ├── Payloads │ │ │ │ ├── AttachmentPayload.swift │ │ │ │ ├── ChannelCodingKeys.swift │ │ │ │ ├── ChannelEditDetailPayload.swift │ │ │ │ ├── ChannelListPayload.swift │ │ │ │ ├── ChannelMemberListPayload.swift │ │ │ │ ├── CurrentUserPayloads.swift │ │ │ │ ├── DevicePayloads.swift │ │ │ │ ├── FileUploadPayload.swift │ │ │ │ ├── FlagMessagePayload.swift │ │ │ │ ├── FlagUserPayload.swift │ │ │ │ ├── GuestUserTokenPayload.swift │ │ │ │ ├── MemberPayload.swift │ │ │ │ ├── MessagePayloads.swift │ │ │ │ ├── MessageReactionPayload.swift │ │ │ │ ├── MissingEventsPayload.swift │ │ │ │ ├── RawJSON.swift │ │ │ │ ├── UserListPayload.swift │ │ │ │ └── UserPayloads.swift │ │ │ ├── Requests │ │ │ │ ├── AttachmentActionRequestBody.swift │ │ │ │ ├── ChannelMemberBanRequestPayload.swift │ │ │ │ ├── GuestUserTokenRequestPayload.swift │ │ │ │ ├── MessageReactionRequestPayload.swift │ │ │ │ └── MissingEventsRequestBody.swift │ │ │ ├── SyncEndpoint.swift │ │ │ ├── UserEndpoints.swift │ │ │ └── WebSocketConnectEndpoint.swift │ │ ├── HTTPHeader.swift │ │ ├── RequestDecoder.swift │ │ └── RequestEncoder.swift │ │ ├── ChatClient.swift │ │ ├── Config │ │ ├── BaseURL.swift │ │ ├── ChatClientConfig.swift │ │ ├── Token.swift │ │ └── TokenProvider.swift │ │ ├── Controllers │ │ ├── ChannelController │ │ │ ├── ChannelController+Combine.swift │ │ │ ├── ChannelController+SwiftUI.swift │ │ │ └── ChannelController.swift │ │ ├── ChannelListController │ │ │ ├── ChannelListController+Combine.swift │ │ │ ├── ChannelListController+SwiftUI.swift │ │ │ └── ChannelListController.swift │ │ ├── ConnectionController │ │ │ ├── ConnectionController+Combine.swift │ │ │ ├── ConnectionController+SwiftUI.swift │ │ │ └── ConnectionController.swift │ │ ├── Controller.swift │ │ ├── CurrentUserController │ │ │ ├── CurrentUserController+Combine.swift │ │ │ ├── CurrentUserController+SwiftUI.swift │ │ │ └── CurrentUserController.swift │ │ ├── DataController.swift │ │ ├── EntityDatabaseObserver.swift │ │ ├── ListDatabaseObserver.swift │ │ ├── MemberController │ │ │ ├── MemberController+Combine.swift │ │ │ ├── MemberController+SwiftUI.swift │ │ │ └── MemberController.swift │ │ ├── MemberListController │ │ │ ├── MemberListController+Combine.swift │ │ │ ├── MemberListController+SwiftUI.swift │ │ │ └── MemberListController.swift │ │ ├── MessageController │ │ │ ├── MessageController+Combine.swift │ │ │ ├── MessageController+SwiftUI.swift │ │ │ └── MessageController.swift │ │ ├── SearchControllers │ │ │ └── UserSearchController.swift │ │ ├── UserController │ │ │ ├── UserController+Combine.swift │ │ │ ├── UserController+SwiftUI.swift │ │ │ └── UserController.swift │ │ └── UserListController │ │ │ ├── UserListController+Combine.swift │ │ │ ├── UserListController+SwiftUI.swift │ │ │ └── UserListController.swift │ │ ├── Database │ │ ├── DTOs │ │ │ ├── AttachmentDTO.swift │ │ │ ├── ChannelDTO.swift │ │ │ ├── ChannelListQueryDTO.swift │ │ │ ├── ChannelMemberListQueryDTO.swift │ │ │ ├── ChannelReadDTO.swift │ │ │ ├── CurrentUserDTO.swift │ │ │ ├── DeviceDTO.swift │ │ │ ├── EphemeralValuesContainer.swift │ │ │ ├── MemberModelDTO.swift │ │ │ ├── MessageDTO.swift │ │ │ ├── MessageReactionDTO.swift │ │ │ ├── TeamDTO.swift │ │ │ ├── UserDTO.swift │ │ │ └── UserListQueryDTO.swift │ │ ├── DataStore.swift │ │ ├── DatabaseContainer.swift │ │ ├── DatabaseSession.swift │ │ └── StreamChatModel.xcdatamodeld │ │ │ └── StreamChatModel.xcdatamodel │ │ │ └── contents │ │ ├── Errors │ │ ├── ClientError.swift │ │ └── ErrorPayload.swift │ │ ├── Models │ │ ├── Attachments │ │ │ ├── AttachmentId.swift │ │ │ ├── AttachmentTypes.swift │ │ │ ├── ChatMessageAttachmentSeed.swift │ │ │ ├── ChatMessageDefaultAttachment.swift │ │ │ ├── ChatMessageFileAttachment.swift │ │ │ ├── ChatMessageGiphyAttachment.swift │ │ │ ├── ChatMessageImageAttachment.swift │ │ │ ├── ChatMessageLinkAttachment.swift │ │ │ └── ChatMessageRawAttachment.swift │ │ ├── BanEnabling.swift │ │ ├── Channel.swift │ │ ├── ChannelId.swift │ │ ├── ChannelRead.swift │ │ ├── ChannelType.swift │ │ ├── CurrentUser.swift │ │ ├── Device.swift │ │ ├── ExtraData.swift │ │ ├── Member.swift │ │ ├── Message.swift │ │ ├── MessageReaction.swift │ │ ├── MessageReactionType.swift │ │ ├── UnreadCount.swift │ │ ├── User+SwiftUI.swift │ │ └── User.swift │ │ ├── Query │ │ ├── ChannelListQuery.swift │ │ ├── ChannelMemberListQuery.swift │ │ ├── ChannelQuery.swift │ │ ├── Filter.swift │ │ ├── Pagination.swift │ │ ├── QueryOptions.swift │ │ ├── Sorting │ │ │ ├── ChannelListSortingKey.swift │ │ │ ├── ChannelMemberListSortingKey.swift │ │ │ ├── Sorting.swift │ │ │ └── UserListSortingKey.swift │ │ └── UserListQuery.swift │ │ ├── Utils │ │ ├── Atomic.swift │ │ ├── Bundle+Extensions.swift │ │ ├── Cached.swift │ │ ├── Codable+Extensions.swift │ │ ├── Data+Gzip.swift │ │ ├── Database │ │ │ └── NSManagedObject+Extensions.swift │ │ ├── Dictionary+Extensions.swift │ │ ├── InternetConnection │ │ │ ├── Error+InternetNotAvailable.swift │ │ │ ├── InternetConnection.swift │ │ │ └── Reachability_Vendor.swift │ │ ├── LazyCachedMapCollection.swift │ │ ├── Logger │ │ │ ├── Destination │ │ │ │ ├── BaseLogDestination.swift │ │ │ │ ├── ConsoleLogDestination.swift │ │ │ │ └── LogDestination.swift │ │ │ ├── Formatter │ │ │ │ ├── LogFormatter.swift │ │ │ │ └── PrefixLogFormatter.swift │ │ │ ├── Logger.swift │ │ │ └── StringInterpolation+Extenstions.swift │ │ ├── MainQueue+Synchronous.swift │ │ ├── MulticastDelegate.swift │ │ ├── MultipartFormData.swift │ │ ├── OptionSet+Extensions.swift │ │ ├── OptionalDecodable.swift │ │ ├── Publisher+Extensions.swift │ │ ├── Result+Extensions.swift │ │ ├── SystemEnvironment+Version.swift │ │ ├── SystemEnvironment.swift │ │ ├── Timers.swift │ │ └── UniqueId.swift │ │ ├── WebSocketClient │ │ ├── ConnectionStatus.swift │ │ ├── Engine │ │ │ ├── StarscreamWebSocketEngine.swift │ │ │ ├── URLSessionWebSocketEngine.swift │ │ │ └── WebSocketEngine.swift │ │ ├── EventMiddlewares │ │ │ ├── ChannelMemberTypingStateUpdaterMiddleware.swift │ │ │ ├── ChannelReadUpdaterMiddleware.swift │ │ │ ├── EventDataProcessorMiddleware.swift │ │ │ ├── EventMiddleware.swift │ │ │ ├── MessageReactionsMiddleware.swift │ │ │ └── TypingStartCleanupMiddleware.swift │ │ ├── Events │ │ │ ├── ChannelEvents.swift │ │ │ ├── ConnectionEvents.swift │ │ │ ├── Event.swift │ │ │ ├── EventDecoder.swift │ │ │ ├── EventPayload.swift │ │ │ ├── EventType.swift │ │ │ ├── MemberEvents.swift │ │ │ ├── MessageEvents.swift │ │ │ ├── NotificationEvents.swift │ │ │ ├── ReactionEvents.swift │ │ │ ├── TypingEvent.swift │ │ │ └── UserEvents.swift │ │ ├── WebSocketClient.swift │ │ ├── WebSocketConnectPayload.swift │ │ ├── WebSocketPingController.swift │ │ └── WebSocketReconnectionStrategy.swift │ │ └── Workers │ │ ├── Background │ │ ├── AttachmentUploader.swift │ │ ├── ChannelWatchStateUpdater.swift │ │ ├── MessageEditor.swift │ │ ├── MessageSender.swift │ │ ├── MissingEventsPublisher.swift │ │ ├── NewChannelQueryUpdater.swift │ │ └── NewUserQueryUpdater.swift │ │ ├── ChannelListUpdater.swift │ │ ├── ChannelMemberListUpdater.swift │ │ ├── ChannelMemberUpdater.swift │ │ ├── ChannelUpdater.swift │ │ ├── ChatClientUpdater.swift │ │ ├── CurrentUserUpdater.swift │ │ ├── EventNotificationCenter.swift │ │ ├── EventObservers │ │ ├── EventObserver.swift │ │ ├── MemberEventObserver.swift │ │ └── TypingEventObserver.swift │ │ ├── EventSender.swift │ │ ├── MessageUpdater.swift │ │ ├── UserListUpdater.swift │ │ ├── UserUpdater.swift │ │ └── Worker.swift └── Target Support Files │ ├── Pods-SwiftUIChat │ ├── Pods-SwiftUIChat-Info.plist │ ├── Pods-SwiftUIChat-acknowledgements.markdown │ ├── Pods-SwiftUIChat-acknowledgements.plist │ ├── Pods-SwiftUIChat-dummy.m │ ├── Pods-SwiftUIChat-frameworks-Debug-input-files.xcfilelist │ ├── Pods-SwiftUIChat-frameworks-Debug-output-files.xcfilelist │ ├── Pods-SwiftUIChat-frameworks-Release-input-files.xcfilelist │ ├── Pods-SwiftUIChat-frameworks-Release-output-files.xcfilelist │ ├── Pods-SwiftUIChat-frameworks.sh │ ├── Pods-SwiftUIChat-umbrella.h │ ├── Pods-SwiftUIChat.debug.xcconfig │ ├── Pods-SwiftUIChat.modulemap │ └── Pods-SwiftUIChat.release.xcconfig │ ├── Starscream │ ├── Starscream-Info.plist │ ├── Starscream-dummy.m │ ├── Starscream-prefix.pch │ ├── Starscream-umbrella.h │ ├── Starscream.debug.xcconfig │ ├── Starscream.modulemap │ └── Starscream.release.xcconfig │ └── StreamChat │ ├── ResourceBundle-StreamChat-StreamChat-Info.plist │ ├── StreamChat-Info.plist │ ├── StreamChat-dummy.m │ ├── StreamChat-prefix.pch │ ├── StreamChat-umbrella.h │ ├── StreamChat.debug.xcconfig │ ├── StreamChat.modulemap │ └── StreamChat.release.xcconfig ├── SwiftUIChat.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ ├── contents.xcworkspacedata │ ├── xcshareddata │ │ └── IDEWorkspaceChecks.plist │ └── xcuserdata │ │ └── cardoso.xcuserdatad │ │ └── UserInterfaceState.xcuserstate └── xcuserdata │ └── cardoso.xcuserdatad │ └── xcschemes │ └── xcschememanagement.plist ├── SwiftUIChat.xcworkspace ├── contents.xcworkspacedata ├── xcshareddata │ └── IDEWorkspaceChecks.plist └── xcuserdata │ └── cardoso.xcuserdatad │ ├── UserInterfaceState.xcuserstate │ └── xcdebugger │ └── Breakpoints_v2.xcbkptlist └── SwiftUIChat ├── AppDelegate.swift ├── Assets.xcassets ├── AppIcon.appiconset │ └── Contents.json └── Contents.json ├── Base.lproj └── LaunchScreen.storyboard ├── ChannelsView.swift ├── ChatClient+Shared.swift ├── ChatView.swift ├── ContentView.swift ├── Info.plist ├── LoginView.swift ├── MessageView.swift ├── Preview Content └── Preview Assets.xcassets │ └── Contents.json ├── SceneDelegate.swift └── SwiftUIChat.entitlements /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui-example/HEAD/README.md -------------------------------------------------------------------------------- /SwiftUIChat/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui-example/HEAD/SwiftUIChat/Podfile -------------------------------------------------------------------------------- /SwiftUIChat/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui-example/HEAD/SwiftUIChat/Podfile.lock -------------------------------------------------------------------------------- /SwiftUIChat/Pods/Manifest.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui-example/HEAD/SwiftUIChat/Pods/Manifest.lock -------------------------------------------------------------------------------- /SwiftUIChat/Pods/Pods.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui-example/HEAD/SwiftUIChat/Pods/Pods.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /SwiftUIChat/Pods/Pods.xcodeproj/xcuserdata/cardoso.xcuserdatad/xcschemes/Pods-SwiftUIChat.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui-example/HEAD/SwiftUIChat/Pods/Pods.xcodeproj/xcuserdata/cardoso.xcuserdatad/xcschemes/Pods-SwiftUIChat.xcscheme -------------------------------------------------------------------------------- /SwiftUIChat/Pods/Pods.xcodeproj/xcuserdata/cardoso.xcuserdatad/xcschemes/Starscream.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui-example/HEAD/SwiftUIChat/Pods/Pods.xcodeproj/xcuserdata/cardoso.xcuserdatad/xcschemes/Starscream.xcscheme -------------------------------------------------------------------------------- /SwiftUIChat/Pods/Pods.xcodeproj/xcuserdata/cardoso.xcuserdatad/xcschemes/StreamChat-StreamChat.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui-example/HEAD/SwiftUIChat/Pods/Pods.xcodeproj/xcuserdata/cardoso.xcuserdatad/xcschemes/StreamChat-StreamChat.xcscheme -------------------------------------------------------------------------------- /SwiftUIChat/Pods/Pods.xcodeproj/xcuserdata/cardoso.xcuserdatad/xcschemes/StreamChat.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui-example/HEAD/SwiftUIChat/Pods/Pods.xcodeproj/xcuserdata/cardoso.xcuserdatad/xcschemes/StreamChat.xcscheme -------------------------------------------------------------------------------- /SwiftUIChat/Pods/Pods.xcodeproj/xcuserdata/cardoso.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui-example/HEAD/SwiftUIChat/Pods/Pods.xcodeproj/xcuserdata/cardoso.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /SwiftUIChat/Pods/Starscream/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui-example/HEAD/SwiftUIChat/Pods/Starscream/LICENSE -------------------------------------------------------------------------------- /SwiftUIChat/Pods/Starscream/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui-example/HEAD/SwiftUIChat/Pods/Starscream/README.md -------------------------------------------------------------------------------- /SwiftUIChat/Pods/Starscream/Sources/Compression/Compression.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui-example/HEAD/SwiftUIChat/Pods/Starscream/Sources/Compression/Compression.swift -------------------------------------------------------------------------------- /SwiftUIChat/Pods/Starscream/Sources/Compression/WSCompression.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui-example/HEAD/SwiftUIChat/Pods/Starscream/Sources/Compression/WSCompression.swift -------------------------------------------------------------------------------- /SwiftUIChat/Pods/Starscream/Sources/DataBytes/Data+Extensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui-example/HEAD/SwiftUIChat/Pods/Starscream/Sources/DataBytes/Data+Extensions.swift -------------------------------------------------------------------------------- /SwiftUIChat/Pods/Starscream/Sources/Engine/Engine.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui-example/HEAD/SwiftUIChat/Pods/Starscream/Sources/Engine/Engine.swift -------------------------------------------------------------------------------- /SwiftUIChat/Pods/Starscream/Sources/Engine/NativeEngine.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui-example/HEAD/SwiftUIChat/Pods/Starscream/Sources/Engine/NativeEngine.swift -------------------------------------------------------------------------------- /SwiftUIChat/Pods/Starscream/Sources/Engine/WSEngine.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui-example/HEAD/SwiftUIChat/Pods/Starscream/Sources/Engine/WSEngine.swift -------------------------------------------------------------------------------- /SwiftUIChat/Pods/Starscream/Sources/Framer/FoundationHTTPHandler.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui-example/HEAD/SwiftUIChat/Pods/Starscream/Sources/Framer/FoundationHTTPHandler.swift -------------------------------------------------------------------------------- /SwiftUIChat/Pods/Starscream/Sources/Framer/FoundationHTTPServerHandler.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui-example/HEAD/SwiftUIChat/Pods/Starscream/Sources/Framer/FoundationHTTPServerHandler.swift -------------------------------------------------------------------------------- /SwiftUIChat/Pods/Starscream/Sources/Framer/FrameCollector.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui-example/HEAD/SwiftUIChat/Pods/Starscream/Sources/Framer/FrameCollector.swift -------------------------------------------------------------------------------- /SwiftUIChat/Pods/Starscream/Sources/Framer/Framer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui-example/HEAD/SwiftUIChat/Pods/Starscream/Sources/Framer/Framer.swift -------------------------------------------------------------------------------- /SwiftUIChat/Pods/Starscream/Sources/Framer/HTTPHandler.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui-example/HEAD/SwiftUIChat/Pods/Starscream/Sources/Framer/HTTPHandler.swift -------------------------------------------------------------------------------- /SwiftUIChat/Pods/Starscream/Sources/Framer/StringHTTPHandler.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui-example/HEAD/SwiftUIChat/Pods/Starscream/Sources/Framer/StringHTTPHandler.swift -------------------------------------------------------------------------------- /SwiftUIChat/Pods/Starscream/Sources/Security/FoundationSecurity.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui-example/HEAD/SwiftUIChat/Pods/Starscream/Sources/Security/FoundationSecurity.swift -------------------------------------------------------------------------------- /SwiftUIChat/Pods/Starscream/Sources/Security/Security.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui-example/HEAD/SwiftUIChat/Pods/Starscream/Sources/Security/Security.swift -------------------------------------------------------------------------------- /SwiftUIChat/Pods/Starscream/Sources/Server/Server.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui-example/HEAD/SwiftUIChat/Pods/Starscream/Sources/Server/Server.swift -------------------------------------------------------------------------------- /SwiftUIChat/Pods/Starscream/Sources/Server/WebSocketServer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui-example/HEAD/SwiftUIChat/Pods/Starscream/Sources/Server/WebSocketServer.swift -------------------------------------------------------------------------------- /SwiftUIChat/Pods/Starscream/Sources/Starscream/WebSocket.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui-example/HEAD/SwiftUIChat/Pods/Starscream/Sources/Starscream/WebSocket.swift -------------------------------------------------------------------------------- /SwiftUIChat/Pods/Starscream/Sources/Transport/FoundationTransport.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui-example/HEAD/SwiftUIChat/Pods/Starscream/Sources/Transport/FoundationTransport.swift -------------------------------------------------------------------------------- /SwiftUIChat/Pods/Starscream/Sources/Transport/TCPTransport.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui-example/HEAD/SwiftUIChat/Pods/Starscream/Sources/Transport/TCPTransport.swift -------------------------------------------------------------------------------- /SwiftUIChat/Pods/Starscream/Sources/Transport/Transport.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui-example/HEAD/SwiftUIChat/Pods/Starscream/Sources/Transport/Transport.swift -------------------------------------------------------------------------------- /SwiftUIChat/Pods/StreamChat/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui-example/HEAD/SwiftUIChat/Pods/StreamChat/LICENSE -------------------------------------------------------------------------------- /SwiftUIChat/Pods/StreamChat/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui-example/HEAD/SwiftUIChat/Pods/StreamChat/README.md -------------------------------------------------------------------------------- /SwiftUIChat/Pods/StreamChat/Sources/StreamChat/APIClient/APIClient.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui-example/HEAD/SwiftUIChat/Pods/StreamChat/Sources/StreamChat/APIClient/APIClient.swift -------------------------------------------------------------------------------- /SwiftUIChat/Pods/StreamChat/Sources/StreamChat/APIClient/Endpoints/AttachmentEndpoints.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui-example/HEAD/SwiftUIChat/Pods/StreamChat/Sources/StreamChat/APIClient/Endpoints/AttachmentEndpoints.swift -------------------------------------------------------------------------------- /SwiftUIChat/Pods/StreamChat/Sources/StreamChat/APIClient/Endpoints/ChannelEndpoints.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui-example/HEAD/SwiftUIChat/Pods/StreamChat/Sources/StreamChat/APIClient/Endpoints/ChannelEndpoints.swift -------------------------------------------------------------------------------- /SwiftUIChat/Pods/StreamChat/Sources/StreamChat/APIClient/Endpoints/DeviceEndpoints.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui-example/HEAD/SwiftUIChat/Pods/StreamChat/Sources/StreamChat/APIClient/Endpoints/DeviceEndpoints.swift -------------------------------------------------------------------------------- /SwiftUIChat/Pods/StreamChat/Sources/StreamChat/APIClient/Endpoints/Endpoint.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui-example/HEAD/SwiftUIChat/Pods/StreamChat/Sources/StreamChat/APIClient/Endpoints/Endpoint.swift -------------------------------------------------------------------------------- /SwiftUIChat/Pods/StreamChat/Sources/StreamChat/APIClient/Endpoints/GuestEndpoints.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui-example/HEAD/SwiftUIChat/Pods/StreamChat/Sources/StreamChat/APIClient/Endpoints/GuestEndpoints.swift -------------------------------------------------------------------------------- /SwiftUIChat/Pods/StreamChat/Sources/StreamChat/APIClient/Endpoints/MemberEndpoints.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui-example/HEAD/SwiftUIChat/Pods/StreamChat/Sources/StreamChat/APIClient/Endpoints/MemberEndpoints.swift -------------------------------------------------------------------------------- /SwiftUIChat/Pods/StreamChat/Sources/StreamChat/APIClient/Endpoints/MessageEndpoints.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui-example/HEAD/SwiftUIChat/Pods/StreamChat/Sources/StreamChat/APIClient/Endpoints/MessageEndpoints.swift -------------------------------------------------------------------------------- /SwiftUIChat/Pods/StreamChat/Sources/StreamChat/APIClient/Endpoints/ModerationEndpoints.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui-example/HEAD/SwiftUIChat/Pods/StreamChat/Sources/StreamChat/APIClient/Endpoints/ModerationEndpoints.swift -------------------------------------------------------------------------------- /SwiftUIChat/Pods/StreamChat/Sources/StreamChat/APIClient/Endpoints/Payloads/AttachmentPayload.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui-example/HEAD/SwiftUIChat/Pods/StreamChat/Sources/StreamChat/APIClient/Endpoints/Payloads/AttachmentPayload.swift -------------------------------------------------------------------------------- /SwiftUIChat/Pods/StreamChat/Sources/StreamChat/APIClient/Endpoints/Payloads/ChannelCodingKeys.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui-example/HEAD/SwiftUIChat/Pods/StreamChat/Sources/StreamChat/APIClient/Endpoints/Payloads/ChannelCodingKeys.swift -------------------------------------------------------------------------------- /SwiftUIChat/Pods/StreamChat/Sources/StreamChat/APIClient/Endpoints/Payloads/ChannelEditDetailPayload.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui-example/HEAD/SwiftUIChat/Pods/StreamChat/Sources/StreamChat/APIClient/Endpoints/Payloads/ChannelEditDetailPayload.swift -------------------------------------------------------------------------------- /SwiftUIChat/Pods/StreamChat/Sources/StreamChat/APIClient/Endpoints/Payloads/ChannelListPayload.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui-example/HEAD/SwiftUIChat/Pods/StreamChat/Sources/StreamChat/APIClient/Endpoints/Payloads/ChannelListPayload.swift -------------------------------------------------------------------------------- /SwiftUIChat/Pods/StreamChat/Sources/StreamChat/APIClient/Endpoints/Payloads/ChannelMemberListPayload.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui-example/HEAD/SwiftUIChat/Pods/StreamChat/Sources/StreamChat/APIClient/Endpoints/Payloads/ChannelMemberListPayload.swift -------------------------------------------------------------------------------- /SwiftUIChat/Pods/StreamChat/Sources/StreamChat/APIClient/Endpoints/Payloads/CurrentUserPayloads.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui-example/HEAD/SwiftUIChat/Pods/StreamChat/Sources/StreamChat/APIClient/Endpoints/Payloads/CurrentUserPayloads.swift -------------------------------------------------------------------------------- /SwiftUIChat/Pods/StreamChat/Sources/StreamChat/APIClient/Endpoints/Payloads/DevicePayloads.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui-example/HEAD/SwiftUIChat/Pods/StreamChat/Sources/StreamChat/APIClient/Endpoints/Payloads/DevicePayloads.swift -------------------------------------------------------------------------------- /SwiftUIChat/Pods/StreamChat/Sources/StreamChat/APIClient/Endpoints/Payloads/FileUploadPayload.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui-example/HEAD/SwiftUIChat/Pods/StreamChat/Sources/StreamChat/APIClient/Endpoints/Payloads/FileUploadPayload.swift -------------------------------------------------------------------------------- /SwiftUIChat/Pods/StreamChat/Sources/StreamChat/APIClient/Endpoints/Payloads/FlagMessagePayload.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui-example/HEAD/SwiftUIChat/Pods/StreamChat/Sources/StreamChat/APIClient/Endpoints/Payloads/FlagMessagePayload.swift -------------------------------------------------------------------------------- /SwiftUIChat/Pods/StreamChat/Sources/StreamChat/APIClient/Endpoints/Payloads/FlagUserPayload.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui-example/HEAD/SwiftUIChat/Pods/StreamChat/Sources/StreamChat/APIClient/Endpoints/Payloads/FlagUserPayload.swift -------------------------------------------------------------------------------- /SwiftUIChat/Pods/StreamChat/Sources/StreamChat/APIClient/Endpoints/Payloads/GuestUserTokenPayload.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui-example/HEAD/SwiftUIChat/Pods/StreamChat/Sources/StreamChat/APIClient/Endpoints/Payloads/GuestUserTokenPayload.swift -------------------------------------------------------------------------------- /SwiftUIChat/Pods/StreamChat/Sources/StreamChat/APIClient/Endpoints/Payloads/MemberPayload.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui-example/HEAD/SwiftUIChat/Pods/StreamChat/Sources/StreamChat/APIClient/Endpoints/Payloads/MemberPayload.swift -------------------------------------------------------------------------------- /SwiftUIChat/Pods/StreamChat/Sources/StreamChat/APIClient/Endpoints/Payloads/MessagePayloads.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui-example/HEAD/SwiftUIChat/Pods/StreamChat/Sources/StreamChat/APIClient/Endpoints/Payloads/MessagePayloads.swift -------------------------------------------------------------------------------- /SwiftUIChat/Pods/StreamChat/Sources/StreamChat/APIClient/Endpoints/Payloads/MessageReactionPayload.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui-example/HEAD/SwiftUIChat/Pods/StreamChat/Sources/StreamChat/APIClient/Endpoints/Payloads/MessageReactionPayload.swift -------------------------------------------------------------------------------- /SwiftUIChat/Pods/StreamChat/Sources/StreamChat/APIClient/Endpoints/Payloads/MissingEventsPayload.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui-example/HEAD/SwiftUIChat/Pods/StreamChat/Sources/StreamChat/APIClient/Endpoints/Payloads/MissingEventsPayload.swift -------------------------------------------------------------------------------- /SwiftUIChat/Pods/StreamChat/Sources/StreamChat/APIClient/Endpoints/Payloads/RawJSON.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui-example/HEAD/SwiftUIChat/Pods/StreamChat/Sources/StreamChat/APIClient/Endpoints/Payloads/RawJSON.swift -------------------------------------------------------------------------------- /SwiftUIChat/Pods/StreamChat/Sources/StreamChat/APIClient/Endpoints/Payloads/UserListPayload.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui-example/HEAD/SwiftUIChat/Pods/StreamChat/Sources/StreamChat/APIClient/Endpoints/Payloads/UserListPayload.swift -------------------------------------------------------------------------------- /SwiftUIChat/Pods/StreamChat/Sources/StreamChat/APIClient/Endpoints/Payloads/UserPayloads.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui-example/HEAD/SwiftUIChat/Pods/StreamChat/Sources/StreamChat/APIClient/Endpoints/Payloads/UserPayloads.swift -------------------------------------------------------------------------------- /SwiftUIChat/Pods/StreamChat/Sources/StreamChat/APIClient/Endpoints/Requests/AttachmentActionRequestBody.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui-example/HEAD/SwiftUIChat/Pods/StreamChat/Sources/StreamChat/APIClient/Endpoints/Requests/AttachmentActionRequestBody.swift -------------------------------------------------------------------------------- /SwiftUIChat/Pods/StreamChat/Sources/StreamChat/APIClient/Endpoints/Requests/ChannelMemberBanRequestPayload.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui-example/HEAD/SwiftUIChat/Pods/StreamChat/Sources/StreamChat/APIClient/Endpoints/Requests/ChannelMemberBanRequestPayload.swift -------------------------------------------------------------------------------- /SwiftUIChat/Pods/StreamChat/Sources/StreamChat/APIClient/Endpoints/Requests/GuestUserTokenRequestPayload.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui-example/HEAD/SwiftUIChat/Pods/StreamChat/Sources/StreamChat/APIClient/Endpoints/Requests/GuestUserTokenRequestPayload.swift -------------------------------------------------------------------------------- /SwiftUIChat/Pods/StreamChat/Sources/StreamChat/APIClient/Endpoints/Requests/MessageReactionRequestPayload.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui-example/HEAD/SwiftUIChat/Pods/StreamChat/Sources/StreamChat/APIClient/Endpoints/Requests/MessageReactionRequestPayload.swift -------------------------------------------------------------------------------- /SwiftUIChat/Pods/StreamChat/Sources/StreamChat/APIClient/Endpoints/Requests/MissingEventsRequestBody.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui-example/HEAD/SwiftUIChat/Pods/StreamChat/Sources/StreamChat/APIClient/Endpoints/Requests/MissingEventsRequestBody.swift -------------------------------------------------------------------------------- /SwiftUIChat/Pods/StreamChat/Sources/StreamChat/APIClient/Endpoints/SyncEndpoint.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui-example/HEAD/SwiftUIChat/Pods/StreamChat/Sources/StreamChat/APIClient/Endpoints/SyncEndpoint.swift -------------------------------------------------------------------------------- /SwiftUIChat/Pods/StreamChat/Sources/StreamChat/APIClient/Endpoints/UserEndpoints.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui-example/HEAD/SwiftUIChat/Pods/StreamChat/Sources/StreamChat/APIClient/Endpoints/UserEndpoints.swift -------------------------------------------------------------------------------- /SwiftUIChat/Pods/StreamChat/Sources/StreamChat/APIClient/Endpoints/WebSocketConnectEndpoint.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui-example/HEAD/SwiftUIChat/Pods/StreamChat/Sources/StreamChat/APIClient/Endpoints/WebSocketConnectEndpoint.swift -------------------------------------------------------------------------------- /SwiftUIChat/Pods/StreamChat/Sources/StreamChat/APIClient/HTTPHeader.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui-example/HEAD/SwiftUIChat/Pods/StreamChat/Sources/StreamChat/APIClient/HTTPHeader.swift -------------------------------------------------------------------------------- /SwiftUIChat/Pods/StreamChat/Sources/StreamChat/APIClient/RequestDecoder.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui-example/HEAD/SwiftUIChat/Pods/StreamChat/Sources/StreamChat/APIClient/RequestDecoder.swift -------------------------------------------------------------------------------- /SwiftUIChat/Pods/StreamChat/Sources/StreamChat/APIClient/RequestEncoder.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui-example/HEAD/SwiftUIChat/Pods/StreamChat/Sources/StreamChat/APIClient/RequestEncoder.swift -------------------------------------------------------------------------------- /SwiftUIChat/Pods/StreamChat/Sources/StreamChat/ChatClient.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui-example/HEAD/SwiftUIChat/Pods/StreamChat/Sources/StreamChat/ChatClient.swift -------------------------------------------------------------------------------- /SwiftUIChat/Pods/StreamChat/Sources/StreamChat/Config/BaseURL.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui-example/HEAD/SwiftUIChat/Pods/StreamChat/Sources/StreamChat/Config/BaseURL.swift -------------------------------------------------------------------------------- /SwiftUIChat/Pods/StreamChat/Sources/StreamChat/Config/ChatClientConfig.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui-example/HEAD/SwiftUIChat/Pods/StreamChat/Sources/StreamChat/Config/ChatClientConfig.swift -------------------------------------------------------------------------------- /SwiftUIChat/Pods/StreamChat/Sources/StreamChat/Config/Token.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui-example/HEAD/SwiftUIChat/Pods/StreamChat/Sources/StreamChat/Config/Token.swift -------------------------------------------------------------------------------- /SwiftUIChat/Pods/StreamChat/Sources/StreamChat/Config/TokenProvider.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui-example/HEAD/SwiftUIChat/Pods/StreamChat/Sources/StreamChat/Config/TokenProvider.swift -------------------------------------------------------------------------------- /SwiftUIChat/Pods/StreamChat/Sources/StreamChat/Controllers/ChannelController/ChannelController+Combine.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui-example/HEAD/SwiftUIChat/Pods/StreamChat/Sources/StreamChat/Controllers/ChannelController/ChannelController+Combine.swift -------------------------------------------------------------------------------- /SwiftUIChat/Pods/StreamChat/Sources/StreamChat/Controllers/ChannelController/ChannelController+SwiftUI.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui-example/HEAD/SwiftUIChat/Pods/StreamChat/Sources/StreamChat/Controllers/ChannelController/ChannelController+SwiftUI.swift -------------------------------------------------------------------------------- /SwiftUIChat/Pods/StreamChat/Sources/StreamChat/Controllers/ChannelController/ChannelController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui-example/HEAD/SwiftUIChat/Pods/StreamChat/Sources/StreamChat/Controllers/ChannelController/ChannelController.swift -------------------------------------------------------------------------------- /SwiftUIChat/Pods/StreamChat/Sources/StreamChat/Controllers/ChannelListController/ChannelListController+Combine.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui-example/HEAD/SwiftUIChat/Pods/StreamChat/Sources/StreamChat/Controllers/ChannelListController/ChannelListController+Combine.swift -------------------------------------------------------------------------------- /SwiftUIChat/Pods/StreamChat/Sources/StreamChat/Controllers/ChannelListController/ChannelListController+SwiftUI.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui-example/HEAD/SwiftUIChat/Pods/StreamChat/Sources/StreamChat/Controllers/ChannelListController/ChannelListController+SwiftUI.swift -------------------------------------------------------------------------------- /SwiftUIChat/Pods/StreamChat/Sources/StreamChat/Controllers/ChannelListController/ChannelListController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui-example/HEAD/SwiftUIChat/Pods/StreamChat/Sources/StreamChat/Controllers/ChannelListController/ChannelListController.swift -------------------------------------------------------------------------------- /SwiftUIChat/Pods/StreamChat/Sources/StreamChat/Controllers/ConnectionController/ConnectionController+Combine.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui-example/HEAD/SwiftUIChat/Pods/StreamChat/Sources/StreamChat/Controllers/ConnectionController/ConnectionController+Combine.swift -------------------------------------------------------------------------------- /SwiftUIChat/Pods/StreamChat/Sources/StreamChat/Controllers/ConnectionController/ConnectionController+SwiftUI.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui-example/HEAD/SwiftUIChat/Pods/StreamChat/Sources/StreamChat/Controllers/ConnectionController/ConnectionController+SwiftUI.swift -------------------------------------------------------------------------------- /SwiftUIChat/Pods/StreamChat/Sources/StreamChat/Controllers/ConnectionController/ConnectionController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui-example/HEAD/SwiftUIChat/Pods/StreamChat/Sources/StreamChat/Controllers/ConnectionController/ConnectionController.swift -------------------------------------------------------------------------------- /SwiftUIChat/Pods/StreamChat/Sources/StreamChat/Controllers/Controller.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui-example/HEAD/SwiftUIChat/Pods/StreamChat/Sources/StreamChat/Controllers/Controller.swift -------------------------------------------------------------------------------- /SwiftUIChat/Pods/StreamChat/Sources/StreamChat/Controllers/CurrentUserController/CurrentUserController+Combine.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui-example/HEAD/SwiftUIChat/Pods/StreamChat/Sources/StreamChat/Controllers/CurrentUserController/CurrentUserController+Combine.swift -------------------------------------------------------------------------------- /SwiftUIChat/Pods/StreamChat/Sources/StreamChat/Controllers/CurrentUserController/CurrentUserController+SwiftUI.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui-example/HEAD/SwiftUIChat/Pods/StreamChat/Sources/StreamChat/Controllers/CurrentUserController/CurrentUserController+SwiftUI.swift -------------------------------------------------------------------------------- /SwiftUIChat/Pods/StreamChat/Sources/StreamChat/Controllers/CurrentUserController/CurrentUserController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui-example/HEAD/SwiftUIChat/Pods/StreamChat/Sources/StreamChat/Controllers/CurrentUserController/CurrentUserController.swift -------------------------------------------------------------------------------- /SwiftUIChat/Pods/StreamChat/Sources/StreamChat/Controllers/DataController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui-example/HEAD/SwiftUIChat/Pods/StreamChat/Sources/StreamChat/Controllers/DataController.swift -------------------------------------------------------------------------------- /SwiftUIChat/Pods/StreamChat/Sources/StreamChat/Controllers/EntityDatabaseObserver.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui-example/HEAD/SwiftUIChat/Pods/StreamChat/Sources/StreamChat/Controllers/EntityDatabaseObserver.swift -------------------------------------------------------------------------------- /SwiftUIChat/Pods/StreamChat/Sources/StreamChat/Controllers/ListDatabaseObserver.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui-example/HEAD/SwiftUIChat/Pods/StreamChat/Sources/StreamChat/Controllers/ListDatabaseObserver.swift -------------------------------------------------------------------------------- /SwiftUIChat/Pods/StreamChat/Sources/StreamChat/Controllers/MemberController/MemberController+Combine.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui-example/HEAD/SwiftUIChat/Pods/StreamChat/Sources/StreamChat/Controllers/MemberController/MemberController+Combine.swift -------------------------------------------------------------------------------- /SwiftUIChat/Pods/StreamChat/Sources/StreamChat/Controllers/MemberController/MemberController+SwiftUI.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui-example/HEAD/SwiftUIChat/Pods/StreamChat/Sources/StreamChat/Controllers/MemberController/MemberController+SwiftUI.swift -------------------------------------------------------------------------------- /SwiftUIChat/Pods/StreamChat/Sources/StreamChat/Controllers/MemberController/MemberController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui-example/HEAD/SwiftUIChat/Pods/StreamChat/Sources/StreamChat/Controllers/MemberController/MemberController.swift -------------------------------------------------------------------------------- /SwiftUIChat/Pods/StreamChat/Sources/StreamChat/Controllers/MemberListController/MemberListController+Combine.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui-example/HEAD/SwiftUIChat/Pods/StreamChat/Sources/StreamChat/Controllers/MemberListController/MemberListController+Combine.swift -------------------------------------------------------------------------------- /SwiftUIChat/Pods/StreamChat/Sources/StreamChat/Controllers/MemberListController/MemberListController+SwiftUI.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui-example/HEAD/SwiftUIChat/Pods/StreamChat/Sources/StreamChat/Controllers/MemberListController/MemberListController+SwiftUI.swift -------------------------------------------------------------------------------- /SwiftUIChat/Pods/StreamChat/Sources/StreamChat/Controllers/MemberListController/MemberListController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui-example/HEAD/SwiftUIChat/Pods/StreamChat/Sources/StreamChat/Controllers/MemberListController/MemberListController.swift -------------------------------------------------------------------------------- /SwiftUIChat/Pods/StreamChat/Sources/StreamChat/Controllers/MessageController/MessageController+Combine.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui-example/HEAD/SwiftUIChat/Pods/StreamChat/Sources/StreamChat/Controllers/MessageController/MessageController+Combine.swift -------------------------------------------------------------------------------- /SwiftUIChat/Pods/StreamChat/Sources/StreamChat/Controllers/MessageController/MessageController+SwiftUI.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui-example/HEAD/SwiftUIChat/Pods/StreamChat/Sources/StreamChat/Controllers/MessageController/MessageController+SwiftUI.swift -------------------------------------------------------------------------------- /SwiftUIChat/Pods/StreamChat/Sources/StreamChat/Controllers/MessageController/MessageController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui-example/HEAD/SwiftUIChat/Pods/StreamChat/Sources/StreamChat/Controllers/MessageController/MessageController.swift -------------------------------------------------------------------------------- /SwiftUIChat/Pods/StreamChat/Sources/StreamChat/Controllers/SearchControllers/UserSearchController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui-example/HEAD/SwiftUIChat/Pods/StreamChat/Sources/StreamChat/Controllers/SearchControllers/UserSearchController.swift -------------------------------------------------------------------------------- /SwiftUIChat/Pods/StreamChat/Sources/StreamChat/Controllers/UserController/UserController+Combine.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui-example/HEAD/SwiftUIChat/Pods/StreamChat/Sources/StreamChat/Controllers/UserController/UserController+Combine.swift -------------------------------------------------------------------------------- /SwiftUIChat/Pods/StreamChat/Sources/StreamChat/Controllers/UserController/UserController+SwiftUI.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui-example/HEAD/SwiftUIChat/Pods/StreamChat/Sources/StreamChat/Controllers/UserController/UserController+SwiftUI.swift -------------------------------------------------------------------------------- /SwiftUIChat/Pods/StreamChat/Sources/StreamChat/Controllers/UserController/UserController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui-example/HEAD/SwiftUIChat/Pods/StreamChat/Sources/StreamChat/Controllers/UserController/UserController.swift -------------------------------------------------------------------------------- /SwiftUIChat/Pods/StreamChat/Sources/StreamChat/Controllers/UserListController/UserListController+Combine.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui-example/HEAD/SwiftUIChat/Pods/StreamChat/Sources/StreamChat/Controllers/UserListController/UserListController+Combine.swift -------------------------------------------------------------------------------- /SwiftUIChat/Pods/StreamChat/Sources/StreamChat/Controllers/UserListController/UserListController+SwiftUI.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui-example/HEAD/SwiftUIChat/Pods/StreamChat/Sources/StreamChat/Controllers/UserListController/UserListController+SwiftUI.swift -------------------------------------------------------------------------------- /SwiftUIChat/Pods/StreamChat/Sources/StreamChat/Controllers/UserListController/UserListController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui-example/HEAD/SwiftUIChat/Pods/StreamChat/Sources/StreamChat/Controllers/UserListController/UserListController.swift -------------------------------------------------------------------------------- /SwiftUIChat/Pods/StreamChat/Sources/StreamChat/Database/DTOs/AttachmentDTO.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui-example/HEAD/SwiftUIChat/Pods/StreamChat/Sources/StreamChat/Database/DTOs/AttachmentDTO.swift -------------------------------------------------------------------------------- /SwiftUIChat/Pods/StreamChat/Sources/StreamChat/Database/DTOs/ChannelDTO.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui-example/HEAD/SwiftUIChat/Pods/StreamChat/Sources/StreamChat/Database/DTOs/ChannelDTO.swift -------------------------------------------------------------------------------- /SwiftUIChat/Pods/StreamChat/Sources/StreamChat/Database/DTOs/ChannelListQueryDTO.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui-example/HEAD/SwiftUIChat/Pods/StreamChat/Sources/StreamChat/Database/DTOs/ChannelListQueryDTO.swift -------------------------------------------------------------------------------- /SwiftUIChat/Pods/StreamChat/Sources/StreamChat/Database/DTOs/ChannelMemberListQueryDTO.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui-example/HEAD/SwiftUIChat/Pods/StreamChat/Sources/StreamChat/Database/DTOs/ChannelMemberListQueryDTO.swift -------------------------------------------------------------------------------- /SwiftUIChat/Pods/StreamChat/Sources/StreamChat/Database/DTOs/ChannelReadDTO.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui-example/HEAD/SwiftUIChat/Pods/StreamChat/Sources/StreamChat/Database/DTOs/ChannelReadDTO.swift -------------------------------------------------------------------------------- /SwiftUIChat/Pods/StreamChat/Sources/StreamChat/Database/DTOs/CurrentUserDTO.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui-example/HEAD/SwiftUIChat/Pods/StreamChat/Sources/StreamChat/Database/DTOs/CurrentUserDTO.swift -------------------------------------------------------------------------------- /SwiftUIChat/Pods/StreamChat/Sources/StreamChat/Database/DTOs/DeviceDTO.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui-example/HEAD/SwiftUIChat/Pods/StreamChat/Sources/StreamChat/Database/DTOs/DeviceDTO.swift -------------------------------------------------------------------------------- /SwiftUIChat/Pods/StreamChat/Sources/StreamChat/Database/DTOs/EphemeralValuesContainer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui-example/HEAD/SwiftUIChat/Pods/StreamChat/Sources/StreamChat/Database/DTOs/EphemeralValuesContainer.swift -------------------------------------------------------------------------------- /SwiftUIChat/Pods/StreamChat/Sources/StreamChat/Database/DTOs/MemberModelDTO.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui-example/HEAD/SwiftUIChat/Pods/StreamChat/Sources/StreamChat/Database/DTOs/MemberModelDTO.swift -------------------------------------------------------------------------------- /SwiftUIChat/Pods/StreamChat/Sources/StreamChat/Database/DTOs/MessageDTO.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui-example/HEAD/SwiftUIChat/Pods/StreamChat/Sources/StreamChat/Database/DTOs/MessageDTO.swift -------------------------------------------------------------------------------- /SwiftUIChat/Pods/StreamChat/Sources/StreamChat/Database/DTOs/MessageReactionDTO.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui-example/HEAD/SwiftUIChat/Pods/StreamChat/Sources/StreamChat/Database/DTOs/MessageReactionDTO.swift -------------------------------------------------------------------------------- /SwiftUIChat/Pods/StreamChat/Sources/StreamChat/Database/DTOs/TeamDTO.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui-example/HEAD/SwiftUIChat/Pods/StreamChat/Sources/StreamChat/Database/DTOs/TeamDTO.swift -------------------------------------------------------------------------------- /SwiftUIChat/Pods/StreamChat/Sources/StreamChat/Database/DTOs/UserDTO.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui-example/HEAD/SwiftUIChat/Pods/StreamChat/Sources/StreamChat/Database/DTOs/UserDTO.swift -------------------------------------------------------------------------------- /SwiftUIChat/Pods/StreamChat/Sources/StreamChat/Database/DTOs/UserListQueryDTO.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui-example/HEAD/SwiftUIChat/Pods/StreamChat/Sources/StreamChat/Database/DTOs/UserListQueryDTO.swift -------------------------------------------------------------------------------- /SwiftUIChat/Pods/StreamChat/Sources/StreamChat/Database/DataStore.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui-example/HEAD/SwiftUIChat/Pods/StreamChat/Sources/StreamChat/Database/DataStore.swift -------------------------------------------------------------------------------- /SwiftUIChat/Pods/StreamChat/Sources/StreamChat/Database/DatabaseContainer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui-example/HEAD/SwiftUIChat/Pods/StreamChat/Sources/StreamChat/Database/DatabaseContainer.swift -------------------------------------------------------------------------------- /SwiftUIChat/Pods/StreamChat/Sources/StreamChat/Database/DatabaseSession.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui-example/HEAD/SwiftUIChat/Pods/StreamChat/Sources/StreamChat/Database/DatabaseSession.swift -------------------------------------------------------------------------------- /SwiftUIChat/Pods/StreamChat/Sources/StreamChat/Database/StreamChatModel.xcdatamodeld/StreamChatModel.xcdatamodel/contents: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui-example/HEAD/SwiftUIChat/Pods/StreamChat/Sources/StreamChat/Database/StreamChatModel.xcdatamodeld/StreamChatModel.xcdatamodel/contents -------------------------------------------------------------------------------- /SwiftUIChat/Pods/StreamChat/Sources/StreamChat/Errors/ClientError.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui-example/HEAD/SwiftUIChat/Pods/StreamChat/Sources/StreamChat/Errors/ClientError.swift -------------------------------------------------------------------------------- /SwiftUIChat/Pods/StreamChat/Sources/StreamChat/Errors/ErrorPayload.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui-example/HEAD/SwiftUIChat/Pods/StreamChat/Sources/StreamChat/Errors/ErrorPayload.swift -------------------------------------------------------------------------------- /SwiftUIChat/Pods/StreamChat/Sources/StreamChat/Models/Attachments/AttachmentId.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui-example/HEAD/SwiftUIChat/Pods/StreamChat/Sources/StreamChat/Models/Attachments/AttachmentId.swift -------------------------------------------------------------------------------- /SwiftUIChat/Pods/StreamChat/Sources/StreamChat/Models/Attachments/AttachmentTypes.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui-example/HEAD/SwiftUIChat/Pods/StreamChat/Sources/StreamChat/Models/Attachments/AttachmentTypes.swift -------------------------------------------------------------------------------- /SwiftUIChat/Pods/StreamChat/Sources/StreamChat/Models/Attachments/ChatMessageAttachmentSeed.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui-example/HEAD/SwiftUIChat/Pods/StreamChat/Sources/StreamChat/Models/Attachments/ChatMessageAttachmentSeed.swift -------------------------------------------------------------------------------- /SwiftUIChat/Pods/StreamChat/Sources/StreamChat/Models/Attachments/ChatMessageDefaultAttachment.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui-example/HEAD/SwiftUIChat/Pods/StreamChat/Sources/StreamChat/Models/Attachments/ChatMessageDefaultAttachment.swift -------------------------------------------------------------------------------- /SwiftUIChat/Pods/StreamChat/Sources/StreamChat/Models/Attachments/ChatMessageFileAttachment.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui-example/HEAD/SwiftUIChat/Pods/StreamChat/Sources/StreamChat/Models/Attachments/ChatMessageFileAttachment.swift -------------------------------------------------------------------------------- /SwiftUIChat/Pods/StreamChat/Sources/StreamChat/Models/Attachments/ChatMessageGiphyAttachment.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui-example/HEAD/SwiftUIChat/Pods/StreamChat/Sources/StreamChat/Models/Attachments/ChatMessageGiphyAttachment.swift -------------------------------------------------------------------------------- /SwiftUIChat/Pods/StreamChat/Sources/StreamChat/Models/Attachments/ChatMessageImageAttachment.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui-example/HEAD/SwiftUIChat/Pods/StreamChat/Sources/StreamChat/Models/Attachments/ChatMessageImageAttachment.swift -------------------------------------------------------------------------------- /SwiftUIChat/Pods/StreamChat/Sources/StreamChat/Models/Attachments/ChatMessageLinkAttachment.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui-example/HEAD/SwiftUIChat/Pods/StreamChat/Sources/StreamChat/Models/Attachments/ChatMessageLinkAttachment.swift -------------------------------------------------------------------------------- /SwiftUIChat/Pods/StreamChat/Sources/StreamChat/Models/Attachments/ChatMessageRawAttachment.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui-example/HEAD/SwiftUIChat/Pods/StreamChat/Sources/StreamChat/Models/Attachments/ChatMessageRawAttachment.swift -------------------------------------------------------------------------------- /SwiftUIChat/Pods/StreamChat/Sources/StreamChat/Models/BanEnabling.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui-example/HEAD/SwiftUIChat/Pods/StreamChat/Sources/StreamChat/Models/BanEnabling.swift -------------------------------------------------------------------------------- /SwiftUIChat/Pods/StreamChat/Sources/StreamChat/Models/Channel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui-example/HEAD/SwiftUIChat/Pods/StreamChat/Sources/StreamChat/Models/Channel.swift -------------------------------------------------------------------------------- /SwiftUIChat/Pods/StreamChat/Sources/StreamChat/Models/ChannelId.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui-example/HEAD/SwiftUIChat/Pods/StreamChat/Sources/StreamChat/Models/ChannelId.swift -------------------------------------------------------------------------------- /SwiftUIChat/Pods/StreamChat/Sources/StreamChat/Models/ChannelRead.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui-example/HEAD/SwiftUIChat/Pods/StreamChat/Sources/StreamChat/Models/ChannelRead.swift -------------------------------------------------------------------------------- /SwiftUIChat/Pods/StreamChat/Sources/StreamChat/Models/ChannelType.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui-example/HEAD/SwiftUIChat/Pods/StreamChat/Sources/StreamChat/Models/ChannelType.swift -------------------------------------------------------------------------------- /SwiftUIChat/Pods/StreamChat/Sources/StreamChat/Models/CurrentUser.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui-example/HEAD/SwiftUIChat/Pods/StreamChat/Sources/StreamChat/Models/CurrentUser.swift -------------------------------------------------------------------------------- /SwiftUIChat/Pods/StreamChat/Sources/StreamChat/Models/Device.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui-example/HEAD/SwiftUIChat/Pods/StreamChat/Sources/StreamChat/Models/Device.swift -------------------------------------------------------------------------------- /SwiftUIChat/Pods/StreamChat/Sources/StreamChat/Models/ExtraData.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui-example/HEAD/SwiftUIChat/Pods/StreamChat/Sources/StreamChat/Models/ExtraData.swift -------------------------------------------------------------------------------- /SwiftUIChat/Pods/StreamChat/Sources/StreamChat/Models/Member.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui-example/HEAD/SwiftUIChat/Pods/StreamChat/Sources/StreamChat/Models/Member.swift -------------------------------------------------------------------------------- /SwiftUIChat/Pods/StreamChat/Sources/StreamChat/Models/Message.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui-example/HEAD/SwiftUIChat/Pods/StreamChat/Sources/StreamChat/Models/Message.swift -------------------------------------------------------------------------------- /SwiftUIChat/Pods/StreamChat/Sources/StreamChat/Models/MessageReaction.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui-example/HEAD/SwiftUIChat/Pods/StreamChat/Sources/StreamChat/Models/MessageReaction.swift -------------------------------------------------------------------------------- /SwiftUIChat/Pods/StreamChat/Sources/StreamChat/Models/MessageReactionType.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui-example/HEAD/SwiftUIChat/Pods/StreamChat/Sources/StreamChat/Models/MessageReactionType.swift -------------------------------------------------------------------------------- /SwiftUIChat/Pods/StreamChat/Sources/StreamChat/Models/UnreadCount.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui-example/HEAD/SwiftUIChat/Pods/StreamChat/Sources/StreamChat/Models/UnreadCount.swift -------------------------------------------------------------------------------- /SwiftUIChat/Pods/StreamChat/Sources/StreamChat/Models/User+SwiftUI.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui-example/HEAD/SwiftUIChat/Pods/StreamChat/Sources/StreamChat/Models/User+SwiftUI.swift -------------------------------------------------------------------------------- /SwiftUIChat/Pods/StreamChat/Sources/StreamChat/Models/User.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui-example/HEAD/SwiftUIChat/Pods/StreamChat/Sources/StreamChat/Models/User.swift -------------------------------------------------------------------------------- /SwiftUIChat/Pods/StreamChat/Sources/StreamChat/Query/ChannelListQuery.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui-example/HEAD/SwiftUIChat/Pods/StreamChat/Sources/StreamChat/Query/ChannelListQuery.swift -------------------------------------------------------------------------------- /SwiftUIChat/Pods/StreamChat/Sources/StreamChat/Query/ChannelMemberListQuery.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui-example/HEAD/SwiftUIChat/Pods/StreamChat/Sources/StreamChat/Query/ChannelMemberListQuery.swift -------------------------------------------------------------------------------- /SwiftUIChat/Pods/StreamChat/Sources/StreamChat/Query/ChannelQuery.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui-example/HEAD/SwiftUIChat/Pods/StreamChat/Sources/StreamChat/Query/ChannelQuery.swift -------------------------------------------------------------------------------- /SwiftUIChat/Pods/StreamChat/Sources/StreamChat/Query/Filter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui-example/HEAD/SwiftUIChat/Pods/StreamChat/Sources/StreamChat/Query/Filter.swift -------------------------------------------------------------------------------- /SwiftUIChat/Pods/StreamChat/Sources/StreamChat/Query/Pagination.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui-example/HEAD/SwiftUIChat/Pods/StreamChat/Sources/StreamChat/Query/Pagination.swift -------------------------------------------------------------------------------- /SwiftUIChat/Pods/StreamChat/Sources/StreamChat/Query/QueryOptions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui-example/HEAD/SwiftUIChat/Pods/StreamChat/Sources/StreamChat/Query/QueryOptions.swift -------------------------------------------------------------------------------- /SwiftUIChat/Pods/StreamChat/Sources/StreamChat/Query/Sorting/ChannelListSortingKey.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui-example/HEAD/SwiftUIChat/Pods/StreamChat/Sources/StreamChat/Query/Sorting/ChannelListSortingKey.swift -------------------------------------------------------------------------------- /SwiftUIChat/Pods/StreamChat/Sources/StreamChat/Query/Sorting/ChannelMemberListSortingKey.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui-example/HEAD/SwiftUIChat/Pods/StreamChat/Sources/StreamChat/Query/Sorting/ChannelMemberListSortingKey.swift -------------------------------------------------------------------------------- /SwiftUIChat/Pods/StreamChat/Sources/StreamChat/Query/Sorting/Sorting.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui-example/HEAD/SwiftUIChat/Pods/StreamChat/Sources/StreamChat/Query/Sorting/Sorting.swift -------------------------------------------------------------------------------- /SwiftUIChat/Pods/StreamChat/Sources/StreamChat/Query/Sorting/UserListSortingKey.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui-example/HEAD/SwiftUIChat/Pods/StreamChat/Sources/StreamChat/Query/Sorting/UserListSortingKey.swift -------------------------------------------------------------------------------- /SwiftUIChat/Pods/StreamChat/Sources/StreamChat/Query/UserListQuery.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui-example/HEAD/SwiftUIChat/Pods/StreamChat/Sources/StreamChat/Query/UserListQuery.swift -------------------------------------------------------------------------------- /SwiftUIChat/Pods/StreamChat/Sources/StreamChat/Utils/Atomic.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui-example/HEAD/SwiftUIChat/Pods/StreamChat/Sources/StreamChat/Utils/Atomic.swift -------------------------------------------------------------------------------- /SwiftUIChat/Pods/StreamChat/Sources/StreamChat/Utils/Bundle+Extensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui-example/HEAD/SwiftUIChat/Pods/StreamChat/Sources/StreamChat/Utils/Bundle+Extensions.swift -------------------------------------------------------------------------------- /SwiftUIChat/Pods/StreamChat/Sources/StreamChat/Utils/Cached.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui-example/HEAD/SwiftUIChat/Pods/StreamChat/Sources/StreamChat/Utils/Cached.swift -------------------------------------------------------------------------------- /SwiftUIChat/Pods/StreamChat/Sources/StreamChat/Utils/Codable+Extensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui-example/HEAD/SwiftUIChat/Pods/StreamChat/Sources/StreamChat/Utils/Codable+Extensions.swift -------------------------------------------------------------------------------- /SwiftUIChat/Pods/StreamChat/Sources/StreamChat/Utils/Data+Gzip.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui-example/HEAD/SwiftUIChat/Pods/StreamChat/Sources/StreamChat/Utils/Data+Gzip.swift -------------------------------------------------------------------------------- /SwiftUIChat/Pods/StreamChat/Sources/StreamChat/Utils/Database/NSManagedObject+Extensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui-example/HEAD/SwiftUIChat/Pods/StreamChat/Sources/StreamChat/Utils/Database/NSManagedObject+Extensions.swift -------------------------------------------------------------------------------- /SwiftUIChat/Pods/StreamChat/Sources/StreamChat/Utils/Dictionary+Extensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui-example/HEAD/SwiftUIChat/Pods/StreamChat/Sources/StreamChat/Utils/Dictionary+Extensions.swift -------------------------------------------------------------------------------- /SwiftUIChat/Pods/StreamChat/Sources/StreamChat/Utils/InternetConnection/Error+InternetNotAvailable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui-example/HEAD/SwiftUIChat/Pods/StreamChat/Sources/StreamChat/Utils/InternetConnection/Error+InternetNotAvailable.swift -------------------------------------------------------------------------------- /SwiftUIChat/Pods/StreamChat/Sources/StreamChat/Utils/InternetConnection/InternetConnection.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui-example/HEAD/SwiftUIChat/Pods/StreamChat/Sources/StreamChat/Utils/InternetConnection/InternetConnection.swift -------------------------------------------------------------------------------- /SwiftUIChat/Pods/StreamChat/Sources/StreamChat/Utils/InternetConnection/Reachability_Vendor.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui-example/HEAD/SwiftUIChat/Pods/StreamChat/Sources/StreamChat/Utils/InternetConnection/Reachability_Vendor.swift -------------------------------------------------------------------------------- /SwiftUIChat/Pods/StreamChat/Sources/StreamChat/Utils/LazyCachedMapCollection.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui-example/HEAD/SwiftUIChat/Pods/StreamChat/Sources/StreamChat/Utils/LazyCachedMapCollection.swift -------------------------------------------------------------------------------- /SwiftUIChat/Pods/StreamChat/Sources/StreamChat/Utils/Logger/Destination/BaseLogDestination.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui-example/HEAD/SwiftUIChat/Pods/StreamChat/Sources/StreamChat/Utils/Logger/Destination/BaseLogDestination.swift -------------------------------------------------------------------------------- /SwiftUIChat/Pods/StreamChat/Sources/StreamChat/Utils/Logger/Destination/ConsoleLogDestination.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui-example/HEAD/SwiftUIChat/Pods/StreamChat/Sources/StreamChat/Utils/Logger/Destination/ConsoleLogDestination.swift -------------------------------------------------------------------------------- /SwiftUIChat/Pods/StreamChat/Sources/StreamChat/Utils/Logger/Destination/LogDestination.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui-example/HEAD/SwiftUIChat/Pods/StreamChat/Sources/StreamChat/Utils/Logger/Destination/LogDestination.swift -------------------------------------------------------------------------------- /SwiftUIChat/Pods/StreamChat/Sources/StreamChat/Utils/Logger/Formatter/LogFormatter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui-example/HEAD/SwiftUIChat/Pods/StreamChat/Sources/StreamChat/Utils/Logger/Formatter/LogFormatter.swift -------------------------------------------------------------------------------- /SwiftUIChat/Pods/StreamChat/Sources/StreamChat/Utils/Logger/Formatter/PrefixLogFormatter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui-example/HEAD/SwiftUIChat/Pods/StreamChat/Sources/StreamChat/Utils/Logger/Formatter/PrefixLogFormatter.swift -------------------------------------------------------------------------------- /SwiftUIChat/Pods/StreamChat/Sources/StreamChat/Utils/Logger/Logger.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui-example/HEAD/SwiftUIChat/Pods/StreamChat/Sources/StreamChat/Utils/Logger/Logger.swift -------------------------------------------------------------------------------- /SwiftUIChat/Pods/StreamChat/Sources/StreamChat/Utils/Logger/StringInterpolation+Extenstions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui-example/HEAD/SwiftUIChat/Pods/StreamChat/Sources/StreamChat/Utils/Logger/StringInterpolation+Extenstions.swift -------------------------------------------------------------------------------- /SwiftUIChat/Pods/StreamChat/Sources/StreamChat/Utils/MainQueue+Synchronous.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui-example/HEAD/SwiftUIChat/Pods/StreamChat/Sources/StreamChat/Utils/MainQueue+Synchronous.swift -------------------------------------------------------------------------------- /SwiftUIChat/Pods/StreamChat/Sources/StreamChat/Utils/MulticastDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui-example/HEAD/SwiftUIChat/Pods/StreamChat/Sources/StreamChat/Utils/MulticastDelegate.swift -------------------------------------------------------------------------------- /SwiftUIChat/Pods/StreamChat/Sources/StreamChat/Utils/MultipartFormData.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui-example/HEAD/SwiftUIChat/Pods/StreamChat/Sources/StreamChat/Utils/MultipartFormData.swift -------------------------------------------------------------------------------- /SwiftUIChat/Pods/StreamChat/Sources/StreamChat/Utils/OptionSet+Extensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui-example/HEAD/SwiftUIChat/Pods/StreamChat/Sources/StreamChat/Utils/OptionSet+Extensions.swift -------------------------------------------------------------------------------- /SwiftUIChat/Pods/StreamChat/Sources/StreamChat/Utils/OptionalDecodable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui-example/HEAD/SwiftUIChat/Pods/StreamChat/Sources/StreamChat/Utils/OptionalDecodable.swift -------------------------------------------------------------------------------- /SwiftUIChat/Pods/StreamChat/Sources/StreamChat/Utils/Publisher+Extensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui-example/HEAD/SwiftUIChat/Pods/StreamChat/Sources/StreamChat/Utils/Publisher+Extensions.swift -------------------------------------------------------------------------------- /SwiftUIChat/Pods/StreamChat/Sources/StreamChat/Utils/Result+Extensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui-example/HEAD/SwiftUIChat/Pods/StreamChat/Sources/StreamChat/Utils/Result+Extensions.swift -------------------------------------------------------------------------------- /SwiftUIChat/Pods/StreamChat/Sources/StreamChat/Utils/SystemEnvironment+Version.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui-example/HEAD/SwiftUIChat/Pods/StreamChat/Sources/StreamChat/Utils/SystemEnvironment+Version.swift -------------------------------------------------------------------------------- /SwiftUIChat/Pods/StreamChat/Sources/StreamChat/Utils/SystemEnvironment.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui-example/HEAD/SwiftUIChat/Pods/StreamChat/Sources/StreamChat/Utils/SystemEnvironment.swift -------------------------------------------------------------------------------- /SwiftUIChat/Pods/StreamChat/Sources/StreamChat/Utils/Timers.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui-example/HEAD/SwiftUIChat/Pods/StreamChat/Sources/StreamChat/Utils/Timers.swift -------------------------------------------------------------------------------- /SwiftUIChat/Pods/StreamChat/Sources/StreamChat/Utils/UniqueId.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui-example/HEAD/SwiftUIChat/Pods/StreamChat/Sources/StreamChat/Utils/UniqueId.swift -------------------------------------------------------------------------------- /SwiftUIChat/Pods/StreamChat/Sources/StreamChat/WebSocketClient/ConnectionStatus.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui-example/HEAD/SwiftUIChat/Pods/StreamChat/Sources/StreamChat/WebSocketClient/ConnectionStatus.swift -------------------------------------------------------------------------------- /SwiftUIChat/Pods/StreamChat/Sources/StreamChat/WebSocketClient/Engine/StarscreamWebSocketEngine.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui-example/HEAD/SwiftUIChat/Pods/StreamChat/Sources/StreamChat/WebSocketClient/Engine/StarscreamWebSocketEngine.swift -------------------------------------------------------------------------------- /SwiftUIChat/Pods/StreamChat/Sources/StreamChat/WebSocketClient/Engine/URLSessionWebSocketEngine.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui-example/HEAD/SwiftUIChat/Pods/StreamChat/Sources/StreamChat/WebSocketClient/Engine/URLSessionWebSocketEngine.swift -------------------------------------------------------------------------------- /SwiftUIChat/Pods/StreamChat/Sources/StreamChat/WebSocketClient/Engine/WebSocketEngine.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui-example/HEAD/SwiftUIChat/Pods/StreamChat/Sources/StreamChat/WebSocketClient/Engine/WebSocketEngine.swift -------------------------------------------------------------------------------- /SwiftUIChat/Pods/StreamChat/Sources/StreamChat/WebSocketClient/EventMiddlewares/ChannelMemberTypingStateUpdaterMiddleware.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui-example/HEAD/SwiftUIChat/Pods/StreamChat/Sources/StreamChat/WebSocketClient/EventMiddlewares/ChannelMemberTypingStateUpdaterMiddleware.swift -------------------------------------------------------------------------------- /SwiftUIChat/Pods/StreamChat/Sources/StreamChat/WebSocketClient/EventMiddlewares/ChannelReadUpdaterMiddleware.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui-example/HEAD/SwiftUIChat/Pods/StreamChat/Sources/StreamChat/WebSocketClient/EventMiddlewares/ChannelReadUpdaterMiddleware.swift -------------------------------------------------------------------------------- /SwiftUIChat/Pods/StreamChat/Sources/StreamChat/WebSocketClient/EventMiddlewares/EventDataProcessorMiddleware.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui-example/HEAD/SwiftUIChat/Pods/StreamChat/Sources/StreamChat/WebSocketClient/EventMiddlewares/EventDataProcessorMiddleware.swift -------------------------------------------------------------------------------- /SwiftUIChat/Pods/StreamChat/Sources/StreamChat/WebSocketClient/EventMiddlewares/EventMiddleware.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui-example/HEAD/SwiftUIChat/Pods/StreamChat/Sources/StreamChat/WebSocketClient/EventMiddlewares/EventMiddleware.swift -------------------------------------------------------------------------------- /SwiftUIChat/Pods/StreamChat/Sources/StreamChat/WebSocketClient/EventMiddlewares/MessageReactionsMiddleware.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui-example/HEAD/SwiftUIChat/Pods/StreamChat/Sources/StreamChat/WebSocketClient/EventMiddlewares/MessageReactionsMiddleware.swift -------------------------------------------------------------------------------- /SwiftUIChat/Pods/StreamChat/Sources/StreamChat/WebSocketClient/EventMiddlewares/TypingStartCleanupMiddleware.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui-example/HEAD/SwiftUIChat/Pods/StreamChat/Sources/StreamChat/WebSocketClient/EventMiddlewares/TypingStartCleanupMiddleware.swift -------------------------------------------------------------------------------- /SwiftUIChat/Pods/StreamChat/Sources/StreamChat/WebSocketClient/Events/ChannelEvents.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui-example/HEAD/SwiftUIChat/Pods/StreamChat/Sources/StreamChat/WebSocketClient/Events/ChannelEvents.swift -------------------------------------------------------------------------------- /SwiftUIChat/Pods/StreamChat/Sources/StreamChat/WebSocketClient/Events/ConnectionEvents.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui-example/HEAD/SwiftUIChat/Pods/StreamChat/Sources/StreamChat/WebSocketClient/Events/ConnectionEvents.swift -------------------------------------------------------------------------------- /SwiftUIChat/Pods/StreamChat/Sources/StreamChat/WebSocketClient/Events/Event.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui-example/HEAD/SwiftUIChat/Pods/StreamChat/Sources/StreamChat/WebSocketClient/Events/Event.swift -------------------------------------------------------------------------------- /SwiftUIChat/Pods/StreamChat/Sources/StreamChat/WebSocketClient/Events/EventDecoder.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui-example/HEAD/SwiftUIChat/Pods/StreamChat/Sources/StreamChat/WebSocketClient/Events/EventDecoder.swift -------------------------------------------------------------------------------- /SwiftUIChat/Pods/StreamChat/Sources/StreamChat/WebSocketClient/Events/EventPayload.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui-example/HEAD/SwiftUIChat/Pods/StreamChat/Sources/StreamChat/WebSocketClient/Events/EventPayload.swift -------------------------------------------------------------------------------- /SwiftUIChat/Pods/StreamChat/Sources/StreamChat/WebSocketClient/Events/EventType.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui-example/HEAD/SwiftUIChat/Pods/StreamChat/Sources/StreamChat/WebSocketClient/Events/EventType.swift -------------------------------------------------------------------------------- /SwiftUIChat/Pods/StreamChat/Sources/StreamChat/WebSocketClient/Events/MemberEvents.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui-example/HEAD/SwiftUIChat/Pods/StreamChat/Sources/StreamChat/WebSocketClient/Events/MemberEvents.swift -------------------------------------------------------------------------------- /SwiftUIChat/Pods/StreamChat/Sources/StreamChat/WebSocketClient/Events/MessageEvents.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui-example/HEAD/SwiftUIChat/Pods/StreamChat/Sources/StreamChat/WebSocketClient/Events/MessageEvents.swift -------------------------------------------------------------------------------- /SwiftUIChat/Pods/StreamChat/Sources/StreamChat/WebSocketClient/Events/NotificationEvents.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui-example/HEAD/SwiftUIChat/Pods/StreamChat/Sources/StreamChat/WebSocketClient/Events/NotificationEvents.swift -------------------------------------------------------------------------------- /SwiftUIChat/Pods/StreamChat/Sources/StreamChat/WebSocketClient/Events/ReactionEvents.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui-example/HEAD/SwiftUIChat/Pods/StreamChat/Sources/StreamChat/WebSocketClient/Events/ReactionEvents.swift -------------------------------------------------------------------------------- /SwiftUIChat/Pods/StreamChat/Sources/StreamChat/WebSocketClient/Events/TypingEvent.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui-example/HEAD/SwiftUIChat/Pods/StreamChat/Sources/StreamChat/WebSocketClient/Events/TypingEvent.swift -------------------------------------------------------------------------------- /SwiftUIChat/Pods/StreamChat/Sources/StreamChat/WebSocketClient/Events/UserEvents.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui-example/HEAD/SwiftUIChat/Pods/StreamChat/Sources/StreamChat/WebSocketClient/Events/UserEvents.swift -------------------------------------------------------------------------------- /SwiftUIChat/Pods/StreamChat/Sources/StreamChat/WebSocketClient/WebSocketClient.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui-example/HEAD/SwiftUIChat/Pods/StreamChat/Sources/StreamChat/WebSocketClient/WebSocketClient.swift -------------------------------------------------------------------------------- /SwiftUIChat/Pods/StreamChat/Sources/StreamChat/WebSocketClient/WebSocketConnectPayload.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui-example/HEAD/SwiftUIChat/Pods/StreamChat/Sources/StreamChat/WebSocketClient/WebSocketConnectPayload.swift -------------------------------------------------------------------------------- /SwiftUIChat/Pods/StreamChat/Sources/StreamChat/WebSocketClient/WebSocketPingController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui-example/HEAD/SwiftUIChat/Pods/StreamChat/Sources/StreamChat/WebSocketClient/WebSocketPingController.swift -------------------------------------------------------------------------------- /SwiftUIChat/Pods/StreamChat/Sources/StreamChat/WebSocketClient/WebSocketReconnectionStrategy.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui-example/HEAD/SwiftUIChat/Pods/StreamChat/Sources/StreamChat/WebSocketClient/WebSocketReconnectionStrategy.swift -------------------------------------------------------------------------------- /SwiftUIChat/Pods/StreamChat/Sources/StreamChat/Workers/Background/AttachmentUploader.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui-example/HEAD/SwiftUIChat/Pods/StreamChat/Sources/StreamChat/Workers/Background/AttachmentUploader.swift -------------------------------------------------------------------------------- /SwiftUIChat/Pods/StreamChat/Sources/StreamChat/Workers/Background/ChannelWatchStateUpdater.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui-example/HEAD/SwiftUIChat/Pods/StreamChat/Sources/StreamChat/Workers/Background/ChannelWatchStateUpdater.swift -------------------------------------------------------------------------------- /SwiftUIChat/Pods/StreamChat/Sources/StreamChat/Workers/Background/MessageEditor.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui-example/HEAD/SwiftUIChat/Pods/StreamChat/Sources/StreamChat/Workers/Background/MessageEditor.swift -------------------------------------------------------------------------------- /SwiftUIChat/Pods/StreamChat/Sources/StreamChat/Workers/Background/MessageSender.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui-example/HEAD/SwiftUIChat/Pods/StreamChat/Sources/StreamChat/Workers/Background/MessageSender.swift -------------------------------------------------------------------------------- /SwiftUIChat/Pods/StreamChat/Sources/StreamChat/Workers/Background/MissingEventsPublisher.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui-example/HEAD/SwiftUIChat/Pods/StreamChat/Sources/StreamChat/Workers/Background/MissingEventsPublisher.swift -------------------------------------------------------------------------------- /SwiftUIChat/Pods/StreamChat/Sources/StreamChat/Workers/Background/NewChannelQueryUpdater.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui-example/HEAD/SwiftUIChat/Pods/StreamChat/Sources/StreamChat/Workers/Background/NewChannelQueryUpdater.swift -------------------------------------------------------------------------------- /SwiftUIChat/Pods/StreamChat/Sources/StreamChat/Workers/Background/NewUserQueryUpdater.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui-example/HEAD/SwiftUIChat/Pods/StreamChat/Sources/StreamChat/Workers/Background/NewUserQueryUpdater.swift -------------------------------------------------------------------------------- /SwiftUIChat/Pods/StreamChat/Sources/StreamChat/Workers/ChannelListUpdater.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui-example/HEAD/SwiftUIChat/Pods/StreamChat/Sources/StreamChat/Workers/ChannelListUpdater.swift -------------------------------------------------------------------------------- /SwiftUIChat/Pods/StreamChat/Sources/StreamChat/Workers/ChannelMemberListUpdater.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui-example/HEAD/SwiftUIChat/Pods/StreamChat/Sources/StreamChat/Workers/ChannelMemberListUpdater.swift -------------------------------------------------------------------------------- /SwiftUIChat/Pods/StreamChat/Sources/StreamChat/Workers/ChannelMemberUpdater.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui-example/HEAD/SwiftUIChat/Pods/StreamChat/Sources/StreamChat/Workers/ChannelMemberUpdater.swift -------------------------------------------------------------------------------- /SwiftUIChat/Pods/StreamChat/Sources/StreamChat/Workers/ChannelUpdater.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui-example/HEAD/SwiftUIChat/Pods/StreamChat/Sources/StreamChat/Workers/ChannelUpdater.swift -------------------------------------------------------------------------------- /SwiftUIChat/Pods/StreamChat/Sources/StreamChat/Workers/ChatClientUpdater.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui-example/HEAD/SwiftUIChat/Pods/StreamChat/Sources/StreamChat/Workers/ChatClientUpdater.swift -------------------------------------------------------------------------------- /SwiftUIChat/Pods/StreamChat/Sources/StreamChat/Workers/CurrentUserUpdater.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui-example/HEAD/SwiftUIChat/Pods/StreamChat/Sources/StreamChat/Workers/CurrentUserUpdater.swift -------------------------------------------------------------------------------- /SwiftUIChat/Pods/StreamChat/Sources/StreamChat/Workers/EventNotificationCenter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui-example/HEAD/SwiftUIChat/Pods/StreamChat/Sources/StreamChat/Workers/EventNotificationCenter.swift -------------------------------------------------------------------------------- /SwiftUIChat/Pods/StreamChat/Sources/StreamChat/Workers/EventObservers/EventObserver.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui-example/HEAD/SwiftUIChat/Pods/StreamChat/Sources/StreamChat/Workers/EventObservers/EventObserver.swift -------------------------------------------------------------------------------- /SwiftUIChat/Pods/StreamChat/Sources/StreamChat/Workers/EventObservers/MemberEventObserver.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui-example/HEAD/SwiftUIChat/Pods/StreamChat/Sources/StreamChat/Workers/EventObservers/MemberEventObserver.swift -------------------------------------------------------------------------------- /SwiftUIChat/Pods/StreamChat/Sources/StreamChat/Workers/EventObservers/TypingEventObserver.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui-example/HEAD/SwiftUIChat/Pods/StreamChat/Sources/StreamChat/Workers/EventObservers/TypingEventObserver.swift -------------------------------------------------------------------------------- /SwiftUIChat/Pods/StreamChat/Sources/StreamChat/Workers/EventSender.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui-example/HEAD/SwiftUIChat/Pods/StreamChat/Sources/StreamChat/Workers/EventSender.swift -------------------------------------------------------------------------------- /SwiftUIChat/Pods/StreamChat/Sources/StreamChat/Workers/MessageUpdater.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui-example/HEAD/SwiftUIChat/Pods/StreamChat/Sources/StreamChat/Workers/MessageUpdater.swift -------------------------------------------------------------------------------- /SwiftUIChat/Pods/StreamChat/Sources/StreamChat/Workers/UserListUpdater.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui-example/HEAD/SwiftUIChat/Pods/StreamChat/Sources/StreamChat/Workers/UserListUpdater.swift -------------------------------------------------------------------------------- /SwiftUIChat/Pods/StreamChat/Sources/StreamChat/Workers/UserUpdater.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui-example/HEAD/SwiftUIChat/Pods/StreamChat/Sources/StreamChat/Workers/UserUpdater.swift -------------------------------------------------------------------------------- /SwiftUIChat/Pods/StreamChat/Sources/StreamChat/Workers/Worker.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui-example/HEAD/SwiftUIChat/Pods/StreamChat/Sources/StreamChat/Workers/Worker.swift -------------------------------------------------------------------------------- /SwiftUIChat/Pods/Target Support Files/Pods-SwiftUIChat/Pods-SwiftUIChat-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui-example/HEAD/SwiftUIChat/Pods/Target Support Files/Pods-SwiftUIChat/Pods-SwiftUIChat-Info.plist -------------------------------------------------------------------------------- /SwiftUIChat/Pods/Target Support Files/Pods-SwiftUIChat/Pods-SwiftUIChat-acknowledgements.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui-example/HEAD/SwiftUIChat/Pods/Target Support Files/Pods-SwiftUIChat/Pods-SwiftUIChat-acknowledgements.markdown -------------------------------------------------------------------------------- /SwiftUIChat/Pods/Target Support Files/Pods-SwiftUIChat/Pods-SwiftUIChat-acknowledgements.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui-example/HEAD/SwiftUIChat/Pods/Target Support Files/Pods-SwiftUIChat/Pods-SwiftUIChat-acknowledgements.plist -------------------------------------------------------------------------------- /SwiftUIChat/Pods/Target Support Files/Pods-SwiftUIChat/Pods-SwiftUIChat-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui-example/HEAD/SwiftUIChat/Pods/Target Support Files/Pods-SwiftUIChat/Pods-SwiftUIChat-dummy.m -------------------------------------------------------------------------------- /SwiftUIChat/Pods/Target Support Files/Pods-SwiftUIChat/Pods-SwiftUIChat-frameworks-Debug-input-files.xcfilelist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui-example/HEAD/SwiftUIChat/Pods/Target Support Files/Pods-SwiftUIChat/Pods-SwiftUIChat-frameworks-Debug-input-files.xcfilelist -------------------------------------------------------------------------------- /SwiftUIChat/Pods/Target Support Files/Pods-SwiftUIChat/Pods-SwiftUIChat-frameworks-Debug-output-files.xcfilelist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui-example/HEAD/SwiftUIChat/Pods/Target Support Files/Pods-SwiftUIChat/Pods-SwiftUIChat-frameworks-Debug-output-files.xcfilelist -------------------------------------------------------------------------------- /SwiftUIChat/Pods/Target Support Files/Pods-SwiftUIChat/Pods-SwiftUIChat-frameworks-Release-input-files.xcfilelist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui-example/HEAD/SwiftUIChat/Pods/Target Support Files/Pods-SwiftUIChat/Pods-SwiftUIChat-frameworks-Release-input-files.xcfilelist -------------------------------------------------------------------------------- /SwiftUIChat/Pods/Target Support Files/Pods-SwiftUIChat/Pods-SwiftUIChat-frameworks-Release-output-files.xcfilelist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui-example/HEAD/SwiftUIChat/Pods/Target Support Files/Pods-SwiftUIChat/Pods-SwiftUIChat-frameworks-Release-output-files.xcfilelist -------------------------------------------------------------------------------- /SwiftUIChat/Pods/Target Support Files/Pods-SwiftUIChat/Pods-SwiftUIChat-frameworks.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui-example/HEAD/SwiftUIChat/Pods/Target Support Files/Pods-SwiftUIChat/Pods-SwiftUIChat-frameworks.sh -------------------------------------------------------------------------------- /SwiftUIChat/Pods/Target Support Files/Pods-SwiftUIChat/Pods-SwiftUIChat-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui-example/HEAD/SwiftUIChat/Pods/Target Support Files/Pods-SwiftUIChat/Pods-SwiftUIChat-umbrella.h -------------------------------------------------------------------------------- /SwiftUIChat/Pods/Target Support Files/Pods-SwiftUIChat/Pods-SwiftUIChat.debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui-example/HEAD/SwiftUIChat/Pods/Target Support Files/Pods-SwiftUIChat/Pods-SwiftUIChat.debug.xcconfig -------------------------------------------------------------------------------- /SwiftUIChat/Pods/Target Support Files/Pods-SwiftUIChat/Pods-SwiftUIChat.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui-example/HEAD/SwiftUIChat/Pods/Target Support Files/Pods-SwiftUIChat/Pods-SwiftUIChat.modulemap -------------------------------------------------------------------------------- /SwiftUIChat/Pods/Target Support Files/Pods-SwiftUIChat/Pods-SwiftUIChat.release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui-example/HEAD/SwiftUIChat/Pods/Target Support Files/Pods-SwiftUIChat/Pods-SwiftUIChat.release.xcconfig -------------------------------------------------------------------------------- /SwiftUIChat/Pods/Target Support Files/Starscream/Starscream-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui-example/HEAD/SwiftUIChat/Pods/Target Support Files/Starscream/Starscream-Info.plist -------------------------------------------------------------------------------- /SwiftUIChat/Pods/Target Support Files/Starscream/Starscream-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui-example/HEAD/SwiftUIChat/Pods/Target Support Files/Starscream/Starscream-dummy.m -------------------------------------------------------------------------------- /SwiftUIChat/Pods/Target Support Files/Starscream/Starscream-prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui-example/HEAD/SwiftUIChat/Pods/Target Support Files/Starscream/Starscream-prefix.pch -------------------------------------------------------------------------------- /SwiftUIChat/Pods/Target Support Files/Starscream/Starscream-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui-example/HEAD/SwiftUIChat/Pods/Target Support Files/Starscream/Starscream-umbrella.h -------------------------------------------------------------------------------- /SwiftUIChat/Pods/Target Support Files/Starscream/Starscream.debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui-example/HEAD/SwiftUIChat/Pods/Target Support Files/Starscream/Starscream.debug.xcconfig -------------------------------------------------------------------------------- /SwiftUIChat/Pods/Target Support Files/Starscream/Starscream.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui-example/HEAD/SwiftUIChat/Pods/Target Support Files/Starscream/Starscream.modulemap -------------------------------------------------------------------------------- /SwiftUIChat/Pods/Target Support Files/Starscream/Starscream.release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui-example/HEAD/SwiftUIChat/Pods/Target Support Files/Starscream/Starscream.release.xcconfig -------------------------------------------------------------------------------- /SwiftUIChat/Pods/Target Support Files/StreamChat/ResourceBundle-StreamChat-StreamChat-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui-example/HEAD/SwiftUIChat/Pods/Target Support Files/StreamChat/ResourceBundle-StreamChat-StreamChat-Info.plist -------------------------------------------------------------------------------- /SwiftUIChat/Pods/Target Support Files/StreamChat/StreamChat-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui-example/HEAD/SwiftUIChat/Pods/Target Support Files/StreamChat/StreamChat-Info.plist -------------------------------------------------------------------------------- /SwiftUIChat/Pods/Target Support Files/StreamChat/StreamChat-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui-example/HEAD/SwiftUIChat/Pods/Target Support Files/StreamChat/StreamChat-dummy.m -------------------------------------------------------------------------------- /SwiftUIChat/Pods/Target Support Files/StreamChat/StreamChat-prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui-example/HEAD/SwiftUIChat/Pods/Target Support Files/StreamChat/StreamChat-prefix.pch -------------------------------------------------------------------------------- /SwiftUIChat/Pods/Target Support Files/StreamChat/StreamChat-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui-example/HEAD/SwiftUIChat/Pods/Target Support Files/StreamChat/StreamChat-umbrella.h -------------------------------------------------------------------------------- /SwiftUIChat/Pods/Target Support Files/StreamChat/StreamChat.debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui-example/HEAD/SwiftUIChat/Pods/Target Support Files/StreamChat/StreamChat.debug.xcconfig -------------------------------------------------------------------------------- /SwiftUIChat/Pods/Target Support Files/StreamChat/StreamChat.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui-example/HEAD/SwiftUIChat/Pods/Target Support Files/StreamChat/StreamChat.modulemap -------------------------------------------------------------------------------- /SwiftUIChat/Pods/Target Support Files/StreamChat/StreamChat.release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui-example/HEAD/SwiftUIChat/Pods/Target Support Files/StreamChat/StreamChat.release.xcconfig -------------------------------------------------------------------------------- /SwiftUIChat/SwiftUIChat.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui-example/HEAD/SwiftUIChat/SwiftUIChat.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /SwiftUIChat/SwiftUIChat.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui-example/HEAD/SwiftUIChat/SwiftUIChat.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /SwiftUIChat/SwiftUIChat.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui-example/HEAD/SwiftUIChat/SwiftUIChat.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /SwiftUIChat/SwiftUIChat.xcodeproj/project.xcworkspace/xcuserdata/cardoso.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui-example/HEAD/SwiftUIChat/SwiftUIChat.xcodeproj/project.xcworkspace/xcuserdata/cardoso.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /SwiftUIChat/SwiftUIChat.xcodeproj/xcuserdata/cardoso.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui-example/HEAD/SwiftUIChat/SwiftUIChat.xcodeproj/xcuserdata/cardoso.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /SwiftUIChat/SwiftUIChat.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui-example/HEAD/SwiftUIChat/SwiftUIChat.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /SwiftUIChat/SwiftUIChat.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui-example/HEAD/SwiftUIChat/SwiftUIChat.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /SwiftUIChat/SwiftUIChat.xcworkspace/xcuserdata/cardoso.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui-example/HEAD/SwiftUIChat/SwiftUIChat.xcworkspace/xcuserdata/cardoso.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /SwiftUIChat/SwiftUIChat.xcworkspace/xcuserdata/cardoso.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui-example/HEAD/SwiftUIChat/SwiftUIChat.xcworkspace/xcuserdata/cardoso.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist -------------------------------------------------------------------------------- /SwiftUIChat/SwiftUIChat/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui-example/HEAD/SwiftUIChat/SwiftUIChat/AppDelegate.swift -------------------------------------------------------------------------------- /SwiftUIChat/SwiftUIChat/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui-example/HEAD/SwiftUIChat/SwiftUIChat/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /SwiftUIChat/SwiftUIChat/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui-example/HEAD/SwiftUIChat/SwiftUIChat/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /SwiftUIChat/SwiftUIChat/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui-example/HEAD/SwiftUIChat/SwiftUIChat/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /SwiftUIChat/SwiftUIChat/ChannelsView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui-example/HEAD/SwiftUIChat/SwiftUIChat/ChannelsView.swift -------------------------------------------------------------------------------- /SwiftUIChat/SwiftUIChat/ChatClient+Shared.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui-example/HEAD/SwiftUIChat/SwiftUIChat/ChatClient+Shared.swift -------------------------------------------------------------------------------- /SwiftUIChat/SwiftUIChat/ChatView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui-example/HEAD/SwiftUIChat/SwiftUIChat/ChatView.swift -------------------------------------------------------------------------------- /SwiftUIChat/SwiftUIChat/ContentView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui-example/HEAD/SwiftUIChat/SwiftUIChat/ContentView.swift -------------------------------------------------------------------------------- /SwiftUIChat/SwiftUIChat/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui-example/HEAD/SwiftUIChat/SwiftUIChat/Info.plist -------------------------------------------------------------------------------- /SwiftUIChat/SwiftUIChat/LoginView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui-example/HEAD/SwiftUIChat/SwiftUIChat/LoginView.swift -------------------------------------------------------------------------------- /SwiftUIChat/SwiftUIChat/MessageView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui-example/HEAD/SwiftUIChat/SwiftUIChat/MessageView.swift -------------------------------------------------------------------------------- /SwiftUIChat/SwiftUIChat/Preview Content/Preview Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui-example/HEAD/SwiftUIChat/SwiftUIChat/Preview Content/Preview Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /SwiftUIChat/SwiftUIChat/SceneDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui-example/HEAD/SwiftUIChat/SwiftUIChat/SceneDelegate.swift -------------------------------------------------------------------------------- /SwiftUIChat/SwiftUIChat/SwiftUIChat.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui-example/HEAD/SwiftUIChat/SwiftUIChat/SwiftUIChat.entitlements --------------------------------------------------------------------------------