-
Notifications
You must be signed in to change notification settings - Fork 30
1.35.0 Release #991
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. Weβll occasionally send you account related emails.
Already on GitHub? Sign in to your account
1.35.0 Release #991
Conversation
# Conflicts: # CHANGELOG.md
Co-authored-by: Alexey Alter-Pesotskiy <[email protected]>
StreamVideoSwiftUI XCSize
|
|
Build for regression testing β289 has been uploaded to TestFlight π |
838987b to
f130095
Compare
|
Build for regression testing β290 has been uploaded to TestFlight π |
This reverts commit 9c85357.
# Conflicts: # CHANGELOG.md
f130095 to
207e31c
Compare
Public Interface+ public final class CallModerationWarningEvent: @unchecked Sendable, Event, Codable, JSONEncodable, Hashable, WSCallEvent
+
+ public var callCid: String
+ public var createdAt: Date
+ public var custom: [String: RawJSON]
+ public var message: String
+ public var type: String
+ public var userId: String
+
+
+ public init(callCid: String,createdAt: Date,custom: [String: RawJSON],message: String,userId: String)
+
+
+ public static func ==(lhs: CallModerationWarningEvent,rhs: CallModerationWarningEvent)-> Bool
+ public func hash(into hasher: inout Hasher)
+
+
+ public enum CodingKeys: String, CodingKey, CaseIterable
+
+ case callCid = "call_cid"
+ case createdAt = "created_at"
+ case custom
+ case message
+ case type
+ case userId = "user_id"
+ public final class CallModerationBlurEvent: @unchecked Sendable, Event, Codable, JSONEncodable, Hashable, WSCallEvent
+
+ public var callCid: String
+ public var createdAt: Date
+ public var custom: [String: RawJSON]
+ public var type: String
+ public var userId: String
+
+
+ public init(callCid: String,createdAt: Date,custom: [String: RawJSON],userId: String)
+
+
+ public static func ==(lhs: CallModerationBlurEvent,rhs: CallModerationBlurEvent)-> Bool
+ public func hash(into hasher: inout Hasher)
+
+
+ public enum CodingKeys: String, CodingKey, CaseIterable
+
+ case callCid = "call_cid"
+ case createdAt = "created_at"
+ case custom
+ case type
+ case userId = "user_id"
public enum VideoEvent: Codable, Hashable
- case typeCallNotificationEvent(CallNotificationEvent)
+ case typeCallModerationBlurEvent(CallModerationBlurEvent)
- case typePermissionRequestEvent(PermissionRequestEvent)
+ case typeCallModerationWarningEvent(CallModerationWarningEvent)
- case typeUpdatedCallPermissionsEvent(UpdatedCallPermissionsEvent)
+ case typeCallNotificationEvent(CallNotificationEvent)
- case typeCallReactionEvent(CallReactionEvent)
+ case typePermissionRequestEvent(PermissionRequestEvent)
- case typeCallRecordingFailedEvent(CallRecordingFailedEvent)
+ case typeUpdatedCallPermissionsEvent(UpdatedCallPermissionsEvent)
- case typeCallRecordingReadyEvent(CallRecordingReadyEvent)
+ case typeCallReactionEvent(CallReactionEvent)
- case typeCallRecordingStartedEvent(CallRecordingStartedEvent)
+ case typeCallRecordingFailedEvent(CallRecordingFailedEvent)
- case typeCallRecordingStoppedEvent(CallRecordingStoppedEvent)
+ case typeCallRecordingReadyEvent(CallRecordingReadyEvent)
- case typeCallRejectedEvent(CallRejectedEvent)
+ case typeCallRecordingStartedEvent(CallRecordingStartedEvent)
- case typeCallRingEvent(CallRingEvent)
+ case typeCallRecordingStoppedEvent(CallRecordingStoppedEvent)
- case typeCallRtmpBroadcastFailedEvent(CallRtmpBroadcastFailedEvent)
+ case typeCallRejectedEvent(CallRejectedEvent)
- case typeCallRtmpBroadcastStartedEvent(CallRtmpBroadcastStartedEvent)
+ case typeCallRingEvent(CallRingEvent)
- case typeCallRtmpBroadcastStoppedEvent(CallRtmpBroadcastStoppedEvent)
+ case typeCallRtmpBroadcastFailedEvent(CallRtmpBroadcastFailedEvent)
- case typeCallSessionEndedEvent(CallSessionEndedEvent)
+ case typeCallRtmpBroadcastStartedEvent(CallRtmpBroadcastStartedEvent)
- case typeCallSessionParticipantCountsUpdatedEvent(CallSessionParticipantCountsUpdatedEvent)
+ case typeCallRtmpBroadcastStoppedEvent(CallRtmpBroadcastStoppedEvent)
- case typeCallSessionParticipantJoinedEvent(CallSessionParticipantJoinedEvent)
+ case typeCallSessionEndedEvent(CallSessionEndedEvent)
- case typeCallSessionParticipantLeftEvent(CallSessionParticipantLeftEvent)
+ case typeCallSessionParticipantCountsUpdatedEvent(CallSessionParticipantCountsUpdatedEvent)
- case typeCallSessionStartedEvent(CallSessionStartedEvent)
+ case typeCallSessionParticipantJoinedEvent(CallSessionParticipantJoinedEvent)
- case typeCallStatsReportReadyEvent(CallStatsReportReadyEvent)
+ case typeCallSessionParticipantLeftEvent(CallSessionParticipantLeftEvent)
- case typeCallTranscriptionFailedEvent(CallTranscriptionFailedEvent)
+ case typeCallSessionStartedEvent(CallSessionStartedEvent)
- case typeCallTranscriptionReadyEvent(CallTranscriptionReadyEvent)
+ case typeCallStatsReportReadyEvent(CallStatsReportReadyEvent)
- case typeCallTranscriptionStartedEvent(CallTranscriptionStartedEvent)
+ case typeCallTranscriptionFailedEvent(CallTranscriptionFailedEvent)
- case typeCallTranscriptionStoppedEvent(CallTranscriptionStoppedEvent)
+ case typeCallTranscriptionReadyEvent(CallTranscriptionReadyEvent)
- case typeUnblockedUserEvent(UnblockedUserEvent)
+ case typeCallTranscriptionStartedEvent(CallTranscriptionStartedEvent)
- case typeCallUpdatedEvent(CallUpdatedEvent)
+ case typeCallTranscriptionStoppedEvent(CallTranscriptionStoppedEvent)
- case typeCallUserFeedbackSubmittedEvent(CallUserFeedbackSubmittedEvent)
+ case typeUnblockedUserEvent(UnblockedUserEvent)
- case typeCallUserMutedEvent(CallUserMutedEvent)
+ case typeCallUpdatedEvent(CallUpdatedEvent)
- case typeConnectionErrorEvent(ConnectionErrorEvent)
+ case typeCallUserFeedbackSubmittedEvent(CallUserFeedbackSubmittedEvent)
- case typeConnectedEvent(ConnectedEvent)
+ case typeCallUserMutedEvent(CallUserMutedEvent)
- case typeCustomVideoEvent(CustomVideoEvent)
+ case typeConnectionErrorEvent(ConnectionErrorEvent)
- case typeHealthCheckEvent(HealthCheckEvent)
+ case typeConnectedEvent(ConnectedEvent)
- case typeUserUpdatedEvent(UserUpdatedEvent)
+ case typeCustomVideoEvent(CustomVideoEvent)
-
+ case typeHealthCheckEvent(HealthCheckEvent)
-
+ case typeUserUpdatedEvent(UserUpdatedEvent)
- public var type: String
+
- public var rawValue: Event
+
-
+ public var type: String
-
+ public var rawValue: Event
- public init(from decoder: Decoder)throws
+
-
+
-
+ public init(from decoder: Decoder)throws
- public func encode(to encoder: Encoder)throws
+
+
+ public func encode(to encoder: Encoder)throws |
|
Build for regression testing β291 has been uploaded to TestFlight π |
|
SDK Size
|
StreamVideo XCSize
|
|
/merge release |
|
Publication of the release has been launched π |



β Added
CallView. #987π Changed