From 85ffa211becc64904b1064a8037b1420abffa9c4 Mon Sep 17 00:00:00 2001 From: Martin Mitrevski Date: Fri, 3 Jan 2025 00:31:18 +0100 Subject: [PATCH 1/4] Added publish option id, updated header --- .../protobuf/sfu/models/models.pb.swift | 29 +++++++++++++++++++ 1 file changed, 29 insertions(+) diff --git a/Sources/StreamVideo/protobuf/sfu/models/models.pb.swift b/Sources/StreamVideo/protobuf/sfu/models/models.pb.swift index 669f407d0..8397de0b5 100644 --- a/Sources/StreamVideo/protobuf/sfu/models/models.pb.swift +++ b/Sources/StreamVideo/protobuf/sfu/models/models.pb.swift @@ -1081,9 +1081,22 @@ struct Stream_Video_Sfu_Models_TrackInfo { var muted: Bool = false + var codec: Stream_Video_Sfu_Models_Codec { + get {return _codec ?? Stream_Video_Sfu_Models_Codec()} + set {_codec = newValue} + } + /// Returns true if `codec` has been explicitly set. + var hasCodec: Bool {return self._codec != nil} + /// Clears the value of `codec`. Subsequent reads from it will return its default value. + mutating func clearCodec() {self._codec = nil} + + var publishOptionID: Int32 = 0 + var unknownFields = SwiftProtobuf.UnknownStorage() init() {} + + fileprivate var _codec: Stream_Video_Sfu_Models_Codec? = nil } struct Stream_Video_Sfu_Models_Error { @@ -2109,6 +2122,8 @@ extension Stream_Video_Sfu_Models_TrackInfo: SwiftProtobuf.Message, SwiftProtobu 8: .same(proto: "stereo"), 9: .same(proto: "red"), 10: .same(proto: "muted"), + 11: .same(proto: "codec"), + 12: .standard(proto: "publish_option_id"), ] mutating func decodeMessage(decoder: inout D) throws { @@ -2125,12 +2140,18 @@ extension Stream_Video_Sfu_Models_TrackInfo: SwiftProtobuf.Message, SwiftProtobu case 8: try { try decoder.decodeSingularBoolField(value: &self.stereo) }() case 9: try { try decoder.decodeSingularBoolField(value: &self.red) }() case 10: try { try decoder.decodeSingularBoolField(value: &self.muted) }() + case 11: try { try decoder.decodeSingularMessageField(value: &self._codec) }() + case 12: try { try decoder.decodeSingularInt32Field(value: &self.publishOptionID) }() default: break } } } func traverse(visitor: inout V) throws { + // The use of inline closures is to circumvent an issue where the compiler + // allocates stack space for every if/case branch local when no optimizations + // are enabled. https://github.com/apple/swift-protobuf/issues/1034 and + // https://github.com/apple/swift-protobuf/issues/1182 if !self.trackID.isEmpty { try visitor.visitSingularStringField(value: self.trackID, fieldNumber: 1) } @@ -2155,6 +2176,12 @@ extension Stream_Video_Sfu_Models_TrackInfo: SwiftProtobuf.Message, SwiftProtobu if self.muted != false { try visitor.visitSingularBoolField(value: self.muted, fieldNumber: 10) } + try { if let v = self._codec { + try visitor.visitSingularMessageField(value: v, fieldNumber: 11) + } }() + if self.publishOptionID != 0 { + try visitor.visitSingularInt32Field(value: self.publishOptionID, fieldNumber: 12) + } try unknownFields.traverse(visitor: &visitor) } @@ -2167,6 +2194,8 @@ extension Stream_Video_Sfu_Models_TrackInfo: SwiftProtobuf.Message, SwiftProtobu if lhs.stereo != rhs.stereo {return false} if lhs.red != rhs.red {return false} if lhs.muted != rhs.muted {return false} + if lhs._codec != rhs._codec {return false} + if lhs.publishOptionID != rhs.publishOptionID {return false} if lhs.unknownFields != rhs.unknownFields {return false} return true } From f2743622960d2db0910f11b9c2405e7dbcc774fe Mon Sep 17 00:00:00 2001 From: Martin Mitrevski Date: Fri, 3 Jan 2025 00:31:29 +0100 Subject: [PATCH 2/4] Added publish option id, updated header --- CallIntent/IntentHandler.swift | 2 +- DemoApp/Sources/AppDelegate.swift | 2 +- DemoApp/Sources/Components/AppEnvironment.swift | 2 +- DemoApp/Sources/Components/AppState.swift | 2 +- DemoApp/Sources/Components/AudioFilter/RobotVoiceFilter.swift | 2 +- .../Components/Authentication/AuthenticationProvider.swift | 2 +- DemoApp/Sources/Components/Chat/DemoChatAdapter.swift | 2 +- DemoApp/Sources/Components/Chat/DemoChatViewFactory.swift | 2 +- .../Sources/Components/Chat/DemoChatViewModel+Injection.swift | 2 +- DemoApp/Sources/Components/Chat/DemoChatViewModel.swift | 2 +- DemoApp/Sources/Components/CodeScanner/CodeScanner.swift | 2 +- DemoApp/Sources/Components/Deeplinks/DeeplinkAdapter.swift | 2 +- DemoApp/Sources/Components/DemoAppViewFactory.swift | 2 +- DemoApp/Sources/Components/Feedback/DemoFeedbackView.swift | 2 +- DemoApp/Sources/Components/MemoryLogDestination/LogQueue.swift | 2 +- .../Components/MemoryLogDestination/MemoryLogDestination.swift | 2 +- .../Components/MemoryLogDestination/MemoryLogViewer.swift | 2 +- DemoApp/Sources/Components/Reactions/ReactionsAdapter.swift | 2 +- DemoApp/Sources/Components/Router.swift | 2 +- DemoApp/Sources/Components/SessionTimer/SessionTimer.swift | 2 +- .../Components/Snapshot/LocalParticipantSnapshotViewModel.swift | 2 +- DemoApp/Sources/Components/Snapshot/SnapshotTrigger.swift | 2 +- DemoApp/Sources/Components/Storage/UnsecureRepository.swift | 2 +- DemoApp/Sources/Controls/CallButtonView.swift | 2 +- .../DemoMoreControls/DemoBackgroundEffectSelector.swift | 2 +- .../DemoMoreControls/DemoMoreControlListButtonView.swift | 2 +- .../Sources/Controls/DemoMoreControls/DemoReactionButton.swift | 2 +- DemoApp/Sources/Controls/DemoParticipantOptionsButton.swift | 2 +- DemoApp/Sources/DemoApp.swift | 2 +- DemoApp/Sources/Examples/Examples.swift | 2 +- DemoApp/Sources/Extensions/Call+Identifiable.swift | 2 +- .../Extensions/CallStateResponseFields+Identifiable.swift | 2 +- .../Extensions/CallViewModel+CallSettingsPublisher.swift | 2 +- DemoApp/Sources/Extensions/CallViewModel+Snapshot.swift | 2 +- DemoApp/Sources/Extensions/DemoApp+Sentry.swift | 2 +- .../Extensions/MicrophoneChecker+MicrophoneChecking.swift | 2 +- DemoApp/Sources/Extensions/String+Unique.swift | 2 +- DemoApp/Sources/Extensions/URL+Convenience.swift | 2 +- DemoApp/Sources/Extensions/User+Demo.swift | 2 +- DemoApp/Sources/Extensions/View+AlertWithTextField.swift | 2 +- DemoApp/Sources/Models/Reaction.swift | 2 +- DemoApp/Sources/Models/TokenResponse.swift | 2 +- DemoApp/Sources/Models/UserCredentials.swift | 2 +- DemoApp/Sources/Models/UserState.swift | 2 +- .../Sources/ViewModifiers/CallModifier/DemoCallModifier.swift | 2 +- .../ChangeEnvironmentViewModifier.swift | 2 +- DemoApp/Sources/ViewModifiers/DemoChatModifier.swift | 2 +- .../DragIndicatorViewModifier/DragIndicatorViewModifier.swift | 2 +- .../LongPressToFocusViewModifier.swift | 2 +- .../ModalNavigationBar/DemoModalNavigationBarViewModifier.swift | 2 +- .../MoreControls/DemoManualQualitySelectionButtonView.swift | 2 +- .../MoreControls/DemoMoreControlsViewModifier.swift | 2 +- .../MoreControls/DemoNoiseCancellationButtonView.swift | 2 +- .../ViewModifiers/MoreControls/DemoReconnectionButtonView.swift | 2 +- .../MoreControls/DemoTranscriptionButtonView.swift | 2 +- .../MoreControls/Extensions/View+PresentDemoMoreMenu.swift | 2 +- .../ThermalStateViewModifier/ThermalStateViewModifier.swift | 2 +- .../VideoCallParticipantModifier/DemoLocalViewModifier.swift | 2 +- .../DemoVideoCallParticipantModifier.swift | 2 +- DemoApp/Sources/Views/CallTopView/DemoCallTopView.swift | 2 +- .../Views/CallView/CallingView/DemoCallingViewModifier.swift | 2 +- .../Views/CallView/CallingView/DetailedCallingView.swift | 2 +- .../Sources/Views/CallView/CallingView/SimpleCallingView.swift | 2 +- DemoApp/Sources/Views/CallView/DemoCallContainerView.swift | 2 +- DemoApp/Sources/Views/CallView/DemoCallContentView.swift | 2 +- DemoApp/Sources/Views/CallView/DemoCallView.swift | 2 +- DemoApp/Sources/Views/CallView/DemoCallingTopView.swift | 2 +- DemoApp/Sources/Views/CallView/DemoCallsView.swift | 2 +- DemoApp/Sources/Views/CallView/DemoCallsViewModel.swift | 2 +- DemoApp/Sources/Views/CallView/DemoQRCodeScannerButton.swift | 2 +- DemoApp/Sources/Views/CallView/DemoSessionTimerView.swift | 2 +- DemoApp/Sources/Views/CallView/DemoSnapshotViewModel.swift | 2 +- DemoApp/Sources/Views/CallsView/CallsView.swift | 2 +- DemoApp/Sources/Views/CallsView/CallsViewModel.swift | 2 +- DemoApp/Sources/Views/CustomCallView.swift | 2 +- DemoApp/Sources/Views/JoinCallView.swift | 2 +- DemoApp/Sources/Views/LinkInfoView/LinkInfoView.swift | 2 +- DemoApp/Sources/Views/LoadingView/LoadingView.swift | 2 +- DemoApp/Sources/Views/Login/AddUserView.swift | 2 +- DemoApp/Sources/Views/Login/DebugMenu.swift | 2 +- DemoApp/Sources/Views/Login/GoogleHelper.swift | 2 +- DemoApp/Sources/Views/Login/LoginView.swift | 2 +- DemoApp/Sources/Views/Login/LoginViewModel.swift | 2 +- DemoApp/Sources/Views/Reactions/DemoReactionsOverlayView.swift | 2 +- DemoApp/Sources/Views/Reactions/ReactionIcon.swift | 2 +- DemoApp/Sources/Views/Reactions/ReactionOverlayView.swift | 2 +- DemoApp/Sources/Views/Reactions/ReactionsViewModifier.swift | 2 +- DemoApp/Sources/Views/ShareActivityView/ShareActivityView.swift | 2 +- DemoApp/Sources/Views/StatsView/DemoStatsAdapter.swift | 2 +- DemoApp/Sources/Views/StatsView/DemoStatsView.swift | 2 +- DemoAppUIKit/SceneDelegate.swift | 2 +- DemoAppUIKit/Sources/AppDelegate.swift | 2 +- DemoAppUIKit/Sources/CallViewHelper.swift | 2 +- DemoAppUIKit/Sources/HomeViewController.swift | 2 +- ScreenSharing/SampleHandler.swift | 2 +- Sources/StreamVideo/Call.swift | 2 +- .../AvailabilityPolicy/CallKitAlwaysAvailabilityPolicy.swift | 2 +- .../CallKit/AvailabilityPolicy/CallKitAvailabilityPolicy.swift | 2 +- .../AvailabilityPolicy/CallKitAvailabilityPolicyProtocol.swift | 2 +- .../CallKitRegionBasedAvailabilityPolicy.swift | 2 +- .../StreamVideo/CallKit/CallKitPushNotificationAdapter.swift | 2 +- Sources/StreamVideo/CallSettings/CallSettingsManager.swift | 2 +- Sources/StreamVideo/CallSettings/CameraManager.swift | 2 +- Sources/StreamVideo/CallSettings/MicrophoneManager.swift | 2 +- Sources/StreamVideo/CallSettings/SpeakerManager.swift | 2 +- Sources/StreamVideo/CallState.swift | 2 +- Sources/StreamVideo/Controllers/CallController.swift | 2 +- Sources/StreamVideo/Controllers/CallsController.swift | 2 +- Sources/StreamVideo/DependencyInjection/InjectedValues.swift | 2 +- .../DependencyInjection/InjectedValuesExtensions.swift | 2 +- Sources/StreamVideo/Errors/ErrorPayload.swift | 2 +- Sources/StreamVideo/Errors/Errors.swift | 2 +- Sources/StreamVideo/Generated/SystemEnvironment+Version.swift | 2 +- Sources/StreamVideo/HTTPClient/HTTPClient.swift | 2 +- Sources/StreamVideo/HTTPClient/HTTPConfig.swift | 2 +- Sources/StreamVideo/HTTPClient/HTTPUtils.swift | 2 +- Sources/StreamVideo/HTTPClient/InternetConnection.swift | 2 +- Sources/StreamVideo/Models/CallSettings.swift | 2 +- Sources/StreamVideo/Models/CallStatsReport.swift | 2 +- Sources/StreamVideo/Models/CallType.swift | 2 +- Sources/StreamVideo/Models/CallsQuery.swift | 2 +- Sources/StreamVideo/Models/ConnectOptions.swift | 2 +- Sources/StreamVideo/Models/ConnectionQuality.swift | 2 +- Sources/StreamVideo/Models/ConnectionState.swift | 2 +- Sources/StreamVideo/Models/CoordinatorModels.swift | 2 +- Sources/StreamVideo/Models/DeviceData.swift | 2 +- .../Models/Extensions/RejectCallRequest+Reason.swift | 2 +- .../Stream_Video_Sfu_Models_AppleThermalState+Convenience.swift | 2 +- Sources/StreamVideo/Models/IncomingVideoQualitySettings.swift | 2 +- Sources/StreamVideo/Models/Member.swift | 2 +- Sources/StreamVideo/Models/Permissions.swift | 2 +- Sources/StreamVideo/Models/PushNotificationsConfig.swift | 2 +- Sources/StreamVideo/Models/ScreenSharingSession.swift | 2 +- Sources/StreamVideo/Models/Token.swift | 2 +- Sources/StreamVideo/Models/User.swift | 2 +- Sources/StreamVideo/Models/VideoLayer.swift | 2 +- Sources/StreamVideo/OpenApi/AuthMiddlewares.swift | 2 +- Sources/StreamVideo/OpenApi/OwnCapability+Identifiable.swift | 2 +- Sources/StreamVideo/OpenApi/URLSessionTransport.swift | 2 +- Sources/StreamVideo/OpenApi/generated/APIHelper.swift | 2 +- Sources/StreamVideo/OpenApi/generated/APIs/DefaultAPI.swift | 2 +- Sources/StreamVideo/OpenApi/generated/CodableHelper.swift | 2 +- Sources/StreamVideo/OpenApi/generated/Extensions.swift | 2 +- Sources/StreamVideo/OpenApi/generated/JSONDataEncoding.swift | 2 +- Sources/StreamVideo/OpenApi/generated/Models.swift | 2 +- Sources/StreamVideo/OpenApi/generated/Models/APIError.swift | 2 +- .../OpenApi/generated/Models/AcceptCallResponse.swift | 2 +- .../StreamVideo/OpenApi/generated/Models/AggregatedStats.swift | 2 +- .../StreamVideo/OpenApi/generated/Models/AudioSettings.swift | 2 +- .../OpenApi/generated/Models/AudioSettingsRequest.swift | 2 +- .../OpenApi/generated/Models/BackstageSettings.swift | 2 +- .../OpenApi/generated/Models/BackstageSettingsRequest.swift | 2 +- .../StreamVideo/OpenApi/generated/Models/BlockUserRequest.swift | 2 +- .../OpenApi/generated/Models/BlockUserResponse.swift | 2 +- .../StreamVideo/OpenApi/generated/Models/BlockedUserEvent.swift | 2 +- .../OpenApi/generated/Models/BroadcastSettingsRequest.swift | 2 +- .../OpenApi/generated/Models/BroadcastSettingsResponse.swift | 2 +- .../OpenApi/generated/Models/CallAcceptedEvent.swift | 2 +- .../OpenApi/generated/Models/CallClosedCaption.swift | 2 +- .../generated/Models/CallClosedCaptionsFailedEvent.swift | 2 +- .../generated/Models/CallClosedCaptionsStartedEvent.swift | 2 +- .../generated/Models/CallClosedCaptionsStoppedEvent.swift | 2 +- .../StreamVideo/OpenApi/generated/Models/CallCreatedEvent.swift | 2 +- .../StreamVideo/OpenApi/generated/Models/CallDeletedEvent.swift | 2 +- .../StreamVideo/OpenApi/generated/Models/CallEndedEvent.swift | 2 +- Sources/StreamVideo/OpenApi/generated/Models/CallEvent.swift | 2 +- .../generated/Models/CallHLSBroadcastingFailedEvent.swift | 2 +- .../generated/Models/CallHLSBroadcastingStartedEvent.swift | 2 +- .../generated/Models/CallHLSBroadcastingStoppedEvent.swift | 2 +- .../OpenApi/generated/Models/CallIngressResponse.swift | 2 +- .../OpenApi/generated/Models/CallLiveStartedEvent.swift | 2 +- .../OpenApi/generated/Models/CallMemberAddedEvent.swift | 2 +- .../OpenApi/generated/Models/CallMemberRemovedEvent.swift | 2 +- .../OpenApi/generated/Models/CallMemberUpdatedEvent.swift | 2 +- .../generated/Models/CallMemberUpdatedPermissionEvent.swift | 2 +- .../StreamVideo/OpenApi/generated/Models/CallMissedEvent.swift | 2 +- .../OpenApi/generated/Models/CallNotificationEvent.swift | 2 +- .../OpenApi/generated/Models/CallParticipantResponse.swift | 2 +- .../OpenApi/generated/Models/CallReactionEvent.swift | 2 +- .../StreamVideo/OpenApi/generated/Models/CallRecording.swift | 2 +- .../OpenApi/generated/Models/CallRecordingFailedEvent.swift | 2 +- .../OpenApi/generated/Models/CallRecordingReadyEvent.swift | 2 +- .../OpenApi/generated/Models/CallRecordingStartedEvent.swift | 2 +- .../OpenApi/generated/Models/CallRecordingStoppedEvent.swift | 2 +- .../OpenApi/generated/Models/CallRejectedEvent.swift | 2 +- Sources/StreamVideo/OpenApi/generated/Models/CallRequest.swift | 2 +- Sources/StreamVideo/OpenApi/generated/Models/CallResponse.swift | 2 +- .../StreamVideo/OpenApi/generated/Models/CallRingEvent.swift | 2 +- .../OpenApi/generated/Models/CallRtmpBroadcastFailedEvent.swift | 2 +- .../generated/Models/CallRtmpBroadcastStartedEvent.swift | 2 +- .../generated/Models/CallRtmpBroadcastStoppedEvent.swift | 2 +- .../OpenApi/generated/Models/CallSessionEndedEvent.swift | 2 +- .../Models/CallSessionParticipantCountsUpdatedEvent.swift | 2 +- .../generated/Models/CallSessionParticipantJoinedEvent.swift | 2 +- .../generated/Models/CallSessionParticipantLeftEvent.swift | 2 +- .../OpenApi/generated/Models/CallSessionResponse.swift | 2 +- .../OpenApi/generated/Models/CallSessionStartedEvent.swift | 2 +- .../OpenApi/generated/Models/CallSettingsRequest.swift | 2 +- .../OpenApi/generated/Models/CallSettingsResponse.swift | 2 +- .../OpenApi/generated/Models/CallStateResponseFields.swift | 2 +- .../generated/Models/CallStatsReportSummaryResponse.swift | 2 +- Sources/StreamVideo/OpenApi/generated/Models/CallTimeline.swift | 2 +- .../OpenApi/generated/Models/CallTranscription.swift | 2 +- .../OpenApi/generated/Models/CallTranscriptionFailedEvent.swift | 2 +- .../OpenApi/generated/Models/CallTranscriptionReadyEvent.swift | 2 +- .../generated/Models/CallTranscriptionStartedEvent.swift | 2 +- .../generated/Models/CallTranscriptionStoppedEvent.swift | 2 +- .../StreamVideo/OpenApi/generated/Models/CallUpdatedEvent.swift | 2 +- .../OpenApi/generated/Models/CallUserMutedEvent.swift | 2 +- .../OpenApi/generated/Models/ClosedCaptionEvent.swift | 2 +- .../OpenApi/generated/Models/CollectUserFeedbackRequest.swift | 2 +- .../OpenApi/generated/Models/CollectUserFeedbackResponse.swift | 2 +- .../OpenApi/generated/Models/ConnectUserDetailsRequest.swift | 2 +- .../StreamVideo/OpenApi/generated/Models/ConnectedEvent.swift | 2 +- .../OpenApi/generated/Models/ConnectionErrorEvent.swift | 2 +- Sources/StreamVideo/OpenApi/generated/Models/Coordinates.swift | 2 +- Sources/StreamVideo/OpenApi/generated/Models/Count.swift | 2 +- .../OpenApi/generated/Models/CountrywiseAggregateStats.swift | 2 +- .../OpenApi/generated/Models/CreateDeviceRequest.swift | 2 +- .../OpenApi/generated/Models/CreateGuestRequest.swift | 2 +- .../OpenApi/generated/Models/CreateGuestResponse.swift | 2 +- Sources/StreamVideo/OpenApi/generated/Models/Credentials.swift | 2 +- .../StreamVideo/OpenApi/generated/Models/CustomVideoEvent.swift | 2 +- .../OpenApi/generated/Models/DeleteCallRequest.swift | 2 +- .../OpenApi/generated/Models/DeleteCallResponse.swift | 2 +- .../OpenApi/generated/Models/DeleteRecordingResponse.swift | 2 +- .../OpenApi/generated/Models/DeleteTranscriptionResponse.swift | 2 +- Sources/StreamVideo/OpenApi/generated/Models/Device.swift | 2 +- Sources/StreamVideo/OpenApi/generated/Models/EdgeResponse.swift | 2 +- .../OpenApi/generated/Models/EgressHLSResponse.swift | 2 +- .../OpenApi/generated/Models/EgressRTMPResponse.swift | 2 +- .../StreamVideo/OpenApi/generated/Models/EgressResponse.swift | 2 +- .../StreamVideo/OpenApi/generated/Models/EndCallResponse.swift | 2 +- .../StreamVideo/OpenApi/generated/Models/GeofenceSettings.swift | 2 +- .../OpenApi/generated/Models/GeofenceSettingsRequest.swift | 2 +- .../OpenApi/generated/Models/GeolocationResult.swift | 2 +- .../StreamVideo/OpenApi/generated/Models/GetCallResponse.swift | 2 +- .../OpenApi/generated/Models/GetCallStatsResponse.swift | 2 +- .../StreamVideo/OpenApi/generated/Models/GetEdgesResponse.swift | 2 +- .../OpenApi/generated/Models/GetOrCreateCallRequest.swift | 2 +- .../OpenApi/generated/Models/GetOrCreateCallResponse.swift | 2 +- .../StreamVideo/OpenApi/generated/Models/GoLiveRequest.swift | 2 +- .../StreamVideo/OpenApi/generated/Models/GoLiveResponse.swift | 2 +- .../OpenApi/generated/Models/HLSSettingsRequest.swift | 2 +- .../OpenApi/generated/Models/HLSSettingsResponse.swift | 2 +- .../StreamVideo/OpenApi/generated/Models/HealthCheckEvent.swift | 2 +- Sources/StreamVideo/OpenApi/generated/Models/ICEServer.swift | 2 +- .../StreamVideo/OpenApi/generated/Models/JoinCallRequest.swift | 2 +- .../StreamVideo/OpenApi/generated/Models/JoinCallResponse.swift | 2 +- .../StreamVideo/OpenApi/generated/Models/LayoutSettings.swift | 2 +- .../OpenApi/generated/Models/LimitsSettingsRequest.swift | 2 +- .../OpenApi/generated/Models/LimitsSettingsResponse.swift | 2 +- .../OpenApi/generated/Models/ListDevicesResponse.swift | 2 +- .../OpenApi/generated/Models/ListRecordingsResponse.swift | 2 +- .../OpenApi/generated/Models/ListTranscriptionsResponse.swift | 2 +- Sources/StreamVideo/OpenApi/generated/Models/Location.swift | 2 +- .../StreamVideo/OpenApi/generated/Models/MediaPubSubHint.swift | 2 +- .../StreamVideo/OpenApi/generated/Models/MemberRequest.swift | 2 +- .../StreamVideo/OpenApi/generated/Models/MemberResponse.swift | 2 +- .../StreamVideo/OpenApi/generated/Models/ModelResponse.swift | 2 +- .../StreamVideo/OpenApi/generated/Models/MuteUsersRequest.swift | 2 +- .../OpenApi/generated/Models/MuteUsersResponse.swift | 2 +- .../generated/Models/NoiseCancellationSettingsRequest.swift | 2 +- Sources/StreamVideo/OpenApi/generated/Models/NullBool.swift | 2 +- Sources/StreamVideo/OpenApi/generated/Models/NullTime.swift | 2 +- .../StreamVideo/OpenApi/generated/Models/OwnCapability.swift | 2 +- .../StreamVideo/OpenApi/generated/Models/OwnUserResponse.swift | 2 +- .../OpenApi/generated/Models/PermissionRequestEvent.swift | 2 +- Sources/StreamVideo/OpenApi/generated/Models/PinRequest.swift | 2 +- Sources/StreamVideo/OpenApi/generated/Models/PinResponse.swift | 2 +- .../OpenApi/generated/Models/PublishedTrackInfo.swift | 2 +- .../OpenApi/generated/Models/PublisherAggregateStats.swift | 2 +- .../OpenApi/generated/Models/PushNotificationSettings.swift | 2 +- .../generated/Models/PushNotificationSettingsResponse.swift | 2 +- .../OpenApi/generated/Models/QueryCallStatsRequest.swift | 2 +- .../OpenApi/generated/Models/QueryCallStatsResponse.swift | 2 +- .../OpenApi/generated/Models/QueryCallsRequest.swift | 2 +- .../OpenApi/generated/Models/QueryCallsResponse.swift | 2 +- .../OpenApi/generated/Models/QueryMembersRequest.swift | 2 +- .../OpenApi/generated/Models/QueryMembersResponse.swift | 2 +- .../OpenApi/generated/Models/RTMPBroadcastRequest.swift | 2 +- Sources/StreamVideo/OpenApi/generated/Models/RTMPIngress.swift | 2 +- .../OpenApi/generated/Models/RTMPSettingsRequest.swift | 2 +- .../OpenApi/generated/Models/RTMPSettingsResponse.swift | 2 +- .../StreamVideo/OpenApi/generated/Models/ReactionResponse.swift | 2 +- .../OpenApi/generated/Models/RecordSettingsRequest.swift | 2 +- .../OpenApi/generated/Models/RecordSettingsResponse.swift | 2 +- .../OpenApi/generated/Models/RejectCallRequest.swift | 2 +- .../OpenApi/generated/Models/RejectCallResponse.swift | 2 +- .../OpenApi/generated/Models/RequestPermissionRequest.swift | 2 +- .../OpenApi/generated/Models/RequestPermissionResponse.swift | 2 +- Sources/StreamVideo/OpenApi/generated/Models/RingSettings.swift | 2 +- .../OpenApi/generated/Models/RingSettingsRequest.swift | 2 +- .../OpenApi/generated/Models/SFULocationResponse.swift | 2 +- Sources/StreamVideo/OpenApi/generated/Models/SFUResponse.swift | 2 +- .../OpenApi/generated/Models/ScreensharingSettings.swift | 2 +- .../OpenApi/generated/Models/ScreensharingSettingsRequest.swift | 2 +- .../StreamVideo/OpenApi/generated/Models/SendEventRequest.swift | 2 +- .../OpenApi/generated/Models/SendEventResponse.swift | 2 +- .../OpenApi/generated/Models/SendReactionRequest.swift | 2 +- .../OpenApi/generated/Models/SendReactionResponse.swift | 2 +- .../StreamVideo/OpenApi/generated/Models/SortParamRequest.swift | 2 +- .../OpenApi/generated/Models/StartClosedCaptionsResponse.swift | 2 +- .../OpenApi/generated/Models/StartHLSBroadcastingResponse.swift | 2 +- .../OpenApi/generated/Models/StartRTMPBroadcastsRequest.swift | 2 +- .../OpenApi/generated/Models/StartRTMPBroadcastsResponse.swift | 2 +- .../OpenApi/generated/Models/StartRecordingRequest.swift | 2 +- .../OpenApi/generated/Models/StartRecordingResponse.swift | 2 +- .../OpenApi/generated/Models/StartTranscriptionRequest.swift | 2 +- .../OpenApi/generated/Models/StartTranscriptionResponse.swift | 2 +- Sources/StreamVideo/OpenApi/generated/Models/Stats.swift | 2 +- Sources/StreamVideo/OpenApi/generated/Models/StatsOptions.swift | 2 +- .../generated/Models/StopAllRTMPBroadcastsResponse.swift | 2 +- .../OpenApi/generated/Models/StopClosedCaptionsResponse.swift | 2 +- .../OpenApi/generated/Models/StopHLSBroadcastingResponse.swift | 2 +- .../StreamVideo/OpenApi/generated/Models/StopLiveResponse.swift | 2 +- .../OpenApi/generated/Models/StopRTMPBroadcastsResponse.swift | 2 +- .../OpenApi/generated/Models/StopRecordingResponse.swift | 2 +- .../OpenApi/generated/Models/StopTranscriptionResponse.swift | 2 +- Sources/StreamVideo/OpenApi/generated/Models/Subsession.swift | 2 +- .../OpenApi/generated/Models/TURNAggregatedStats.swift | 2 +- .../StreamVideo/OpenApi/generated/Models/TargetResolution.swift | 2 +- .../OpenApi/generated/Models/ThumbnailResponse.swift | 2 +- .../OpenApi/generated/Models/ThumbnailsSettings.swift | 2 +- .../OpenApi/generated/Models/ThumbnailsSettingsRequest.swift | 2 +- .../OpenApi/generated/Models/TranscriptionSettings.swift | 2 +- .../OpenApi/generated/Models/TranscriptionSettingsRequest.swift | 2 +- .../OpenApi/generated/Models/UnblockUserRequest.swift | 2 +- .../OpenApi/generated/Models/UnblockUserResponse.swift | 2 +- .../OpenApi/generated/Models/UnblockedUserEvent.swift | 2 +- Sources/StreamVideo/OpenApi/generated/Models/UnpinRequest.swift | 2 +- .../StreamVideo/OpenApi/generated/Models/UnpinResponse.swift | 2 +- .../OpenApi/generated/Models/UpdateCallMembersRequest.swift | 2 +- .../OpenApi/generated/Models/UpdateCallMembersResponse.swift | 2 +- .../OpenApi/generated/Models/UpdateCallRequest.swift | 2 +- .../OpenApi/generated/Models/UpdateCallResponse.swift | 2 +- .../OpenApi/generated/Models/UpdateUserPermissionsRequest.swift | 2 +- .../generated/Models/UpdateUserPermissionsResponse.swift | 2 +- .../OpenApi/generated/Models/UpdatedCallPermissionsEvent.swift | 2 +- .../StreamVideo/OpenApi/generated/Models/UserEventPayload.swift | 2 +- .../StreamVideo/OpenApi/generated/Models/UserInfoResponse.swift | 2 +- .../StreamVideo/OpenApi/generated/Models/UserMuteResponse.swift | 2 +- Sources/StreamVideo/OpenApi/generated/Models/UserRequest.swift | 2 +- Sources/StreamVideo/OpenApi/generated/Models/UserResponse.swift | 2 +- .../StreamVideo/OpenApi/generated/Models/UserSessionStats.swift | 2 +- Sources/StreamVideo/OpenApi/generated/Models/UserStats.swift | 2 +- .../StreamVideo/OpenApi/generated/Models/UserUpdatedEvent.swift | 2 +- Sources/StreamVideo/OpenApi/generated/Models/VideoEvent.swift | 2 +- Sources/StreamVideo/OpenApi/generated/Models/VideoQuality.swift | 2 +- .../StreamVideo/OpenApi/generated/Models/VideoResolution.swift | 2 +- .../StreamVideo/OpenApi/generated/Models/VideoSettings.swift | 2 +- .../OpenApi/generated/Models/VideoSettingsRequest.swift | 2 +- .../OpenApi/generated/Models/WSAuthMessageRequest.swift | 2 +- .../OpenApi/generated/OpenISO8601DateFormatter.swift | 2 +- Sources/StreamVideo/StreamVideo.h | 2 +- Sources/StreamVideo/StreamVideo.swift | 2 +- Sources/StreamVideo/StreamVideoEnvironment.swift | 2 +- .../Utils/AVCaptureSession+ActiveCaptureDevice.swift | 2 +- Sources/StreamVideo/Utils/Array+SafeSubscript.swift | 2 +- Sources/StreamVideo/Utils/Atomic.swift | 2 +- .../AudioSession/AudioRecorder/AVAudioRecorderBuilder.swift | 2 +- .../AudioSession/AudioRecorder/StreamActiveCallProvider.swift | 2 +- .../AudioSession/AudioRecorder/StreamCallAudioRecorder.swift | 2 +- .../StreamVideo/Utils/AudioSession/AudioSessionProtocol.swift | 2 +- .../Extensions/AVAudioSession+CategoryOptions+Convenience.swift | 2 +- .../Extensions/AVAudioSessionPortDescription+Convenience.swift | 2 +- .../Extensions/AVAudioSessionRouteDescription+Convenience.swift | 2 +- .../AVAudioSession_RouteChangeReason+Convenience.swift | 2 +- .../Extensions/RTCAudioSessionConfiguration+Default.swift | 2 +- .../Utils/AudioSession/StreamAudioSessionAdapter.swift | 2 +- .../Utils/AudioSession/StreamAudioSessionAdapterDelegate.swift | 2 +- .../StreamVideo/Utils/AudioSession/StreamRTCAudioSession.swift | 2 +- Sources/StreamVideo/Utils/BundleExtensions.swift | 2 +- Sources/StreamVideo/Utils/CallCache/CallCache.swift | 2 +- Sources/StreamVideo/Utils/CollectionDelayedUpdateObserver.swift | 2 +- Sources/StreamVideo/Utils/Data+Gzip.swift | 2 +- .../DeviceOrientation/StreamDeviceOrientationAdapter.swift | 2 +- Sources/StreamVideo/Utils/DisposableBag/DisposableBag.swift | 2 +- Sources/StreamVideo/Utils/EndpointConfig.swift | 2 +- Sources/StreamVideo/Utils/IntExtensions.swift | 2 +- .../StreamVideo/Utils/LocaleProvider/StreamLocaleProvider.swift | 2 +- Sources/StreamVideo/Utils/LocationFetcher.swift | 2 +- Sources/StreamVideo/Utils/Logger/Array+Logger.swift | 2 +- .../Utils/Logger/Destination/BaseLogDestination.swift | 2 +- .../Utils/Logger/Destination/ConsoleLogDestination.swift | 2 +- .../StreamVideo/Utils/Logger/Destination/LogDestination.swift | 2 +- Sources/StreamVideo/Utils/Logger/Formatter/LogFormatter.swift | 2 +- .../StreamVideo/Utils/Logger/Formatter/PrefixLogFormatter.swift | 2 +- Sources/StreamVideo/Utils/Logger/Publisher+Logger.swift | 2 +- .../DefaultParticipantAutoLeavePolicy.swift | 2 +- .../LastParticipantAutoLeavePolicy.swift | 2 +- .../ParticipantAutoLeavePolicy/ParticipantAutoLeavePolicy.swift | 2 +- Sources/StreamVideo/Utils/Publisher+WeakAssign.swift | 2 +- Sources/StreamVideo/Utils/Queues/LockQueuing.swift | 2 +- Sources/StreamVideo/Utils/Queues/RecursiveQueue.swift | 2 +- Sources/StreamVideo/Utils/Queues/UnfairQueue.swift | 2 +- Sources/StreamVideo/Utils/RawJSON.swift | 2 +- .../Utils/RejectionReasonProvider/RejectionReasonProvider.swift | 2 +- .../Utils/ScreenPropertiesAdapter/ScreenPropertiesAdapter.swift | 2 +- Sources/StreamVideo/Utils/Sorting.swift | 2 +- .../Stages/StreamCallStateMachine+AcceptedStage.swift | 2 +- .../Stages/StreamCallStateMachine+AcceptingStage.swift | 2 +- .../Stages/StreamCallStateMachine+ErrorStage.swift | 2 +- .../Stages/StreamCallStateMachine+IdleStage.swift | 2 +- .../Stages/StreamCallStateMachine+JoinedStage.swift | 2 +- .../Stages/StreamCallStateMachine+JoiningStage.swift | 2 +- .../Stages/StreamCallStateMachine+RejectedStage.swift | 2 +- .../Stages/StreamCallStateMachine+RejectingStage.swift | 2 +- .../CallStateMachine/Stages/StreamCallStateMachine+Stage.swift | 2 +- .../StateMachine/CallStateMachine/StreamCallStateMachine.swift | 2 +- .../StreamVideo/Utils/StateMachine/Publisher+NextValue.swift | 2 +- Sources/StreamVideo/Utils/StateMachine/StreamStateMachine.swift | 2 +- .../Utils/StateMachine/StreamStateMachineStage.swift | 2 +- Sources/StreamVideo/Utils/StreamRuntimeCheck.swift | 2 +- Sources/StreamVideo/Utils/SystemEnvironment+XStreamClient.swift | 2 +- Sources/StreamVideo/Utils/SystemEnvironment.swift | 2 +- Sources/StreamVideo/Utils/ThermalStateObserver.swift | 2 +- Sources/StreamVideo/Utils/Timers.swift | 2 +- .../Utils/UIInterfaceOrientation+CGOrientation.swift | 2 +- Sources/StreamVideo/Utils/UUIDProviding/StreamUUIDFactory.swift | 2 +- Sources/StreamVideo/Utils/Unwrap/Unwrap.swift | 2 +- Sources/StreamVideo/Utils/Utils.swift | 2 +- Sources/StreamVideo/VideoConfig.swift | 2 +- Sources/StreamVideo/WebRTC/AudioFilter/AudioFilter.swift | 2 +- .../WebRTC/AudioFilter/Filters/NoiseCancellationFilter.swift | 2 +- .../StreamAudioFilterCapturePostProcessingModule.swift | 2 +- .../WebRTC/AudioFilter/StreamAudioProcessingModule.swift | 2 +- Sources/StreamVideo/WebRTC/DefaultRTCConfiguration.swift | 2 +- Sources/StreamVideo/WebRTC/DefaultRTCMediaConstraints.swift | 2 +- Sources/StreamVideo/WebRTC/Retries.swift | 2 +- .../WebRTC/Screensharing/BroadcastBufferConnection.swift | 2 +- .../WebRTC/Screensharing/BroadcastBufferReader.swift | 2 +- .../WebRTC/Screensharing/BroadcastBufferReaderConnection.swift | 2 +- .../WebRTC/Screensharing/BroadcastBufferUploadConnection.swift | 2 +- .../WebRTC/Screensharing/BroadcastBufferUploader.swift | 2 +- .../StreamVideo/WebRTC/Screensharing/BroadcastConstants.swift | 2 +- .../StreamVideo/WebRTC/Screensharing/BroadcastObserver.swift | 2 +- .../WebRTC/Screensharing/BroadcastSampleHandler.swift | 2 +- .../StreamVideo/WebRTC/Statistics/Statistics+Convenience.swift | 2 +- .../WebRTC/Statistics/StreamCallStatisticsFormatter.swift | 2 +- .../WebRTC/Statistics/StreamCallStatisticsReporter.swift | 2 +- .../WebRTC/VideoCapturing/SimulatorScreenCapturer.swift | 2 +- .../WebRTC/VideoFilters/Extensions/CIImage+Resize.swift | 2 +- .../WebRTC/VideoFilters/Extensions/CIImage+Sendable.swift | 2 +- .../WebRTC/VideoFilters/Extensions/UIDevice+NeuralEngine.swift | 2 +- .../BlurBackgroundFilter/BlurBackgroundVideoFilter.swift | 2 +- .../ImageBackgroundFilter/ImageBackgroundVideoFilter.swift | 2 +- .../VideoFilters/Utilities/BackgroundImageFilterProcessor.swift | 2 +- Sources/StreamVideo/WebRTC/VideoFilters/VideoFilters.swift | 2 +- Sources/StreamVideo/WebRTC/WebRTCEventDecoder.swift | 2 +- Sources/StreamVideo/WebRTC/WebRTCEvents.swift | 2 +- .../WebRTC/v2/Extensions/AudioSettings+Convenience.swift | 2 +- .../WebRTC/v2/Extensions/CallParticipant+Convenience.swift | 2 +- .../WebRTC/v2/Extensions/Foundation/Publisher+AsyncStream.swift | 2 +- .../WebRTC/v2/Extensions/Foundation/Publisher+Sendable.swift | 2 +- .../WebRTC/v2/Extensions/Foundation/Task+Timeout.swift | 2 +- .../URLSessionConfiguration+WaitsForConnectivity.swift | 2 +- .../v2/Extensions/WebRTC/RTCMediaStreamTrack+Sendable.swift | 2 +- .../WebRTC/v2/PeerConnection/Adapters/ICEAdapter.swift | 2 +- .../PeerConnection/Extensions/RTCIceCandidate+Convenience.swift | 2 +- .../Extensions/RTCIceCandidate+CustomStringConvertible.swift | 2 +- .../v2/PeerConnection/Extensions/RTCIceCandidate+Sendable.swift | 2 +- .../RTCIceConnectionState+CustomStringConvertible.swift | 2 +- .../RTCIceGatheringState+CustomStringConvertible.swift | 2 +- .../Extensions/RTCMediaStream+CustomStringConvertible.swift | 2 +- .../RTCPeerConnectionState+CustomStringConvertible.swift | 2 +- .../Extensions/RTCRtpReceiver+CustomStringConvertible.swift | 2 +- .../RTCRtpTransceiverDirection+CustomStringConvertible.swift | 2 +- .../Extensions/RTCSdpType+CustomStringConvertible.swift | 2 +- .../Extensions/RTCSignalingState+CustomStringConvertible.swift | 2 +- .../v2/PeerConnection/Extensions/RTCVideoTrack+Sendable.swift | 2 +- .../Extensions/StreamRTCPeerConnection+DelegatePublisher.swift | 2 +- .../WebRTC/v2/PeerConnection/Models/ICECandidate.swift | 2 +- .../WebRTC/v2/PeerConnection/Models/PeerConnectionType.swift | 2 +- .../PeerConnection/Models/StreamRTCPeerConnection+Events.swift | 2 +- .../WebRTC/v2/PeerConnection/Models/TrackEvent.swift | 2 +- .../StreamVideo/WebRTC/v2/PeerConnection/Models/TrackType.swift | 2 +- .../v2/PeerConnection/Protocols/RTCPeerConnectionEvent.swift | 2 +- ...am_Video_Sfu_Event_SfuEvent.OneOf_EventPayload+Payload.swift | 2 +- .../StreamVideo/WebRTC/v2/SFU/Protocols/SignalServerEvent.swift | 2 +- .../WebRTC/v2/SFU/Protocols/WebSocketClientProviding.swift | 2 +- Sources/StreamVideo/WebRTC/v2/SFU/SFUSignalService.swift | 2 +- .../v2/StateMachine/Stages/WebRTCCoordinator+CleanUp.swift | 2 +- .../v2/StateMachine/Stages/WebRTCCoordinator+Connected.swift | 2 +- .../v2/StateMachine/Stages/WebRTCCoordinator+Connecting.swift | 2 +- .../WebRTC/v2/StateMachine/Stages/WebRTCCoordinator+Error.swift | 2 +- .../StateMachine/Stages/WebRTCCoordinator+FastReconnected.swift | 2 +- .../Stages/WebRTCCoordinator+FastReconnecting.swift | 2 +- .../WebRTC/v2/StateMachine/Stages/WebRTCCoordinator+Idle.swift | 2 +- .../v2/StateMachine/Stages/WebRTCCoordinator+Joined.swift | 2 +- .../v2/StateMachine/Stages/WebRTCCoordinator+Leaving.swift | 2 +- .../v2/StateMachine/Stages/WebRTCCoordinator+Migrated.swift | 2 +- .../v2/StateMachine/Stages/WebRTCCoordinator+Migrating.swift | 2 +- .../v2/StateMachine/Stages/WebRTCCoordinator+Rejoining.swift | 2 +- .../WebRTC/v2/StateMachine/Stages/WebRTCCoordinator+Stage.swift | 2 +- .../WebRTC/v2/StateMachine/WebRTCCoordinator+StateMachine.swift | 2 +- Sources/StreamVideo/WebRTC/v2/WebRTCConfiguration.swift | 2 +- Sources/StreamVideo/WebRTC/v2/WebRTCCoordinatorProviding.swift | 2 +- .../StreamVideo/WebRTC/v2/WebRTCMigrationStatusObserver.swift | 2 +- Sources/StreamVideo/WebRTC/v2/WebRTCStatsReporter.swift | 2 +- .../StreamVideo/WebSockets/Client/BackgroundTaskScheduler.swift | 2 +- .../WebSockets/Client/ConnectionRecoveryHandler.swift | 2 +- Sources/StreamVideo/WebSockets/Client/ConnectionStatus.swift | 2 +- Sources/StreamVideo/WebSockets/Client/RetryStrategy.swift | 2 +- .../WebSockets/Client/URLSessionWebSocketEngine.swift | 2 +- Sources/StreamVideo/WebSockets/Client/WebSocketClient.swift | 2 +- Sources/StreamVideo/WebSockets/Client/WebSocketEngine.swift | 2 +- .../StreamVideo/WebSockets/Client/WebSocketPingController.swift | 2 +- Sources/StreamVideo/WebSockets/Events/Event.swift | 2 +- Sources/StreamVideo/WebSockets/Events/EventBatcher.swift | 2 +- Sources/StreamVideo/WebSockets/Events/EventMiddleware.swift | 2 +- .../StreamVideo/WebSockets/Events/EventNotificationCenter.swift | 2 +- Sources/StreamVideo/WebSockets/Events/JsonEventDecoder.swift | 2 +- Sources/StreamVideo/WebSockets/Events/StreamJsonDecoder.swift | 2 +- Sources/StreamVideo/WebSockets/Events/WSEventsMiddleware.swift | 2 +- Sources/StreamVideo/protobuf/ProtoModel.swift | 2 +- Sources/StreamVideoSwiftUI/Appearance.swift | 2 +- Sources/StreamVideoSwiftUI/CallContainer.swift | 2 +- .../CallView/CallControls/Stateful/CallControlsView.swift | 2 +- .../CallControls/Stateless/StatelessAudioOutputIconView.swift | 2 +- .../CallControls/Stateless/StatelessHangUpIconView.swift | 2 +- .../CallControls/Stateless/StatelessMicrophoneIconView.swift | 2 +- .../Stateless/StatelessParticipantsListButton.swift | 2 +- .../CallControls/Stateless/StatelessSpeakerIconView.swift | 2 +- .../CallControls/Stateless/StatelessToggleCameraIconView.swift | 2 +- .../CallControls/Stateless/StatelessVideoIconView.swift | 2 +- Sources/StreamVideoSwiftUI/CallView/CallDurationView.swift | 2 +- .../StreamVideoSwiftUI/CallView/CallParticipantImageView.swift | 2 +- Sources/StreamVideoSwiftUI/CallView/CallTopView.swift | 2 +- Sources/StreamVideoSwiftUI/CallView/CallView.swift | 2 +- .../CallView/ConnectionQualityIndicator.swift | 2 +- Sources/StreamVideoSwiftUI/CallView/CornerDraggableView.swift | 2 +- .../CallView/LayoutComponents/ControlBadgeView.swift | 2 +- .../CallView/LayoutComponents/Controls/ModalButton.swift | 2 +- .../LayoutComponents/Controls/ParticipantsListButton.swift | 2 +- .../LayoutComponents/HorizontalParticipantsListView.swift | 2 +- .../CallView/LayoutComponents/SpotlightSpeakerView.swift | 2 +- Sources/StreamVideoSwiftUI/CallView/LayoutMenuView.swift | 2 +- .../CallView/LocalParticipantViewModifier.swift | 2 +- Sources/StreamVideoSwiftUI/CallView/MinimizedCallView.swift | 2 +- .../StreamVideoSwiftUI/CallView/ParticipantPopoverView.swift | 2 +- .../CallView/Participants/CallParticipantMenuAction.swift | 2 +- .../CallView/Participants/CallParticipantsInfoView.swift | 2 +- .../CallView/Participants/CallParticipantsInfoViewModel.swift | 2 +- .../CallView/Participants/InviteParticipantsView.swift | 2 +- .../CallView/Participants/InviteParticipantsViewModel.swift | 2 +- .../CallView/Participants/SelectedParticipantView.swift | 2 +- .../CallView/Participants/UserListProvider.swift | 2 +- .../CallView/ParticipantsFullScreenLayout.swift | 2 +- .../StreamVideoSwiftUI/CallView/ParticipantsGridLayout.swift | 2 +- Sources/StreamVideoSwiftUI/CallView/ParticipantsGridView.swift | 2 +- .../CallView/ParticipantsSpotlightLayout.swift | 2 +- Sources/StreamVideoSwiftUI/CallView/ReconnectionView.swift | 2 +- Sources/StreamVideoSwiftUI/CallView/RecordingView.swift | 2 +- .../StreamVideoSwiftUI/CallView/SampleBufferVideoCallView.swift | 2 +- .../CallView/ScreenSharing/BroadcastPickerView.swift | 2 +- .../CallView/ScreenSharing/ScreenSharingView.swift | 2 +- .../CallView/ScreenSharing/ScreensharingControls.swift | 2 +- .../CallView/ScreenSharing/ZoomableScrollView.swift | 2 +- Sources/StreamVideoSwiftUI/CallView/VideoParticipantsView.swift | 2 +- .../CallView/VideoRenderer/LocalVideoView.swift | 2 +- .../CallView/VideoRenderer/VideoRenderer.swift | 2 +- .../CallView/VideoRenderer/VideoRendererView.swift | 2 +- .../CallView/ViewModifiers/CallEndedViewModifier.swift | 2 +- .../CallView/ViewModifiers/ParticipantEventViewModifier.swift | 2 +- .../CallView/ViewModifiers/ParticipantsListViewModifier.swift | 2 +- .../ReadableContentGuide/ReadableContentGuide.swift | 2 +- .../CallView/ViewModifiers/Snapshot/SnapshotViewModifier.swift | 2 +- .../CallView/ViewModifiers/Snapshot/UIView+Snapshot.swift | 2 +- .../CallView/VisibilityThresholdModifier.swift | 2 +- Sources/StreamVideoSwiftUI/CallingViews/CallBackgrounds.swift | 2 +- .../StreamVideoSwiftUI/CallingViews/CallConnectingView.swift | 2 +- Sources/StreamVideoSwiftUI/CallingViews/CallingGroupView.swift | 2 +- Sources/StreamVideoSwiftUI/CallingViews/CallingIndicator.swift | 2 +- .../CallingViews/CallingParticipantView.swift | 2 +- .../CallingViews/CallingParticipantsView.swift | 2 +- Sources/StreamVideoSwiftUI/CallingViews/IncomingCallView.swift | 2 +- .../StreamVideoSwiftUI/CallingViews/IncomingCallViewModel.swift | 2 +- Sources/StreamVideoSwiftUI/CallingViews/JoiningCallView.swift | 2 +- .../StreamVideoSwiftUI/CallingViews/MicrophoneCheckView.swift | 2 +- Sources/StreamVideoSwiftUI/CallingViews/MicrophoneChecker.swift | 2 +- Sources/StreamVideoSwiftUI/CallingViews/OutgoingCallView.swift | 2 +- Sources/StreamVideoSwiftUI/CallingViews/PreJoiningView.swift | 2 +- .../StreamVideoSwiftUI/CallingViews/PreJoiningViewModel.swift | 2 +- .../CallingViews/iOS13/BackportStateObject.swift | 2 +- .../CallingViews/iOS13/IncomingCallView_iOS13.swift | 2 +- .../CallingViews/iOS13/PreJoiningView_iOS13.swift | 2 +- .../StreamVideoSwiftUI/CallingViews/iOS13/VideoView_iOS13.swift | 2 +- Sources/StreamVideoSwiftUI/Colors.swift | 2 +- Sources/StreamVideoSwiftUI/Fonts.swift | 2 +- Sources/StreamVideoSwiftUI/Images.swift | 2 +- Sources/StreamVideoSwiftUI/Livestreaming/LivestreamPlayer.swift | 2 +- .../Livestreaming/LivestreamPlayerViewModel.swift | 2 +- Sources/StreamVideoSwiftUI/Models/CallEvents.swift | 2 +- Sources/StreamVideoSwiftUI/Models/CallEventsHandler.swift | 2 +- Sources/StreamVideoSwiftUI/Models/CallModels.swift | 2 +- Sources/StreamVideoSwiftUI/Models/IncomingCall.swift | 2 +- Sources/StreamVideoSwiftUI/Models/Toast.swift | 2 +- Sources/StreamVideoSwiftUI/Sounds.swift | 2 +- Sources/StreamVideoSwiftUI/StreamVideoSwiftUI.h | 2 +- Sources/StreamVideoSwiftUI/StreamVideoUI.swift | 2 +- Sources/StreamVideoSwiftUI/Utils.swift | 2 +- .../StreamVideoSwiftUI/Utils/AsyncImage/LegacyAsyncImage.swift | 2 +- .../StreamVideoSwiftUI/Utils/AsyncImage/StreamAsyncImage.swift | 2 +- .../StreamVideoSwiftUI/Utils/AsyncImage/StreamLazyImage.swift | 2 +- .../Utils/AudioValuePercentageNormaliser.swift | 2 +- .../Utils/Backports/OnChangeViewModifier_iOS13.swift | 2 +- Sources/StreamVideoSwiftUI/Utils/BundleExtensions.swift | 2 +- Sources/StreamVideoSwiftUI/Utils/CallSoundsPlayer.swift | 2 +- Sources/StreamVideoSwiftUI/Utils/Camera.swift | 2 +- Sources/StreamVideoSwiftUI/Utils/ClipCorners.swift | 2 +- Sources/StreamVideoSwiftUI/Utils/ColorExtensions.swift | 2 +- Sources/StreamVideoSwiftUI/Utils/ContainerHelpers.swift | 2 +- .../Utils/Extensions/RTCCVPixelBuffer+Convenience.swift | 2 +- .../Utils/Extensions/View+OptionalPublisher.swift | 2 +- Sources/StreamVideoSwiftUI/Utils/Formatters/Formatters.swift | 2 +- .../Utils/Formatters/MediaDurationFormatter.swift | 2 +- Sources/StreamVideoSwiftUI/Utils/HalfSheetView.swift | 2 +- Sources/StreamVideoSwiftUI/Utils/HelperViews.swift | 2 +- Sources/StreamVideoSwiftUI/Utils/ImageExtensions.swift | 2 +- Sources/StreamVideoSwiftUI/Utils/KeyboardReadable.swift | 2 +- Sources/StreamVideoSwiftUI/Utils/ModifiedContent.swift | 2 +- Sources/StreamVideoSwiftUI/Utils/Modifiers.swift | 2 +- .../StreamAVPictureInPictureVideoCallViewController.swift | 2 +- .../Utils/PictureInPicture/StreamBufferTransformer.swift | 2 +- .../Utils/PictureInPicture/StreamPictureInPictureAdapter.swift | 2 +- .../Utils/PictureInPicture/StreamPictureInPictureView.swift | 2 +- .../Utils/PictureInPicture/StreamYUVToARGBConversion.swift | 2 +- .../StreamPictureInPictureAdaptiveWindowSizePolicy.swift | 2 +- .../StreamPictureInPictureFixedWindowSizePolicy.swift | 2 +- .../StreamPictureInPictureWindowSizePolicy.swift | 2 +- .../Utils/PictureInPicture/YpCbCrPixelRange+Default.swift | 2 +- Sources/StreamVideoSwiftUI/Utils/ReusePool.swift | 2 +- Sources/StreamVideoSwiftUI/Utils/SearchBar.swift | 2 +- .../StreamPixelBufferRepository/StreamPixelBufferPool.swift | 2 +- .../StreamPixelBufferRepository.swift | 2 +- Sources/StreamVideoSwiftUI/Utils/ToastView.swift | 2 +- Sources/StreamVideoSwiftUI/Utils/UIDevice+Convenience.swift | 2 +- Sources/StreamVideoSwiftUI/Utils/UserAvatar.swift | 2 +- .../Utils/VideoRendererPool/VideoRendererPool.swift | 2 +- Sources/StreamVideoSwiftUI/Utils/ViewExtensions.swift | 2 +- Sources/StreamVideoSwiftUI/ViewFactory.swift | 2 +- Sources/StreamVideoUIKit/CallViewController.swift | 2 +- Sources/StreamVideoUIKit/StreamVideoUIKit.h | 2 +- Sources/StreamVideoUIKit/Utils/Animation.swift | 2 +- .../StreamVideoUIKit/Utils/NSLayoutConstraint+Extensions.swift | 2 +- Sources/StreamVideoUIKit/Utils/UIView+Extensions.swift | 2 +- .../CallView/CallControls/Stateful/CallControlsView_Tests.swift | 2 +- .../Stateless/StatelessAudioOutputIconView_Tests.swift | 2 +- .../CallControls/Stateless/StatelessHangUpIconView_Tests.swift | 2 +- .../Stateless/StatelessMicrophoneIconView_Tests.swift | 2 +- .../Stateless/StatelessParticipantsListButton_Tests.swift | 2 +- .../CallControls/Stateless/StatelessSpeakerIconView_Tests.swift | 2 +- .../Stateless/StatelessToggleCameraIconView_Tests.swift | 2 +- .../CallControls/Stateless/StatelessVideoIconView_Tests.swift | 2 +- StreamVideoSwiftUITests/CallView/CallDurationView_Tests.swift | 2 +- StreamVideoSwiftUITests/CallView/ControlBadgeView_Tests.swift | 2 +- .../LayoutComponents/HorizontalParticipantsListView_Tests.swift | 2 +- .../CallView/LayoutComponents/SpotlightSpeakerView_Tests.swift | 2 +- .../CallView/ParticipantListButton_Tests.swift | 2 +- .../CallView/ParticipantsFullScreenLayout_Tests.swift | 2 +- .../CallView/ParticipantsGridLayout_Tests.swift | 2 +- .../CallView/ParticipantsSpotlightLayout_Tests.swift | 2 +- StreamVideoSwiftUITests/CallView/ReconnectionView_Tests.swift | 2 +- StreamVideoSwiftUITests/CallView/RecordingView_Tests.swift | 2 +- StreamVideoSwiftUITests/CallView/ScreenSharingView_Tests.swift | 2 +- StreamVideoSwiftUITests/CallView/VideoRenderer_Tests.swift | 2 +- .../CallView/VisibilityThresholdModifier_Tests.swift | 2 +- .../CallingViews/CallConnectingView_Tests.swift | 2 +- .../CallingViews/CallingGroupView_Tests.swift | 2 +- .../CallingViews/CallingParticipantView_Tests.swift | 2 +- .../CallingViews/IncomingCallView_Tests.swift | 2 +- .../CallingViews/JoiningCallView_Tests.swift | 2 +- StreamVideoSwiftUITests/CallingViews/LobbyView_Tests.swift | 2 +- .../CallingViews/MicrophoneCheckView_Tests.swift | 2 +- .../CallingViews/MicrophoneChecker_Tests.swift | 2 +- .../CallingViews/OutgoingCallView_Tests.swift | 2 +- .../Livestreaming/LivestreamPlayer_Tests.swift | 2 +- StreamVideoSwiftUITests/StreamVideoUITestCase.swift | 2 +- .../Utils/AudioValuePercentageNormaliser_Tests.swift | 2 +- StreamVideoSwiftUITests/Utils/CallEventsHandler_Tests.swift | 2 +- StreamVideoSwiftUITests/Utils/CornerClipper_Tests.swift | 2 +- .../Mocks/MockStreamAVPictureInPictureViewControlling.swift | 2 +- .../Utils/PictureInPicture/StreamBufferTransformerTests.swift | 2 +- .../StreamPictureInPictureVideoRendererTests.swift | 2 +- .../StreamPictureInPictureAdaptiveWindowSizePolicy_Tests.swift | 2 +- .../StreamPictureInPictureFixedWindowSizePolicy_Tests.swift | 2 +- StreamVideoSwiftUITests/Utils/ReusePool_Tests.swift | 2 +- .../Utils/StreamMediaDurationFormatter_Tests.swift | 2 +- StreamVideoSwiftUITests/Utils/ToastView_Tests.swift | 2 +- StreamVideoTests/Call/Call_Tests.swift | 2 +- .../CallKitRegionBasedAvailabilityPolicy.swift | 2 +- StreamVideoTests/CallKit/CallKitAdapterTests.swift | 2 +- .../CallKit/CallKitPushNotificationAdapterTests.swift | 2 +- StreamVideoTests/CallSettings/CameraManager_Tests.swift | 2 +- StreamVideoTests/CallSettings/MicrophoneManager_Tests.swift | 2 +- StreamVideoTests/CallSettings/SpeakerManager_Tests.swift | 2 +- StreamVideoTests/CallState/CallState_Tests.swift | 2 +- StreamVideoTests/Controllers/CallsController_Tests.swift | 2 +- StreamVideoTests/Controllers/ControllerTestCase.swift | 2 +- StreamVideoTests/Errors/ClientError_Tests.swift | 2 +- StreamVideoTests/Errors/ErrorPayload_Tests.swift | 2 +- StreamVideoTests/HTTPClient/InternetConnection_Tests.swift | 2 +- StreamVideoTests/IntegrationTests/CallCRUDTests.swift | 2 +- StreamVideoTests/IntegrationTests/IntegrationTest.swift | 2 +- StreamVideoTests/Mock/CallController_Mock.swift | 2 +- StreamVideoTests/Mock/CallCoordinatorController_Mock.swift | 2 +- StreamVideoTests/Mock/CallParticipant_Mock.swift | 2 +- StreamVideoTests/Mock/EventBatcher_Mock.swift | 2 +- StreamVideoTests/Mock/EventDecoder_Mock.swift | 2 +- StreamVideoTests/Mock/EventMiddleware_Mock.swift | 2 +- StreamVideoTests/Mock/EventNotificationCenter_Mock.swift | 2 +- StreamVideoTests/Mock/HTTPClient_Mock.swift | 2 +- StreamVideoTests/Mock/InternetConnection_Mock.swift | 2 +- StreamVideoTests/Mock/MockActiveCallProvider.swift | 2 +- StreamVideoTests/Mock/MockAudioSession.swift | 2 +- StreamVideoTests/Mock/MockCXCallController.swift | 2 +- StreamVideoTests/Mock/MockCall.swift | 2 +- StreamVideoTests/Mock/MockCallAuthenticator.swift | 2 +- StreamVideoTests/Mock/MockCallController.swift | 2 +- StreamVideoTests/Mock/MockFunc.swift | 2 +- StreamVideoTests/Mock/MockInternetConnection.swift | 2 +- StreamVideoTests/Mock/MockResponseBuilder.swift | 2 +- StreamVideoTests/Mock/MockSFUStack.swift | 2 +- StreamVideoTests/Mock/MockStreamCallAudioRecorder.swift | 2 +- StreamVideoTests/Mock/MockStreamVideo.swift | 2 +- StreamVideoTests/Mock/MockThermalStateObserver.swift | 2 +- StreamVideoTests/Mock/MockWebRTCAuthenticator.swift | 2 +- StreamVideoTests/Mock/MockWebRTCCoordinatorFactory.swift | 2 +- StreamVideoTests/Mock/MockWebRTCCoordinatorStack.swift | 2 +- StreamVideoTests/Mock/MockWebSocketClientFactory.swift | 2 +- StreamVideoTests/Mock/StreamVideo_Mock.swift | 2 +- StreamVideoTests/Mock/WebSocketClientEnvironment_Mock.swift | 2 +- StreamVideoTests/Mock/WebSocketEngine_Mock.swift | 2 +- StreamVideoTests/Mock/WebSocketPingController_Mock.swift | 2 +- StreamVideoTests/Models/CallParticipants_Tests.swift | 2 +- StreamVideoTests/Models/CallSettings_Tests.swift | 2 +- .../Models/IncomingVideoQualitySettings_Tests.swift | 2 +- StreamVideoTests/Models/JSONDecoder_Tests.swift | 2 +- StreamVideoTests/StreamVideoTestCase.swift | 2 +- StreamVideoTests/StreamVideo_Tests.swift | 2 +- StreamVideoTests/TestUtils/AssertAsync.swift | 2 +- StreamVideoTests/TestUtils/AssertDelay.swift | 2 +- StreamVideoTests/TestUtils/AssertJSONEqual.swift | 2 +- StreamVideoTests/TestUtils/AssertTestQueue.swift | 2 +- StreamVideoTests/TestUtils/Calendar+GMT.swift | 2 +- StreamVideoTests/TestUtils/EquatableEvent.swift | 2 +- StreamVideoTests/TestUtils/EventLogger.swift | 2 +- StreamVideoTests/TestUtils/Mockable.swift | 2 +- StreamVideoTests/TestUtils/TestError.swift | 2 +- StreamVideoTests/TestUtils/UniqueValues.swift | 2 +- StreamVideoTests/TestUtils/VirtualTime/VirtualTime.swift | 2 +- StreamVideoTests/TestUtils/VirtualTime/VirtualTimer.swift | 2 +- .../TestUtils/WebSocketPingController_Delegate.swift | 2 +- .../Utilities/Dummy/AggregatedStatsReport+Dummy.swift | 2 +- StreamVideoTests/Utilities/Dummy/AudioSettings+Dummy.swift | 2 +- StreamVideoTests/Utilities/Dummy/BackstageSettings+Dummy.swift | 2 +- StreamVideoTests/Utilities/Dummy/BaseStats+Dummy.swift | 2 +- .../Utilities/Dummy/BroadcastSettingsResponse+Dummy.swift | 2 +- StreamVideoTests/Utilities/Dummy/CallAcceptedEvent+Dummy.swift | 2 +- .../Utilities/Dummy/CallIngressResponse+Dummy.swift | 2 +- .../Utilities/Dummy/CallParticipantResponse+Dummy.swift | 2 +- StreamVideoTests/Utilities/Dummy/CallRejectedEvent+Dummy.swift | 2 +- StreamVideoTests/Utilities/Dummy/CallResponse+Dummy.swift | 2 +- .../Utilities/Dummy/CallSessionParticipantLeftEvent+Dummy.swift | 2 +- .../Utilities/Dummy/CallSessionResponse+Dummy.swift | 2 +- .../Utilities/Dummy/CallSettingsResponse+Dummy.swift | 2 +- StreamVideoTests/Utilities/Dummy/CallStatsReport+Dummy.swift | 2 +- StreamVideoTests/Utilities/Dummy/Credentials+Dummy.swift | 2 +- StreamVideoTests/Utilities/Dummy/EgressHLSResponse+Dummy.swift | 2 +- StreamVideoTests/Utilities/Dummy/EgressRTMPResponse+Dummy.swift | 2 +- StreamVideoTests/Utilities/Dummy/EgressResponse+Dummy.swift | 2 +- StreamVideoTests/Utilities/Dummy/GeofenceSettings+Dummy.swift | 2 +- StreamVideoTests/Utilities/Dummy/GetCallResponse+Dummy.swift | 2 +- .../Utilities/Dummy/HLSSettingsResponse+Dummy.swift | 2 +- StreamVideoTests/Utilities/Dummy/JoinCallResponse+Dummy.swift | 2 +- .../Utilities/Dummy/LimitsSettingsResponse+Dummy.swift | 2 +- StreamVideoTests/Utilities/Dummy/MemberResponse+Dummy.swift | 2 +- StreamVideoTests/Utilities/Dummy/ParticipantsStats+Dummy.swift | 2 +- .../Utilities/Dummy/RTCMediaStreamTrack+dummy.swift | 2 +- StreamVideoTests/Utilities/Dummy/RTMPIngress+Dummy.swift | 2 +- .../Utilities/Dummy/RecordSettingsResponse+Dummy.swift | 2 +- StreamVideoTests/Utilities/Dummy/RingSettings+Dummy.swift | 2 +- StreamVideoTests/Utilities/Dummy/SFUResponse+Dummy.swift | 2 +- .../Utilities/Dummy/ScreensharingSettings+Dummy.swift | 2 +- .../Dummy/Stream_Video_Sfu_Event_VideoLayerSetting+Dummy.swift | 2 +- .../Utilities/Dummy/Stream_Video_Sfu_Models_Codec+Dummy.swift | 2 +- StreamVideoTests/Utilities/Dummy/TargetResolution+Dummy.swift | 2 +- StreamVideoTests/Utilities/Dummy/ThumbnailResponse+Dummy.swift | 2 +- StreamVideoTests/Utilities/Dummy/ThumbnailsSettings+Dummy.swift | 2 +- .../Utilities/Dummy/TranscriptionSettings+Dummy.swift | 2 +- StreamVideoTests/Utilities/Dummy/UserResponse+Dummy.swift | 2 +- StreamVideoTests/Utilities/Dummy/VideoSettings+Dummy.swift | 2 +- .../Utilities/Extensions/CVPixelBuffer+Convenience.swift | 2 +- .../Stream_Video_Sfu_Models_ConnectionQuality+Convenience.swift | 2 +- .../Stream_Video_Sfu_Models_Participant+Convenience.swift | 2 +- .../Utilities/Extensions/XCTestCase+PredicateFulfillment.swift | 2 +- StreamVideoTests/Utilities/Mocks/MockCXProvider.swift | 2 +- .../Utilities/Mocks/MockCallKitPushNotificationAdapter.swift | 2 +- StreamVideoTests/Utilities/Mocks/MockCallKitService.swift | 2 +- StreamVideoTests/Utilities/TestsAuthenticationProvider.swift | 2 +- StreamVideoTests/Utils/AsyncAssert.swift | 2 +- .../Utils/AudioSession/StreamAudioSessionAdapter_Tests.swift | 2 +- .../Utils/AudioSession/StreamRTCAudioSession_Tests.swift | 2 +- StreamVideoTests/Utils/CallCache_Tests.swift | 2 +- .../Utils/CollectionDelayedUpdateObserver_Tests.swift | 2 +- StreamVideoTests/Utils/EventBatcher_Tests.swift | 2 +- StreamVideoTests/Utils/Mapping_Tests.swift | 2 +- StreamVideoTests/Utils/Queues/RecursiveQueueTests.swift | 2 +- StreamVideoTests/Utils/Queues/UnfairQueueTests.swift | 2 +- StreamVideoTests/Utils/RawJSON_Tests.swift | 2 +- .../RejectionReasonProvider/RejectionReasonProvider_Tests.swift | 2 +- StreamVideoTests/Utils/RepeatingTimer_Tests.swift | 2 +- StreamVideoTests/Utils/SerialActor_Tests.swift | 2 +- StreamVideoTests/Utils/Sorting_Tests.swift | 2 +- .../Stages/StreamCallStateMachineStageAcceptedStage_Tests.swift | 2 +- .../StreamCallStateMachineStageAcceptingStage_Tests.swift | 2 +- .../Stages/StreamCallStateMachineStageErrorStage_Tests.swift | 2 +- .../Stages/StreamCallStateMachineStageIdleStage_Tests.swift | 2 +- .../Stages/StreamCallStateMachineStageJoinedStage_Tests.swift | 2 +- .../Stages/StreamCallStateMachineStageJoiningStage_Tests.swift | 2 +- .../Stages/StreamCallStateMachineStageRejectedStage_Tests.swift | 2 +- .../StreamCallStateMachineStageRejectingStage_Tests.swift | 2 +- .../CallStateMachine/StreamCallStateMachine_Tests.swift | 2 +- StreamVideoTests/Utils/StateMachine/Publisher_NextTests.swift | 2 +- .../Utils/StateMachine/StreamStateMachine_Tests.swift | 2 +- StreamVideoTests/Utils/StreamCallAudioRecorderTests.swift | 2 +- StreamVideoTests/WebRTC/AudioSession_Tests.swift | 2 +- .../WebRTC/Extensions/Foundation/Task_TimeoutTests.swift | 2 +- .../URLSessionConfiguration_WaitsForConnectivityTests.swift | 2 +- StreamVideoTests/WebRTC/RTCConfiguration_Tests.swift | 2 +- StreamVideoTests/WebRTC/Retries_Tests.swift | 2 +- StreamVideoTests/WebRTC/SFU/Mocks/MockSignalServer.swift | 2 +- StreamVideoTests/WebRTC/SFU/Mocks/MockWebSocketClient.swift | 2 +- StreamVideoTests/WebRTC/SFU/Mocks/MockWebSocketEngine.swift | 2 +- StreamVideoTests/WebRTC/SFU/SFUAdapter_Tests.swift | 2 +- .../WebRTC/Screensharing/BroadcastObserver_Tests.swift | 2 +- .../WebRTC/Statistics/CallStatsReporting_Tests.swift | 2 +- .../WebRTC/Statistics/Mocks/MockStreamStatistics.swift | 2 +- .../WebRTC/Statistics/StreamCallStatisticsFormatter_Tests.swift | 2 +- .../WebRTC/VideoFilters/Extensions/CIImage_Resize_Tests.swift | 2 +- .../v2/Extensions/CallParticipant_TrackSubscriptionTests.swift | 2 +- .../WebRTC/v2/PeerConnection/Adapters/ICEAdapter_Tests.swift | 2 +- .../PeerConnection/MediaAdapters/AudioMediaAdapter_Tests.swift | 2 +- .../MediaAdapters/ScreenShareMediaAdapter_Tests.swift | 2 +- .../PeerConnection/MediaAdapters/VideoMediaAdapter_Tests.swift | 2 +- .../WebRTCCoordinatorStateMachine_CleanUpStageTests.swift | 2 +- .../WebRTCCoordinatorStateMachine_ConnectedStageTests.swift | 2 +- .../WebRTCCoordinatorStateMachine_ConnectingStageTests.swift | 2 +- .../WebRTCCoordinatorStateMachine_DisconnectedStageTests.swift | 2 +- .../Stages/WebRTCCoordinatorStateMachine_ErrorStageTests.swift | 2 +- ...ebRTCCoordinatorStateMachine_FastReconnectedStageTests.swift | 2 +- ...bRTCCoordinatorStateMachine_FastReconnectingStageTests.swift | 2 +- .../Stages/WebRTCCoordinatorStateMachine_IdleStageTests.swift | 2 +- .../Stages/WebRTCCoordinatorStateMachine_JoinedStageTests.swift | 2 +- .../WebRTCCoordinatorStateMachine_LeavingStageTests.swift | 2 +- .../WebRTCCoordinatorStateMachine_MigratedStageTests.swift | 2 +- .../WebRTCCoordinatorStateMachine_MigratingStageTests.swift | 2 +- .../WebRTCCoordinatorStateMachine_RejoiningStageTests.swift | 2 +- .../v2/StateMachine/WebRTCCoordinator_StateMachineTests.swift | 2 +- StreamVideoTests/WebRTC/v2/WebRTCConfiguration_Tests.swift | 2 +- .../WebRTC/v2/WebRTCMigrationStatusObserver_Tests.swift | 2 +- StreamVideoTests/WebRTC/v2/WebRTCStatsReporter_Tests.swift | 2 +- .../WebSocketClient/BackgroundTaskScheduler_Tests.swift | 2 +- .../WebSocketClient/EventNotificationCenter_Tests.swift | 2 +- StreamVideoTests/WebSocketClient/WebSocketClient_Tests.swift | 2 +- .../WebSocketClient/WebSocketConnectionState_Tests.swift | 2 +- .../WebSocketClient/WebSocketPingController_Tests.swift | 2 +- .../WebSockets/Client/DefaultRetryStrategyTests.swift | 2 +- StreamVideoTests/WebSockets/Events/EventTests.swift | 2 +- StreamVideoTests/protobuf/SignalServer_Tests.swift | 2 +- StreamVideoUIKitTests/CallViewController_Tests.swift | 2 +- SwiftUIDemoAppUITests/Pages/CallDetailsPage.swift | 2 +- SwiftUIDemoAppUITests/Pages/CallPage.swift | 2 +- SwiftUIDemoAppUITests/Pages/LobbyPage.swift | 2 +- SwiftUIDemoAppUITests/Pages/LoginPage.swift | 2 +- SwiftUIDemoAppUITests/Robots/UserRobot+Asserts.swift | 2 +- SwiftUIDemoAppUITests/Robots/UserRobot.swift | 2 +- SwiftUIDemoAppUITests/StreamVideoUITests.swift | 2 +- SwiftUIDemoAppUITests/Tests/Authentication_Tests.swift | 2 +- SwiftUIDemoAppUITests/Tests/CallLifecycleTests.swift | 2 +- SwiftUIDemoAppUITests/Tests/CallViewsTests.swift | 2 +- SwiftUIDemoAppUITests/Tests/DeeplinkTests.swift | 2 +- SwiftUIDemoAppUITests/Tests/LobbyTests.swift | 2 +- SwiftUIDemoAppUITests/Tests/ParticipantActionsTests.swift | 2 +- SwiftUIDemoAppUITests/Tests/ReconnectionTests.swift | 2 +- SwiftUIDemoAppUITests/Tests/RingProcessTests.swift | 2 +- SwiftUIDemoAppUITests/Tests/StreamTestCase.swift | 2 +- TestTools/Robots/ParticipantRobot.swift | 2 +- TestTools/Robots/Sinatra.swift | 2 +- TestTools/TestData/ImageFactory.swift | 2 +- TestTools/TestData/LaunchArgument.swift | 2 +- TestTools/TestData/StreamVideoTestResources.swift | 2 +- TestTools/TestData/ViewFactory.swift | 2 +- TestTools/UITests/Safari.swift | 2 +- TestTools/UITests/XCUIApplication+KeyboardIntroduction.swift | 2 +- 896 files changed, 896 insertions(+), 896 deletions(-) diff --git a/CallIntent/IntentHandler.swift b/CallIntent/IntentHandler.swift index 4ecaaac6d..fee7cb730 100644 --- a/CallIntent/IntentHandler.swift +++ b/CallIntent/IntentHandler.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import Intents diff --git a/DemoApp/Sources/AppDelegate.swift b/DemoApp/Sources/AppDelegate.swift index cbca07534..03a5fc74d 100644 --- a/DemoApp/Sources/AppDelegate.swift +++ b/DemoApp/Sources/AppDelegate.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import GDPerformanceView_Swift diff --git a/DemoApp/Sources/Components/AppEnvironment.swift b/DemoApp/Sources/Components/AppEnvironment.swift index 3b0329590..cd7bcf78f 100644 --- a/DemoApp/Sources/Components/AppEnvironment.swift +++ b/DemoApp/Sources/Components/AppEnvironment.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import Foundation diff --git a/DemoApp/Sources/Components/AppState.swift b/DemoApp/Sources/Components/AppState.swift index e7fb78d7c..5f347c91b 100644 --- a/DemoApp/Sources/Components/AppState.swift +++ b/DemoApp/Sources/Components/AppState.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import Combine diff --git a/DemoApp/Sources/Components/AudioFilter/RobotVoiceFilter.swift b/DemoApp/Sources/Components/AudioFilter/RobotVoiceFilter.swift index f5a660e86..97601b392 100644 --- a/DemoApp/Sources/Components/AudioFilter/RobotVoiceFilter.swift +++ b/DemoApp/Sources/Components/AudioFilter/RobotVoiceFilter.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import Foundation diff --git a/DemoApp/Sources/Components/Authentication/AuthenticationProvider.swift b/DemoApp/Sources/Components/Authentication/AuthenticationProvider.swift index 54bc7c957..3fe249cb9 100644 --- a/DemoApp/Sources/Components/Authentication/AuthenticationProvider.swift +++ b/DemoApp/Sources/Components/Authentication/AuthenticationProvider.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import Foundation diff --git a/DemoApp/Sources/Components/Chat/DemoChatAdapter.swift b/DemoApp/Sources/Components/Chat/DemoChatAdapter.swift index 2b4af3970..596754c42 100644 --- a/DemoApp/Sources/Components/Chat/DemoChatAdapter.swift +++ b/DemoApp/Sources/Components/Chat/DemoChatAdapter.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import Combine diff --git a/DemoApp/Sources/Components/Chat/DemoChatViewFactory.swift b/DemoApp/Sources/Components/Chat/DemoChatViewFactory.swift index fe1fcf76a..fde41f943 100644 --- a/DemoApp/Sources/Components/Chat/DemoChatViewFactory.swift +++ b/DemoApp/Sources/Components/Chat/DemoChatViewFactory.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import Foundation diff --git a/DemoApp/Sources/Components/Chat/DemoChatViewModel+Injection.swift b/DemoApp/Sources/Components/Chat/DemoChatViewModel+Injection.swift index f825faa97..fc01675ae 100644 --- a/DemoApp/Sources/Components/Chat/DemoChatViewModel+Injection.swift +++ b/DemoApp/Sources/Components/Chat/DemoChatViewModel+Injection.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import Foundation diff --git a/DemoApp/Sources/Components/Chat/DemoChatViewModel.swift b/DemoApp/Sources/Components/Chat/DemoChatViewModel.swift index 8f62c34ac..c476d9060 100644 --- a/DemoApp/Sources/Components/Chat/DemoChatViewModel.swift +++ b/DemoApp/Sources/Components/Chat/DemoChatViewModel.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import Combine diff --git a/DemoApp/Sources/Components/CodeScanner/CodeScanner.swift b/DemoApp/Sources/Components/CodeScanner/CodeScanner.swift index f934d164b..af0c34d3c 100644 --- a/DemoApp/Sources/Components/CodeScanner/CodeScanner.swift +++ b/DemoApp/Sources/Components/CodeScanner/CodeScanner.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import AVFoundation diff --git a/DemoApp/Sources/Components/Deeplinks/DeeplinkAdapter.swift b/DemoApp/Sources/Components/Deeplinks/DeeplinkAdapter.swift index 2a6d169e3..5385d50a9 100644 --- a/DemoApp/Sources/Components/Deeplinks/DeeplinkAdapter.swift +++ b/DemoApp/Sources/Components/Deeplinks/DeeplinkAdapter.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import Foundation diff --git a/DemoApp/Sources/Components/DemoAppViewFactory.swift b/DemoApp/Sources/Components/DemoAppViewFactory.swift index 1c25c85c0..04469fef5 100644 --- a/DemoApp/Sources/Components/DemoAppViewFactory.swift +++ b/DemoApp/Sources/Components/DemoAppViewFactory.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import StreamVideo diff --git a/DemoApp/Sources/Components/Feedback/DemoFeedbackView.swift b/DemoApp/Sources/Components/Feedback/DemoFeedbackView.swift index 4a8821753..4897b0845 100644 --- a/DemoApp/Sources/Components/Feedback/DemoFeedbackView.swift +++ b/DemoApp/Sources/Components/Feedback/DemoFeedbackView.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import Foundation diff --git a/DemoApp/Sources/Components/MemoryLogDestination/LogQueue.swift b/DemoApp/Sources/Components/MemoryLogDestination/LogQueue.swift index 5e3633f57..0a076c45e 100644 --- a/DemoApp/Sources/Components/MemoryLogDestination/LogQueue.swift +++ b/DemoApp/Sources/Components/MemoryLogDestination/LogQueue.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import Foundation diff --git a/DemoApp/Sources/Components/MemoryLogDestination/MemoryLogDestination.swift b/DemoApp/Sources/Components/MemoryLogDestination/MemoryLogDestination.swift index 1fdcac4af..e31a4fbd8 100644 --- a/DemoApp/Sources/Components/MemoryLogDestination/MemoryLogDestination.swift +++ b/DemoApp/Sources/Components/MemoryLogDestination/MemoryLogDestination.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import Foundation diff --git a/DemoApp/Sources/Components/MemoryLogDestination/MemoryLogViewer.swift b/DemoApp/Sources/Components/MemoryLogDestination/MemoryLogViewer.swift index 4194d2992..78a4fc5d2 100644 --- a/DemoApp/Sources/Components/MemoryLogDestination/MemoryLogViewer.swift +++ b/DemoApp/Sources/Components/MemoryLogDestination/MemoryLogViewer.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import Foundation diff --git a/DemoApp/Sources/Components/Reactions/ReactionsAdapter.swift b/DemoApp/Sources/Components/Reactions/ReactionsAdapter.swift index d05d0adfc..7ca1b97c9 100644 --- a/DemoApp/Sources/Components/Reactions/ReactionsAdapter.swift +++ b/DemoApp/Sources/Components/Reactions/ReactionsAdapter.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import AVFoundation diff --git a/DemoApp/Sources/Components/Router.swift b/DemoApp/Sources/Components/Router.swift index 4c6a419ff..f46cce6fc 100644 --- a/DemoApp/Sources/Components/Router.swift +++ b/DemoApp/Sources/Components/Router.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import Foundation diff --git a/DemoApp/Sources/Components/SessionTimer/SessionTimer.swift b/DemoApp/Sources/Components/SessionTimer/SessionTimer.swift index df74068f1..91323c804 100644 --- a/DemoApp/Sources/Components/SessionTimer/SessionTimer.swift +++ b/DemoApp/Sources/Components/SessionTimer/SessionTimer.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import Combine diff --git a/DemoApp/Sources/Components/Snapshot/LocalParticipantSnapshotViewModel.swift b/DemoApp/Sources/Components/Snapshot/LocalParticipantSnapshotViewModel.swift index 3f8b32024..d9a29aa37 100644 --- a/DemoApp/Sources/Components/Snapshot/LocalParticipantSnapshotViewModel.swift +++ b/DemoApp/Sources/Components/Snapshot/LocalParticipantSnapshotViewModel.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import AVFoundation diff --git a/DemoApp/Sources/Components/Snapshot/SnapshotTrigger.swift b/DemoApp/Sources/Components/Snapshot/SnapshotTrigger.swift index b4720d518..45ea970ef 100644 --- a/DemoApp/Sources/Components/Snapshot/SnapshotTrigger.swift +++ b/DemoApp/Sources/Components/Snapshot/SnapshotTrigger.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import Combine diff --git a/DemoApp/Sources/Components/Storage/UnsecureRepository.swift b/DemoApp/Sources/Components/Storage/UnsecureRepository.swift index fb65e01b7..9b7e77e25 100644 --- a/DemoApp/Sources/Components/Storage/UnsecureRepository.swift +++ b/DemoApp/Sources/Components/Storage/UnsecureRepository.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import Foundation diff --git a/DemoApp/Sources/Controls/CallButtonView.swift b/DemoApp/Sources/Controls/CallButtonView.swift index 471d16b99..2f7d1ff41 100644 --- a/DemoApp/Sources/Controls/CallButtonView.swift +++ b/DemoApp/Sources/Controls/CallButtonView.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import StreamVideo diff --git a/DemoApp/Sources/Controls/DemoMoreControls/DemoBackgroundEffectSelector.swift b/DemoApp/Sources/Controls/DemoMoreControls/DemoBackgroundEffectSelector.swift index 4a7b1aaf3..cb6143ce8 100644 --- a/DemoApp/Sources/Controls/DemoMoreControls/DemoBackgroundEffectSelector.swift +++ b/DemoApp/Sources/Controls/DemoMoreControls/DemoBackgroundEffectSelector.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import Foundation diff --git a/DemoApp/Sources/Controls/DemoMoreControls/DemoMoreControlListButtonView.swift b/DemoApp/Sources/Controls/DemoMoreControls/DemoMoreControlListButtonView.swift index 44c503d70..c3a10fbc2 100644 --- a/DemoApp/Sources/Controls/DemoMoreControls/DemoMoreControlListButtonView.swift +++ b/DemoApp/Sources/Controls/DemoMoreControls/DemoMoreControlListButtonView.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import Foundation diff --git a/DemoApp/Sources/Controls/DemoMoreControls/DemoReactionButton.swift b/DemoApp/Sources/Controls/DemoMoreControls/DemoReactionButton.swift index 5f22d6e4c..7471ccb11 100644 --- a/DemoApp/Sources/Controls/DemoMoreControls/DemoReactionButton.swift +++ b/DemoApp/Sources/Controls/DemoMoreControls/DemoReactionButton.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import Foundation diff --git a/DemoApp/Sources/Controls/DemoParticipantOptionsButton.swift b/DemoApp/Sources/Controls/DemoParticipantOptionsButton.swift index cf8ea7505..cecb76298 100644 --- a/DemoApp/Sources/Controls/DemoParticipantOptionsButton.swift +++ b/DemoApp/Sources/Controls/DemoParticipantOptionsButton.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import Foundation diff --git a/DemoApp/Sources/DemoApp.swift b/DemoApp/Sources/DemoApp.swift index 159d29ca4..fa8971cff 100644 --- a/DemoApp/Sources/DemoApp.swift +++ b/DemoApp/Sources/DemoApp.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import GoogleSignIn diff --git a/DemoApp/Sources/Examples/Examples.swift b/DemoApp/Sources/Examples/Examples.swift index 9ea005370..1c57f1bc4 100644 --- a/DemoApp/Sources/Examples/Examples.swift +++ b/DemoApp/Sources/Examples/Examples.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import StreamVideo diff --git a/DemoApp/Sources/Extensions/Call+Identifiable.swift b/DemoApp/Sources/Extensions/Call+Identifiable.swift index 69f1df127..8c0ddbd80 100644 --- a/DemoApp/Sources/Extensions/Call+Identifiable.swift +++ b/DemoApp/Sources/Extensions/Call+Identifiable.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import Foundation diff --git a/DemoApp/Sources/Extensions/CallStateResponseFields+Identifiable.swift b/DemoApp/Sources/Extensions/CallStateResponseFields+Identifiable.swift index dddc66fa2..8809ea7df 100644 --- a/DemoApp/Sources/Extensions/CallStateResponseFields+Identifiable.swift +++ b/DemoApp/Sources/Extensions/CallStateResponseFields+Identifiable.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import Foundation diff --git a/DemoApp/Sources/Extensions/CallViewModel+CallSettingsPublisher.swift b/DemoApp/Sources/Extensions/CallViewModel+CallSettingsPublisher.swift index 76566a5f8..103fcbb0f 100644 --- a/DemoApp/Sources/Extensions/CallViewModel+CallSettingsPublisher.swift +++ b/DemoApp/Sources/Extensions/CallViewModel+CallSettingsPublisher.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import Combine diff --git a/DemoApp/Sources/Extensions/CallViewModel+Snapshot.swift b/DemoApp/Sources/Extensions/CallViewModel+Snapshot.swift index 75d23e198..6277f5165 100644 --- a/DemoApp/Sources/Extensions/CallViewModel+Snapshot.swift +++ b/DemoApp/Sources/Extensions/CallViewModel+Snapshot.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import Foundation diff --git a/DemoApp/Sources/Extensions/DemoApp+Sentry.swift b/DemoApp/Sources/Extensions/DemoApp+Sentry.swift index 5ca0123a6..4f66b8018 100644 --- a/DemoApp/Sources/Extensions/DemoApp+Sentry.swift +++ b/DemoApp/Sources/Extensions/DemoApp+Sentry.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import Foundation diff --git a/DemoApp/Sources/Extensions/MicrophoneChecker+MicrophoneChecking.swift b/DemoApp/Sources/Extensions/MicrophoneChecker+MicrophoneChecking.swift index 483f77088..e1a16ca72 100644 --- a/DemoApp/Sources/Extensions/MicrophoneChecker+MicrophoneChecking.swift +++ b/DemoApp/Sources/Extensions/MicrophoneChecker+MicrophoneChecking.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import Combine diff --git a/DemoApp/Sources/Extensions/String+Unique.swift b/DemoApp/Sources/Extensions/String+Unique.swift index 607cc582d..682d5b8d3 100644 --- a/DemoApp/Sources/Extensions/String+Unique.swift +++ b/DemoApp/Sources/Extensions/String+Unique.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import Foundation diff --git a/DemoApp/Sources/Extensions/URL+Convenience.swift b/DemoApp/Sources/Extensions/URL+Convenience.swift index b96b8a563..b4235092d 100644 --- a/DemoApp/Sources/Extensions/URL+Convenience.swift +++ b/DemoApp/Sources/Extensions/URL+Convenience.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import Combine diff --git a/DemoApp/Sources/Extensions/User+Demo.swift b/DemoApp/Sources/Extensions/User+Demo.swift index 9795b69c7..bb11bc44e 100644 --- a/DemoApp/Sources/Extensions/User+Demo.swift +++ b/DemoApp/Sources/Extensions/User+Demo.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import Foundation diff --git a/DemoApp/Sources/Extensions/View+AlertWithTextField.swift b/DemoApp/Sources/Extensions/View+AlertWithTextField.swift index 74098fa5b..721e899fe 100644 --- a/DemoApp/Sources/Extensions/View+AlertWithTextField.swift +++ b/DemoApp/Sources/Extensions/View+AlertWithTextField.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import Foundation diff --git a/DemoApp/Sources/Models/Reaction.swift b/DemoApp/Sources/Models/Reaction.swift index b3aa3e5c1..3a17dca64 100644 --- a/DemoApp/Sources/Models/Reaction.swift +++ b/DemoApp/Sources/Models/Reaction.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import Foundation diff --git a/DemoApp/Sources/Models/TokenResponse.swift b/DemoApp/Sources/Models/TokenResponse.swift index 213e6d325..b7204c0d9 100644 --- a/DemoApp/Sources/Models/TokenResponse.swift +++ b/DemoApp/Sources/Models/TokenResponse.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import Foundation diff --git a/DemoApp/Sources/Models/UserCredentials.swift b/DemoApp/Sources/Models/UserCredentials.swift index 7f66a7471..17b8b8d72 100644 --- a/DemoApp/Sources/Models/UserCredentials.swift +++ b/DemoApp/Sources/Models/UserCredentials.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import Foundation diff --git a/DemoApp/Sources/Models/UserState.swift b/DemoApp/Sources/Models/UserState.swift index 63f44e6f8..22e9cd9d2 100644 --- a/DemoApp/Sources/Models/UserState.swift +++ b/DemoApp/Sources/Models/UserState.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import Foundation diff --git a/DemoApp/Sources/ViewModifiers/CallModifier/DemoCallModifier.swift b/DemoApp/Sources/ViewModifiers/CallModifier/DemoCallModifier.swift index 8bbd08979..7263a8d89 100644 --- a/DemoApp/Sources/ViewModifiers/CallModifier/DemoCallModifier.swift +++ b/DemoApp/Sources/ViewModifiers/CallModifier/DemoCallModifier.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import Foundation diff --git a/DemoApp/Sources/ViewModifiers/ChangeEnvironmentViewModifier/ChangeEnvironmentViewModifier.swift b/DemoApp/Sources/ViewModifiers/ChangeEnvironmentViewModifier/ChangeEnvironmentViewModifier.swift index a14a143b2..84dee74cd 100644 --- a/DemoApp/Sources/ViewModifiers/ChangeEnvironmentViewModifier/ChangeEnvironmentViewModifier.swift +++ b/DemoApp/Sources/ViewModifiers/ChangeEnvironmentViewModifier/ChangeEnvironmentViewModifier.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import SwiftUI diff --git a/DemoApp/Sources/ViewModifiers/DemoChatModifier.swift b/DemoApp/Sources/ViewModifiers/DemoChatModifier.swift index e94b08645..d5bdfcdb1 100644 --- a/DemoApp/Sources/ViewModifiers/DemoChatModifier.swift +++ b/DemoApp/Sources/ViewModifiers/DemoChatModifier.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import Foundation diff --git a/DemoApp/Sources/ViewModifiers/DragIndicatorViewModifier/DragIndicatorViewModifier.swift b/DemoApp/Sources/ViewModifiers/DragIndicatorViewModifier/DragIndicatorViewModifier.swift index 541a32b31..60528c93d 100644 --- a/DemoApp/Sources/ViewModifiers/DragIndicatorViewModifier/DragIndicatorViewModifier.swift +++ b/DemoApp/Sources/ViewModifiers/DragIndicatorViewModifier/DragIndicatorViewModifier.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import Foundation diff --git a/DemoApp/Sources/ViewModifiers/LongPressToFocusViewModifier/LongPressToFocusViewModifier.swift b/DemoApp/Sources/ViewModifiers/LongPressToFocusViewModifier/LongPressToFocusViewModifier.swift index 8918037b4..33ed23252 100644 --- a/DemoApp/Sources/ViewModifiers/LongPressToFocusViewModifier/LongPressToFocusViewModifier.swift +++ b/DemoApp/Sources/ViewModifiers/LongPressToFocusViewModifier/LongPressToFocusViewModifier.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import AVFoundation diff --git a/DemoApp/Sources/ViewModifiers/ModalNavigationBar/DemoModalNavigationBarViewModifier.swift b/DemoApp/Sources/ViewModifiers/ModalNavigationBar/DemoModalNavigationBarViewModifier.swift index c1b113a00..8fe14ffe8 100644 --- a/DemoApp/Sources/ViewModifiers/ModalNavigationBar/DemoModalNavigationBarViewModifier.swift +++ b/DemoApp/Sources/ViewModifiers/ModalNavigationBar/DemoModalNavigationBarViewModifier.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import Foundation diff --git a/DemoApp/Sources/ViewModifiers/MoreControls/DemoManualQualitySelectionButtonView.swift b/DemoApp/Sources/ViewModifiers/MoreControls/DemoManualQualitySelectionButtonView.swift index 3cb361767..80fdeaf0b 100644 --- a/DemoApp/Sources/ViewModifiers/MoreControls/DemoManualQualitySelectionButtonView.swift +++ b/DemoApp/Sources/ViewModifiers/MoreControls/DemoManualQualitySelectionButtonView.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import Foundation diff --git a/DemoApp/Sources/ViewModifiers/MoreControls/DemoMoreControlsViewModifier.swift b/DemoApp/Sources/ViewModifiers/MoreControls/DemoMoreControlsViewModifier.swift index 9be5053e1..eaa6771a3 100644 --- a/DemoApp/Sources/ViewModifiers/MoreControls/DemoMoreControlsViewModifier.swift +++ b/DemoApp/Sources/ViewModifiers/MoreControls/DemoMoreControlsViewModifier.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import Foundation diff --git a/DemoApp/Sources/ViewModifiers/MoreControls/DemoNoiseCancellationButtonView.swift b/DemoApp/Sources/ViewModifiers/MoreControls/DemoNoiseCancellationButtonView.swift index e1c4e3c35..faacd328c 100644 --- a/DemoApp/Sources/ViewModifiers/MoreControls/DemoNoiseCancellationButtonView.swift +++ b/DemoApp/Sources/ViewModifiers/MoreControls/DemoNoiseCancellationButtonView.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import Foundation diff --git a/DemoApp/Sources/ViewModifiers/MoreControls/DemoReconnectionButtonView.swift b/DemoApp/Sources/ViewModifiers/MoreControls/DemoReconnectionButtonView.swift index fb567d68a..9fb3beb28 100644 --- a/DemoApp/Sources/ViewModifiers/MoreControls/DemoReconnectionButtonView.swift +++ b/DemoApp/Sources/ViewModifiers/MoreControls/DemoReconnectionButtonView.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import Foundation diff --git a/DemoApp/Sources/ViewModifiers/MoreControls/DemoTranscriptionButtonView.swift b/DemoApp/Sources/ViewModifiers/MoreControls/DemoTranscriptionButtonView.swift index 9e35eca18..6e4d5557b 100644 --- a/DemoApp/Sources/ViewModifiers/MoreControls/DemoTranscriptionButtonView.swift +++ b/DemoApp/Sources/ViewModifiers/MoreControls/DemoTranscriptionButtonView.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import Foundation diff --git a/DemoApp/Sources/ViewModifiers/MoreControls/Extensions/View+PresentDemoMoreMenu.swift b/DemoApp/Sources/ViewModifiers/MoreControls/Extensions/View+PresentDemoMoreMenu.swift index ce22a87ad..cba03d16d 100644 --- a/DemoApp/Sources/ViewModifiers/MoreControls/Extensions/View+PresentDemoMoreMenu.swift +++ b/DemoApp/Sources/ViewModifiers/MoreControls/Extensions/View+PresentDemoMoreMenu.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import Foundation diff --git a/DemoApp/Sources/ViewModifiers/ThermalStateViewModifier/ThermalStateViewModifier.swift b/DemoApp/Sources/ViewModifiers/ThermalStateViewModifier/ThermalStateViewModifier.swift index 5f243fad2..8eaa3cfdd 100644 --- a/DemoApp/Sources/ViewModifiers/ThermalStateViewModifier/ThermalStateViewModifier.swift +++ b/DemoApp/Sources/ViewModifiers/ThermalStateViewModifier/ThermalStateViewModifier.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import Foundation diff --git a/DemoApp/Sources/ViewModifiers/VideoCallParticipantModifier/DemoLocalViewModifier.swift b/DemoApp/Sources/ViewModifiers/VideoCallParticipantModifier/DemoLocalViewModifier.swift index 6ca5d0b77..ba32397ca 100644 --- a/DemoApp/Sources/ViewModifiers/VideoCallParticipantModifier/DemoLocalViewModifier.swift +++ b/DemoApp/Sources/ViewModifiers/VideoCallParticipantModifier/DemoLocalViewModifier.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import Foundation diff --git a/DemoApp/Sources/ViewModifiers/VideoCallParticipantModifier/DemoVideoCallParticipantModifier.swift b/DemoApp/Sources/ViewModifiers/VideoCallParticipantModifier/DemoVideoCallParticipantModifier.swift index d3cd1b327..bee8cd9a9 100644 --- a/DemoApp/Sources/ViewModifiers/VideoCallParticipantModifier/DemoVideoCallParticipantModifier.swift +++ b/DemoApp/Sources/ViewModifiers/VideoCallParticipantModifier/DemoVideoCallParticipantModifier.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import Foundation diff --git a/DemoApp/Sources/Views/CallTopView/DemoCallTopView.swift b/DemoApp/Sources/Views/CallTopView/DemoCallTopView.swift index 45931e03d..6a4480971 100644 --- a/DemoApp/Sources/Views/CallTopView/DemoCallTopView.swift +++ b/DemoApp/Sources/Views/CallTopView/DemoCallTopView.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import StreamVideo diff --git a/DemoApp/Sources/Views/CallView/CallingView/DemoCallingViewModifier.swift b/DemoApp/Sources/Views/CallView/CallingView/DemoCallingViewModifier.swift index f2802fea5..f098a905d 100644 --- a/DemoApp/Sources/Views/CallView/CallingView/DemoCallingViewModifier.swift +++ b/DemoApp/Sources/Views/CallView/CallingView/DemoCallingViewModifier.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import Foundation diff --git a/DemoApp/Sources/Views/CallView/CallingView/DetailedCallingView.swift b/DemoApp/Sources/Views/CallView/CallingView/DetailedCallingView.swift index 1df00a998..d5f039cd7 100644 --- a/DemoApp/Sources/Views/CallView/CallingView/DetailedCallingView.swift +++ b/DemoApp/Sources/Views/CallView/CallingView/DetailedCallingView.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import Intents diff --git a/DemoApp/Sources/Views/CallView/CallingView/SimpleCallingView.swift b/DemoApp/Sources/Views/CallView/CallingView/SimpleCallingView.swift index a5eabddbe..b536fc80b 100644 --- a/DemoApp/Sources/Views/CallView/CallingView/SimpleCallingView.swift +++ b/DemoApp/Sources/Views/CallView/CallingView/SimpleCallingView.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import Intents diff --git a/DemoApp/Sources/Views/CallView/DemoCallContainerView.swift b/DemoApp/Sources/Views/CallView/DemoCallContainerView.swift index 00c31813a..936f22606 100644 --- a/DemoApp/Sources/Views/CallView/DemoCallContainerView.swift +++ b/DemoApp/Sources/Views/CallView/DemoCallContainerView.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import Intents diff --git a/DemoApp/Sources/Views/CallView/DemoCallContentView.swift b/DemoApp/Sources/Views/CallView/DemoCallContentView.swift index 13e2db43b..92e9e7542 100644 --- a/DemoApp/Sources/Views/CallView/DemoCallContentView.swift +++ b/DemoApp/Sources/Views/CallView/DemoCallContentView.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import Foundation diff --git a/DemoApp/Sources/Views/CallView/DemoCallView.swift b/DemoApp/Sources/Views/CallView/DemoCallView.swift index f7a571a2c..8e036dc19 100644 --- a/DemoApp/Sources/Views/CallView/DemoCallView.swift +++ b/DemoApp/Sources/Views/CallView/DemoCallView.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import EffectsLibrary diff --git a/DemoApp/Sources/Views/CallView/DemoCallingTopView.swift b/DemoApp/Sources/Views/CallView/DemoCallingTopView.swift index 6adcfaab8..4c7b752de 100644 --- a/DemoApp/Sources/Views/CallView/DemoCallingTopView.swift +++ b/DemoApp/Sources/Views/CallView/DemoCallingTopView.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import Foundation diff --git a/DemoApp/Sources/Views/CallView/DemoCallsView.swift b/DemoApp/Sources/Views/CallView/DemoCallsView.swift index dba77d233..17203b822 100644 --- a/DemoApp/Sources/Views/CallView/DemoCallsView.swift +++ b/DemoApp/Sources/Views/CallView/DemoCallsView.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import StreamVideo diff --git a/DemoApp/Sources/Views/CallView/DemoCallsViewModel.swift b/DemoApp/Sources/Views/CallView/DemoCallsViewModel.swift index dd11869b8..560a21164 100644 --- a/DemoApp/Sources/Views/CallView/DemoCallsViewModel.swift +++ b/DemoApp/Sources/Views/CallView/DemoCallsViewModel.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import Foundation diff --git a/DemoApp/Sources/Views/CallView/DemoQRCodeScannerButton.swift b/DemoApp/Sources/Views/CallView/DemoQRCodeScannerButton.swift index 1f3b00631..22f7ab84b 100644 --- a/DemoApp/Sources/Views/CallView/DemoQRCodeScannerButton.swift +++ b/DemoApp/Sources/Views/CallView/DemoQRCodeScannerButton.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import Foundation diff --git a/DemoApp/Sources/Views/CallView/DemoSessionTimerView.swift b/DemoApp/Sources/Views/CallView/DemoSessionTimerView.swift index 545a1e60a..808c13f23 100644 --- a/DemoApp/Sources/Views/CallView/DemoSessionTimerView.swift +++ b/DemoApp/Sources/Views/CallView/DemoSessionTimerView.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import StreamVideo diff --git a/DemoApp/Sources/Views/CallView/DemoSnapshotViewModel.swift b/DemoApp/Sources/Views/CallView/DemoSnapshotViewModel.swift index ab089808f..8c0899265 100644 --- a/DemoApp/Sources/Views/CallView/DemoSnapshotViewModel.swift +++ b/DemoApp/Sources/Views/CallView/DemoSnapshotViewModel.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import Foundation diff --git a/DemoApp/Sources/Views/CallsView/CallsView.swift b/DemoApp/Sources/Views/CallsView/CallsView.swift index f27f1f655..f95389f20 100644 --- a/DemoApp/Sources/Views/CallsView/CallsView.swift +++ b/DemoApp/Sources/Views/CallsView/CallsView.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import StreamVideo diff --git a/DemoApp/Sources/Views/CallsView/CallsViewModel.swift b/DemoApp/Sources/Views/CallsView/CallsViewModel.swift index ad4c12a51..161923d7c 100644 --- a/DemoApp/Sources/Views/CallsView/CallsViewModel.swift +++ b/DemoApp/Sources/Views/CallsView/CallsViewModel.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import Combine diff --git a/DemoApp/Sources/Views/CustomCallView.swift b/DemoApp/Sources/Views/CustomCallView.swift index 702950567..96f67d459 100644 --- a/DemoApp/Sources/Views/CustomCallView.swift +++ b/DemoApp/Sources/Views/CustomCallView.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import StreamVideo diff --git a/DemoApp/Sources/Views/JoinCallView.swift b/DemoApp/Sources/Views/JoinCallView.swift index 3df9957e7..4f109c48e 100644 --- a/DemoApp/Sources/Views/JoinCallView.swift +++ b/DemoApp/Sources/Views/JoinCallView.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import StreamVideo diff --git a/DemoApp/Sources/Views/LinkInfoView/LinkInfoView.swift b/DemoApp/Sources/Views/LinkInfoView/LinkInfoView.swift index 7eb1a5d0c..e55351c61 100644 --- a/DemoApp/Sources/Views/LinkInfoView/LinkInfoView.swift +++ b/DemoApp/Sources/Views/LinkInfoView/LinkInfoView.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import StreamVideo diff --git a/DemoApp/Sources/Views/LoadingView/LoadingView.swift b/DemoApp/Sources/Views/LoadingView/LoadingView.swift index 52766a666..12e8cc78e 100644 --- a/DemoApp/Sources/Views/LoadingView/LoadingView.swift +++ b/DemoApp/Sources/Views/LoadingView/LoadingView.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import StreamVideo diff --git a/DemoApp/Sources/Views/Login/AddUserView.swift b/DemoApp/Sources/Views/Login/AddUserView.swift index 840da0bda..adc1bf9a6 100644 --- a/DemoApp/Sources/Views/Login/AddUserView.swift +++ b/DemoApp/Sources/Views/Login/AddUserView.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import StreamVideo diff --git a/DemoApp/Sources/Views/Login/DebugMenu.swift b/DemoApp/Sources/Views/Login/DebugMenu.swift index 4062b1043..f4b4ed3b6 100644 --- a/DemoApp/Sources/Views/Login/DebugMenu.swift +++ b/DemoApp/Sources/Views/Login/DebugMenu.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import Foundation diff --git a/DemoApp/Sources/Views/Login/GoogleHelper.swift b/DemoApp/Sources/Views/Login/GoogleHelper.swift index 67ba528f2..f6a1738ed 100644 --- a/DemoApp/Sources/Views/Login/GoogleHelper.swift +++ b/DemoApp/Sources/Views/Login/GoogleHelper.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import Foundation diff --git a/DemoApp/Sources/Views/Login/LoginView.swift b/DemoApp/Sources/Views/Login/LoginView.swift index 07bcd99dc..fd95172b4 100644 --- a/DemoApp/Sources/Views/Login/LoginView.swift +++ b/DemoApp/Sources/Views/Login/LoginView.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import StreamVideo diff --git a/DemoApp/Sources/Views/Login/LoginViewModel.swift b/DemoApp/Sources/Views/Login/LoginViewModel.swift index f0e7c86d0..126b51e03 100644 --- a/DemoApp/Sources/Views/Login/LoginViewModel.swift +++ b/DemoApp/Sources/Views/Login/LoginViewModel.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import StreamVideo diff --git a/DemoApp/Sources/Views/Reactions/DemoReactionsOverlayView.swift b/DemoApp/Sources/Views/Reactions/DemoReactionsOverlayView.swift index 00f0ae599..5f989905d 100644 --- a/DemoApp/Sources/Views/Reactions/DemoReactionsOverlayView.swift +++ b/DemoApp/Sources/Views/Reactions/DemoReactionsOverlayView.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import Foundation diff --git a/DemoApp/Sources/Views/Reactions/ReactionIcon.swift b/DemoApp/Sources/Views/Reactions/ReactionIcon.swift index 405bc472f..ee02a5cea 100644 --- a/DemoApp/Sources/Views/Reactions/ReactionIcon.swift +++ b/DemoApp/Sources/Views/Reactions/ReactionIcon.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import SwiftUI diff --git a/DemoApp/Sources/Views/Reactions/ReactionOverlayView.swift b/DemoApp/Sources/Views/Reactions/ReactionOverlayView.swift index a295e0031..6f000399f 100644 --- a/DemoApp/Sources/Views/Reactions/ReactionOverlayView.swift +++ b/DemoApp/Sources/Views/Reactions/ReactionOverlayView.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import StreamVideo diff --git a/DemoApp/Sources/Views/Reactions/ReactionsViewModifier.swift b/DemoApp/Sources/Views/Reactions/ReactionsViewModifier.swift index 063c4cda2..6dc8c3fda 100644 --- a/DemoApp/Sources/Views/Reactions/ReactionsViewModifier.swift +++ b/DemoApp/Sources/Views/Reactions/ReactionsViewModifier.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import StreamVideo diff --git a/DemoApp/Sources/Views/ShareActivityView/ShareActivityView.swift b/DemoApp/Sources/Views/ShareActivityView/ShareActivityView.swift index bc8450ca6..209bc365a 100644 --- a/DemoApp/Sources/Views/ShareActivityView/ShareActivityView.swift +++ b/DemoApp/Sources/Views/ShareActivityView/ShareActivityView.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import StreamVideo diff --git a/DemoApp/Sources/Views/StatsView/DemoStatsAdapter.swift b/DemoApp/Sources/Views/StatsView/DemoStatsAdapter.swift index 5ab680e5c..ebe4fc107 100644 --- a/DemoApp/Sources/Views/StatsView/DemoStatsAdapter.swift +++ b/DemoApp/Sources/Views/StatsView/DemoStatsAdapter.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import Combine diff --git a/DemoApp/Sources/Views/StatsView/DemoStatsView.swift b/DemoApp/Sources/Views/StatsView/DemoStatsView.swift index 7ffd60b10..17cb17960 100644 --- a/DemoApp/Sources/Views/StatsView/DemoStatsView.swift +++ b/DemoApp/Sources/Views/StatsView/DemoStatsView.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import Charts diff --git a/DemoAppUIKit/SceneDelegate.swift b/DemoAppUIKit/SceneDelegate.swift index 076bb61e9..018f7ed6e 100644 --- a/DemoAppUIKit/SceneDelegate.swift +++ b/DemoAppUIKit/SceneDelegate.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import Combine diff --git a/DemoAppUIKit/Sources/AppDelegate.swift b/DemoAppUIKit/Sources/AppDelegate.swift index 84e9b8f3e..f893aa76f 100644 --- a/DemoAppUIKit/Sources/AppDelegate.swift +++ b/DemoAppUIKit/Sources/AppDelegate.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import StreamVideo diff --git a/DemoAppUIKit/Sources/CallViewHelper.swift b/DemoAppUIKit/Sources/CallViewHelper.swift index a30a7fac9..82b4709dd 100644 --- a/DemoAppUIKit/Sources/CallViewHelper.swift +++ b/DemoAppUIKit/Sources/CallViewHelper.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import UIKit diff --git a/DemoAppUIKit/Sources/HomeViewController.swift b/DemoAppUIKit/Sources/HomeViewController.swift index 98fcc9637..a001151e5 100644 --- a/DemoAppUIKit/Sources/HomeViewController.swift +++ b/DemoAppUIKit/Sources/HomeViewController.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import Combine diff --git a/ScreenSharing/SampleHandler.swift b/ScreenSharing/SampleHandler.swift index d14daf76b..d7c575ca2 100644 --- a/ScreenSharing/SampleHandler.swift +++ b/ScreenSharing/SampleHandler.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import ReplayKit diff --git a/Sources/StreamVideo/Call.swift b/Sources/StreamVideo/Call.swift index 11bb444ab..a2c7c5a16 100644 --- a/Sources/StreamVideo/Call.swift +++ b/Sources/StreamVideo/Call.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import AVFoundation diff --git a/Sources/StreamVideo/CallKit/AvailabilityPolicy/CallKitAlwaysAvailabilityPolicy.swift b/Sources/StreamVideo/CallKit/AvailabilityPolicy/CallKitAlwaysAvailabilityPolicy.swift index 8c524f842..882be6eb3 100644 --- a/Sources/StreamVideo/CallKit/AvailabilityPolicy/CallKitAlwaysAvailabilityPolicy.swift +++ b/Sources/StreamVideo/CallKit/AvailabilityPolicy/CallKitAlwaysAvailabilityPolicy.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import Foundation diff --git a/Sources/StreamVideo/CallKit/AvailabilityPolicy/CallKitAvailabilityPolicy.swift b/Sources/StreamVideo/CallKit/AvailabilityPolicy/CallKitAvailabilityPolicy.swift index b0f335ded..4dd00103b 100644 --- a/Sources/StreamVideo/CallKit/AvailabilityPolicy/CallKitAvailabilityPolicy.swift +++ b/Sources/StreamVideo/CallKit/AvailabilityPolicy/CallKitAvailabilityPolicy.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import Foundation diff --git a/Sources/StreamVideo/CallKit/AvailabilityPolicy/CallKitAvailabilityPolicyProtocol.swift b/Sources/StreamVideo/CallKit/AvailabilityPolicy/CallKitAvailabilityPolicyProtocol.swift index 4a1e934f4..5e624d815 100644 --- a/Sources/StreamVideo/CallKit/AvailabilityPolicy/CallKitAvailabilityPolicyProtocol.swift +++ b/Sources/StreamVideo/CallKit/AvailabilityPolicy/CallKitAvailabilityPolicyProtocol.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import Foundation diff --git a/Sources/StreamVideo/CallKit/AvailabilityPolicy/CallKitRegionBasedAvailabilityPolicy.swift b/Sources/StreamVideo/CallKit/AvailabilityPolicy/CallKitRegionBasedAvailabilityPolicy.swift index fd3e3845c..bbfdd4715 100644 --- a/Sources/StreamVideo/CallKit/AvailabilityPolicy/CallKitRegionBasedAvailabilityPolicy.swift +++ b/Sources/StreamVideo/CallKit/AvailabilityPolicy/CallKitRegionBasedAvailabilityPolicy.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import Foundation diff --git a/Sources/StreamVideo/CallKit/CallKitPushNotificationAdapter.swift b/Sources/StreamVideo/CallKit/CallKitPushNotificationAdapter.swift index eee6009ac..86d1f8b38 100644 --- a/Sources/StreamVideo/CallKit/CallKitPushNotificationAdapter.swift +++ b/Sources/StreamVideo/CallKit/CallKitPushNotificationAdapter.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import Foundation diff --git a/Sources/StreamVideo/CallSettings/CallSettingsManager.swift b/Sources/StreamVideo/CallSettings/CallSettingsManager.swift index 6a96cf0d0..1434dae22 100644 --- a/Sources/StreamVideo/CallSettings/CallSettingsManager.swift +++ b/Sources/StreamVideo/CallSettings/CallSettingsManager.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import Foundation diff --git a/Sources/StreamVideo/CallSettings/CameraManager.swift b/Sources/StreamVideo/CallSettings/CameraManager.swift index d98de3157..d5552ea0e 100644 --- a/Sources/StreamVideo/CallSettings/CameraManager.swift +++ b/Sources/StreamVideo/CallSettings/CameraManager.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import Combine diff --git a/Sources/StreamVideo/CallSettings/MicrophoneManager.swift b/Sources/StreamVideo/CallSettings/MicrophoneManager.swift index adfda18e7..8af75d6dc 100644 --- a/Sources/StreamVideo/CallSettings/MicrophoneManager.swift +++ b/Sources/StreamVideo/CallSettings/MicrophoneManager.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import Combine diff --git a/Sources/StreamVideo/CallSettings/SpeakerManager.swift b/Sources/StreamVideo/CallSettings/SpeakerManager.swift index 83ebc6f72..31329d434 100644 --- a/Sources/StreamVideo/CallSettings/SpeakerManager.swift +++ b/Sources/StreamVideo/CallSettings/SpeakerManager.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import Combine diff --git a/Sources/StreamVideo/CallState.swift b/Sources/StreamVideo/CallState.swift index 01da6f3c1..73661a1e5 100644 --- a/Sources/StreamVideo/CallState.swift +++ b/Sources/StreamVideo/CallState.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import Combine diff --git a/Sources/StreamVideo/Controllers/CallController.swift b/Sources/StreamVideo/Controllers/CallController.swift index 556f488af..6d9f16e51 100644 --- a/Sources/StreamVideo/Controllers/CallController.swift +++ b/Sources/StreamVideo/Controllers/CallController.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import Combine diff --git a/Sources/StreamVideo/Controllers/CallsController.swift b/Sources/StreamVideo/Controllers/CallsController.swift index d51a9b1fd..f8bf9c2ba 100644 --- a/Sources/StreamVideo/Controllers/CallsController.swift +++ b/Sources/StreamVideo/Controllers/CallsController.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import Combine diff --git a/Sources/StreamVideo/DependencyInjection/InjectedValues.swift b/Sources/StreamVideo/DependencyInjection/InjectedValues.swift index b3ce655a6..ab79e93e6 100644 --- a/Sources/StreamVideo/DependencyInjection/InjectedValues.swift +++ b/Sources/StreamVideo/DependencyInjection/InjectedValues.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import Foundation diff --git a/Sources/StreamVideo/DependencyInjection/InjectedValuesExtensions.swift b/Sources/StreamVideo/DependencyInjection/InjectedValuesExtensions.swift index e7cb6e81d..839b3aea6 100644 --- a/Sources/StreamVideo/DependencyInjection/InjectedValuesExtensions.swift +++ b/Sources/StreamVideo/DependencyInjection/InjectedValuesExtensions.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import Foundation diff --git a/Sources/StreamVideo/Errors/ErrorPayload.swift b/Sources/StreamVideo/Errors/ErrorPayload.swift index 33770b09a..7bb49091e 100644 --- a/Sources/StreamVideo/Errors/ErrorPayload.swift +++ b/Sources/StreamVideo/Errors/ErrorPayload.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import Foundation diff --git a/Sources/StreamVideo/Errors/Errors.swift b/Sources/StreamVideo/Errors/Errors.swift index e3f962b27..ce9ee6b3f 100644 --- a/Sources/StreamVideo/Errors/Errors.swift +++ b/Sources/StreamVideo/Errors/Errors.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import Foundation diff --git a/Sources/StreamVideo/Generated/SystemEnvironment+Version.swift b/Sources/StreamVideo/Generated/SystemEnvironment+Version.swift index 5d58e32dc..2f6f8cc56 100644 --- a/Sources/StreamVideo/Generated/SystemEnvironment+Version.swift +++ b/Sources/StreamVideo/Generated/SystemEnvironment+Version.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // // ⚠️ Generated file, please use `fastlane release major|minor|patch` lanes diff --git a/Sources/StreamVideo/HTTPClient/HTTPClient.swift b/Sources/StreamVideo/HTTPClient/HTTPClient.swift index f48154a56..1acc21fac 100644 --- a/Sources/StreamVideo/HTTPClient/HTTPClient.swift +++ b/Sources/StreamVideo/HTTPClient/HTTPClient.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import Foundation diff --git a/Sources/StreamVideo/HTTPClient/HTTPConfig.swift b/Sources/StreamVideo/HTTPClient/HTTPConfig.swift index da2a9d852..39d679736 100644 --- a/Sources/StreamVideo/HTTPClient/HTTPConfig.swift +++ b/Sources/StreamVideo/HTTPClient/HTTPConfig.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import Foundation diff --git a/Sources/StreamVideo/HTTPClient/HTTPUtils.swift b/Sources/StreamVideo/HTTPClient/HTTPUtils.swift index abf07e3cd..8e3c3fbef 100644 --- a/Sources/StreamVideo/HTTPClient/HTTPUtils.swift +++ b/Sources/StreamVideo/HTTPClient/HTTPUtils.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import Foundation diff --git a/Sources/StreamVideo/HTTPClient/InternetConnection.swift b/Sources/StreamVideo/HTTPClient/InternetConnection.swift index bd606f306..c16ace160 100644 --- a/Sources/StreamVideo/HTTPClient/InternetConnection.swift +++ b/Sources/StreamVideo/HTTPClient/InternetConnection.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import Combine diff --git a/Sources/StreamVideo/Models/CallSettings.swift b/Sources/StreamVideo/Models/CallSettings.swift index f34445e5d..1bd252b1c 100644 --- a/Sources/StreamVideo/Models/CallSettings.swift +++ b/Sources/StreamVideo/Models/CallSettings.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import Combine diff --git a/Sources/StreamVideo/Models/CallStatsReport.swift b/Sources/StreamVideo/Models/CallStatsReport.swift index ed5a66f84..b2fff6eaa 100644 --- a/Sources/StreamVideo/Models/CallStatsReport.swift +++ b/Sources/StreamVideo/Models/CallStatsReport.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import Foundation diff --git a/Sources/StreamVideo/Models/CallType.swift b/Sources/StreamVideo/Models/CallType.swift index f73511a56..c65d02134 100644 --- a/Sources/StreamVideo/Models/CallType.swift +++ b/Sources/StreamVideo/Models/CallType.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // extension String { diff --git a/Sources/StreamVideo/Models/CallsQuery.swift b/Sources/StreamVideo/Models/CallsQuery.swift index 5af8ef717..3c127a1f4 100644 --- a/Sources/StreamVideo/Models/CallsQuery.swift +++ b/Sources/StreamVideo/Models/CallsQuery.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import Foundation diff --git a/Sources/StreamVideo/Models/ConnectOptions.swift b/Sources/StreamVideo/Models/ConnectOptions.swift index 210047103..d4b61583d 100644 --- a/Sources/StreamVideo/Models/ConnectOptions.swift +++ b/Sources/StreamVideo/Models/ConnectOptions.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import Foundation diff --git a/Sources/StreamVideo/Models/ConnectionQuality.swift b/Sources/StreamVideo/Models/ConnectionQuality.swift index 31998f2c3..a7965791e 100644 --- a/Sources/StreamVideo/Models/ConnectionQuality.swift +++ b/Sources/StreamVideo/Models/ConnectionQuality.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import Foundation diff --git a/Sources/StreamVideo/Models/ConnectionState.swift b/Sources/StreamVideo/Models/ConnectionState.swift index ad29ca2de..24be15ff8 100644 --- a/Sources/StreamVideo/Models/ConnectionState.swift +++ b/Sources/StreamVideo/Models/ConnectionState.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // public enum ConnectionState: Equatable, Sendable { diff --git a/Sources/StreamVideo/Models/CoordinatorModels.swift b/Sources/StreamVideo/Models/CoordinatorModels.swift index 725230f32..bc9f727c1 100644 --- a/Sources/StreamVideo/Models/CoordinatorModels.swift +++ b/Sources/StreamVideo/Models/CoordinatorModels.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import Foundation diff --git a/Sources/StreamVideo/Models/DeviceData.swift b/Sources/StreamVideo/Models/DeviceData.swift index 445140275..5c7cc3dd5 100644 --- a/Sources/StreamVideo/Models/DeviceData.swift +++ b/Sources/StreamVideo/Models/DeviceData.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import Foundation diff --git a/Sources/StreamVideo/Models/Extensions/RejectCallRequest+Reason.swift b/Sources/StreamVideo/Models/Extensions/RejectCallRequest+Reason.swift index faed640b9..7b9750164 100644 --- a/Sources/StreamVideo/Models/Extensions/RejectCallRequest+Reason.swift +++ b/Sources/StreamVideo/Models/Extensions/RejectCallRequest+Reason.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import Foundation diff --git a/Sources/StreamVideo/Models/Extensions/Stream_Video_Sfu_Models_AppleThermalState+Convenience.swift b/Sources/StreamVideo/Models/Extensions/Stream_Video_Sfu_Models_AppleThermalState+Convenience.swift index 557d7bbd1..a8c890e21 100644 --- a/Sources/StreamVideo/Models/Extensions/Stream_Video_Sfu_Models_AppleThermalState+Convenience.swift +++ b/Sources/StreamVideo/Models/Extensions/Stream_Video_Sfu_Models_AppleThermalState+Convenience.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import Foundation diff --git a/Sources/StreamVideo/Models/IncomingVideoQualitySettings.swift b/Sources/StreamVideo/Models/IncomingVideoQualitySettings.swift index a4df717a0..30cc9c949 100644 --- a/Sources/StreamVideo/Models/IncomingVideoQualitySettings.swift +++ b/Sources/StreamVideo/Models/IncomingVideoQualitySettings.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import Foundation diff --git a/Sources/StreamVideo/Models/Member.swift b/Sources/StreamVideo/Models/Member.swift index 7bec721a1..3ea6a030b 100644 --- a/Sources/StreamVideo/Models/Member.swift +++ b/Sources/StreamVideo/Models/Member.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import Foundation diff --git a/Sources/StreamVideo/Models/Permissions.swift b/Sources/StreamVideo/Models/Permissions.swift index a65ed141c..d58a458dd 100644 --- a/Sources/StreamVideo/Models/Permissions.swift +++ b/Sources/StreamVideo/Models/Permissions.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import Foundation diff --git a/Sources/StreamVideo/Models/PushNotificationsConfig.swift b/Sources/StreamVideo/Models/PushNotificationsConfig.swift index 5c94d2925..960169898 100644 --- a/Sources/StreamVideo/Models/PushNotificationsConfig.swift +++ b/Sources/StreamVideo/Models/PushNotificationsConfig.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import Foundation diff --git a/Sources/StreamVideo/Models/ScreenSharingSession.swift b/Sources/StreamVideo/Models/ScreenSharingSession.swift index f04cae90c..138782d23 100644 --- a/Sources/StreamVideo/Models/ScreenSharingSession.swift +++ b/Sources/StreamVideo/Models/ScreenSharingSession.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import Foundation diff --git a/Sources/StreamVideo/Models/Token.swift b/Sources/StreamVideo/Models/Token.swift index 8ebfe63bd..ec6168bc7 100644 --- a/Sources/StreamVideo/Models/Token.swift +++ b/Sources/StreamVideo/Models/Token.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import Foundation diff --git a/Sources/StreamVideo/Models/User.swift b/Sources/StreamVideo/Models/User.swift index 6d8e8bf92..4236ed03f 100644 --- a/Sources/StreamVideo/Models/User.swift +++ b/Sources/StreamVideo/Models/User.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import Foundation diff --git a/Sources/StreamVideo/Models/VideoLayer.swift b/Sources/StreamVideo/Models/VideoLayer.swift index ee6a07a47..40a103812 100644 --- a/Sources/StreamVideo/Models/VideoLayer.swift +++ b/Sources/StreamVideo/Models/VideoLayer.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import CoreMedia diff --git a/Sources/StreamVideo/OpenApi/AuthMiddlewares.swift b/Sources/StreamVideo/OpenApi/AuthMiddlewares.swift index 1f9830a22..ad80f1708 100644 --- a/Sources/StreamVideo/OpenApi/AuthMiddlewares.swift +++ b/Sources/StreamVideo/OpenApi/AuthMiddlewares.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import Foundation diff --git a/Sources/StreamVideo/OpenApi/OwnCapability+Identifiable.swift b/Sources/StreamVideo/OpenApi/OwnCapability+Identifiable.swift index a9430adcd..9647cb002 100644 --- a/Sources/StreamVideo/OpenApi/OwnCapability+Identifiable.swift +++ b/Sources/StreamVideo/OpenApi/OwnCapability+Identifiable.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import Foundation diff --git a/Sources/StreamVideo/OpenApi/URLSessionTransport.swift b/Sources/StreamVideo/OpenApi/URLSessionTransport.swift index 1e4444ea1..40c389130 100644 --- a/Sources/StreamVideo/OpenApi/URLSessionTransport.swift +++ b/Sources/StreamVideo/OpenApi/URLSessionTransport.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import Foundation diff --git a/Sources/StreamVideo/OpenApi/generated/APIHelper.swift b/Sources/StreamVideo/OpenApi/generated/APIHelper.swift index 4851369f4..d8942dd35 100644 --- a/Sources/StreamVideo/OpenApi/generated/APIHelper.swift +++ b/Sources/StreamVideo/OpenApi/generated/APIHelper.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import Foundation diff --git a/Sources/StreamVideo/OpenApi/generated/APIs/DefaultAPI.swift b/Sources/StreamVideo/OpenApi/generated/APIs/DefaultAPI.swift index b9730071d..a3f0da4ac 100644 --- a/Sources/StreamVideo/OpenApi/generated/APIs/DefaultAPI.swift +++ b/Sources/StreamVideo/OpenApi/generated/APIs/DefaultAPI.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import Foundation diff --git a/Sources/StreamVideo/OpenApi/generated/CodableHelper.swift b/Sources/StreamVideo/OpenApi/generated/CodableHelper.swift index 851e2f0d2..fe18b4a10 100644 --- a/Sources/StreamVideo/OpenApi/generated/CodableHelper.swift +++ b/Sources/StreamVideo/OpenApi/generated/CodableHelper.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import Foundation diff --git a/Sources/StreamVideo/OpenApi/generated/Extensions.swift b/Sources/StreamVideo/OpenApi/generated/Extensions.swift index e9f706799..e348a3eeb 100644 --- a/Sources/StreamVideo/OpenApi/generated/Extensions.swift +++ b/Sources/StreamVideo/OpenApi/generated/Extensions.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import Foundation diff --git a/Sources/StreamVideo/OpenApi/generated/JSONDataEncoding.swift b/Sources/StreamVideo/OpenApi/generated/JSONDataEncoding.swift index 189e2f56d..2cfbe4031 100644 --- a/Sources/StreamVideo/OpenApi/generated/JSONDataEncoding.swift +++ b/Sources/StreamVideo/OpenApi/generated/JSONDataEncoding.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import Foundation diff --git a/Sources/StreamVideo/OpenApi/generated/Models.swift b/Sources/StreamVideo/OpenApi/generated/Models.swift index 23cc5b658..a81c4320e 100644 --- a/Sources/StreamVideo/OpenApi/generated/Models.swift +++ b/Sources/StreamVideo/OpenApi/generated/Models.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import Foundation diff --git a/Sources/StreamVideo/OpenApi/generated/Models/APIError.swift b/Sources/StreamVideo/OpenApi/generated/Models/APIError.swift index c526f45ab..88f199721 100644 --- a/Sources/StreamVideo/OpenApi/generated/Models/APIError.swift +++ b/Sources/StreamVideo/OpenApi/generated/Models/APIError.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import Foundation diff --git a/Sources/StreamVideo/OpenApi/generated/Models/AcceptCallResponse.swift b/Sources/StreamVideo/OpenApi/generated/Models/AcceptCallResponse.swift index aac4e695e..460d9a765 100644 --- a/Sources/StreamVideo/OpenApi/generated/Models/AcceptCallResponse.swift +++ b/Sources/StreamVideo/OpenApi/generated/Models/AcceptCallResponse.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import Foundation diff --git a/Sources/StreamVideo/OpenApi/generated/Models/AggregatedStats.swift b/Sources/StreamVideo/OpenApi/generated/Models/AggregatedStats.swift index c0e81ce6b..c58715593 100644 --- a/Sources/StreamVideo/OpenApi/generated/Models/AggregatedStats.swift +++ b/Sources/StreamVideo/OpenApi/generated/Models/AggregatedStats.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import Foundation diff --git a/Sources/StreamVideo/OpenApi/generated/Models/AudioSettings.swift b/Sources/StreamVideo/OpenApi/generated/Models/AudioSettings.swift index 8cde81144..be0a20aec 100644 --- a/Sources/StreamVideo/OpenApi/generated/Models/AudioSettings.swift +++ b/Sources/StreamVideo/OpenApi/generated/Models/AudioSettings.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import Foundation diff --git a/Sources/StreamVideo/OpenApi/generated/Models/AudioSettingsRequest.swift b/Sources/StreamVideo/OpenApi/generated/Models/AudioSettingsRequest.swift index 5a29655a4..2cde483a0 100644 --- a/Sources/StreamVideo/OpenApi/generated/Models/AudioSettingsRequest.swift +++ b/Sources/StreamVideo/OpenApi/generated/Models/AudioSettingsRequest.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import Foundation diff --git a/Sources/StreamVideo/OpenApi/generated/Models/BackstageSettings.swift b/Sources/StreamVideo/OpenApi/generated/Models/BackstageSettings.swift index cb7a415ba..5aa6884cf 100644 --- a/Sources/StreamVideo/OpenApi/generated/Models/BackstageSettings.swift +++ b/Sources/StreamVideo/OpenApi/generated/Models/BackstageSettings.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import Foundation diff --git a/Sources/StreamVideo/OpenApi/generated/Models/BackstageSettingsRequest.swift b/Sources/StreamVideo/OpenApi/generated/Models/BackstageSettingsRequest.swift index 8d48b744f..d767df820 100644 --- a/Sources/StreamVideo/OpenApi/generated/Models/BackstageSettingsRequest.swift +++ b/Sources/StreamVideo/OpenApi/generated/Models/BackstageSettingsRequest.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import Foundation diff --git a/Sources/StreamVideo/OpenApi/generated/Models/BlockUserRequest.swift b/Sources/StreamVideo/OpenApi/generated/Models/BlockUserRequest.swift index 5285e7f6e..35cc41723 100644 --- a/Sources/StreamVideo/OpenApi/generated/Models/BlockUserRequest.swift +++ b/Sources/StreamVideo/OpenApi/generated/Models/BlockUserRequest.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import Foundation diff --git a/Sources/StreamVideo/OpenApi/generated/Models/BlockUserResponse.swift b/Sources/StreamVideo/OpenApi/generated/Models/BlockUserResponse.swift index e7cd5d094..53deaa18d 100644 --- a/Sources/StreamVideo/OpenApi/generated/Models/BlockUserResponse.swift +++ b/Sources/StreamVideo/OpenApi/generated/Models/BlockUserResponse.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import Foundation diff --git a/Sources/StreamVideo/OpenApi/generated/Models/BlockedUserEvent.swift b/Sources/StreamVideo/OpenApi/generated/Models/BlockedUserEvent.swift index bce5da3fc..de069cd00 100644 --- a/Sources/StreamVideo/OpenApi/generated/Models/BlockedUserEvent.swift +++ b/Sources/StreamVideo/OpenApi/generated/Models/BlockedUserEvent.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import Foundation diff --git a/Sources/StreamVideo/OpenApi/generated/Models/BroadcastSettingsRequest.swift b/Sources/StreamVideo/OpenApi/generated/Models/BroadcastSettingsRequest.swift index e8895983a..5cf80e89a 100644 --- a/Sources/StreamVideo/OpenApi/generated/Models/BroadcastSettingsRequest.swift +++ b/Sources/StreamVideo/OpenApi/generated/Models/BroadcastSettingsRequest.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import Foundation diff --git a/Sources/StreamVideo/OpenApi/generated/Models/BroadcastSettingsResponse.swift b/Sources/StreamVideo/OpenApi/generated/Models/BroadcastSettingsResponse.swift index 05999e556..cd0d99cfa 100644 --- a/Sources/StreamVideo/OpenApi/generated/Models/BroadcastSettingsResponse.swift +++ b/Sources/StreamVideo/OpenApi/generated/Models/BroadcastSettingsResponse.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import Foundation diff --git a/Sources/StreamVideo/OpenApi/generated/Models/CallAcceptedEvent.swift b/Sources/StreamVideo/OpenApi/generated/Models/CallAcceptedEvent.swift index 0c2ff87ca..c0796e7b5 100644 --- a/Sources/StreamVideo/OpenApi/generated/Models/CallAcceptedEvent.swift +++ b/Sources/StreamVideo/OpenApi/generated/Models/CallAcceptedEvent.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import Foundation diff --git a/Sources/StreamVideo/OpenApi/generated/Models/CallClosedCaption.swift b/Sources/StreamVideo/OpenApi/generated/Models/CallClosedCaption.swift index f95a22cc8..9dbd8cf5d 100644 --- a/Sources/StreamVideo/OpenApi/generated/Models/CallClosedCaption.swift +++ b/Sources/StreamVideo/OpenApi/generated/Models/CallClosedCaption.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import Foundation diff --git a/Sources/StreamVideo/OpenApi/generated/Models/CallClosedCaptionsFailedEvent.swift b/Sources/StreamVideo/OpenApi/generated/Models/CallClosedCaptionsFailedEvent.swift index d709cd1f9..7255261a4 100644 --- a/Sources/StreamVideo/OpenApi/generated/Models/CallClosedCaptionsFailedEvent.swift +++ b/Sources/StreamVideo/OpenApi/generated/Models/CallClosedCaptionsFailedEvent.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import Foundation diff --git a/Sources/StreamVideo/OpenApi/generated/Models/CallClosedCaptionsStartedEvent.swift b/Sources/StreamVideo/OpenApi/generated/Models/CallClosedCaptionsStartedEvent.swift index 490488932..211d275f2 100644 --- a/Sources/StreamVideo/OpenApi/generated/Models/CallClosedCaptionsStartedEvent.swift +++ b/Sources/StreamVideo/OpenApi/generated/Models/CallClosedCaptionsStartedEvent.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import Foundation diff --git a/Sources/StreamVideo/OpenApi/generated/Models/CallClosedCaptionsStoppedEvent.swift b/Sources/StreamVideo/OpenApi/generated/Models/CallClosedCaptionsStoppedEvent.swift index 931298f36..d6cf4c9eb 100644 --- a/Sources/StreamVideo/OpenApi/generated/Models/CallClosedCaptionsStoppedEvent.swift +++ b/Sources/StreamVideo/OpenApi/generated/Models/CallClosedCaptionsStoppedEvent.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import Foundation diff --git a/Sources/StreamVideo/OpenApi/generated/Models/CallCreatedEvent.swift b/Sources/StreamVideo/OpenApi/generated/Models/CallCreatedEvent.swift index c9fb40404..97193d2a8 100644 --- a/Sources/StreamVideo/OpenApi/generated/Models/CallCreatedEvent.swift +++ b/Sources/StreamVideo/OpenApi/generated/Models/CallCreatedEvent.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import Foundation diff --git a/Sources/StreamVideo/OpenApi/generated/Models/CallDeletedEvent.swift b/Sources/StreamVideo/OpenApi/generated/Models/CallDeletedEvent.swift index 031b14344..93e04add5 100644 --- a/Sources/StreamVideo/OpenApi/generated/Models/CallDeletedEvent.swift +++ b/Sources/StreamVideo/OpenApi/generated/Models/CallDeletedEvent.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import Foundation diff --git a/Sources/StreamVideo/OpenApi/generated/Models/CallEndedEvent.swift b/Sources/StreamVideo/OpenApi/generated/Models/CallEndedEvent.swift index 328bd7129..75172dc73 100644 --- a/Sources/StreamVideo/OpenApi/generated/Models/CallEndedEvent.swift +++ b/Sources/StreamVideo/OpenApi/generated/Models/CallEndedEvent.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import Foundation diff --git a/Sources/StreamVideo/OpenApi/generated/Models/CallEvent.swift b/Sources/StreamVideo/OpenApi/generated/Models/CallEvent.swift index d2570d207..15c441888 100644 --- a/Sources/StreamVideo/OpenApi/generated/Models/CallEvent.swift +++ b/Sources/StreamVideo/OpenApi/generated/Models/CallEvent.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import Foundation diff --git a/Sources/StreamVideo/OpenApi/generated/Models/CallHLSBroadcastingFailedEvent.swift b/Sources/StreamVideo/OpenApi/generated/Models/CallHLSBroadcastingFailedEvent.swift index f37fad10f..633fea2c9 100644 --- a/Sources/StreamVideo/OpenApi/generated/Models/CallHLSBroadcastingFailedEvent.swift +++ b/Sources/StreamVideo/OpenApi/generated/Models/CallHLSBroadcastingFailedEvent.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import Foundation diff --git a/Sources/StreamVideo/OpenApi/generated/Models/CallHLSBroadcastingStartedEvent.swift b/Sources/StreamVideo/OpenApi/generated/Models/CallHLSBroadcastingStartedEvent.swift index 4453eea72..1a42695bc 100644 --- a/Sources/StreamVideo/OpenApi/generated/Models/CallHLSBroadcastingStartedEvent.swift +++ b/Sources/StreamVideo/OpenApi/generated/Models/CallHLSBroadcastingStartedEvent.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import Foundation diff --git a/Sources/StreamVideo/OpenApi/generated/Models/CallHLSBroadcastingStoppedEvent.swift b/Sources/StreamVideo/OpenApi/generated/Models/CallHLSBroadcastingStoppedEvent.swift index 9d85d3425..a2fc69cb1 100644 --- a/Sources/StreamVideo/OpenApi/generated/Models/CallHLSBroadcastingStoppedEvent.swift +++ b/Sources/StreamVideo/OpenApi/generated/Models/CallHLSBroadcastingStoppedEvent.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import Foundation diff --git a/Sources/StreamVideo/OpenApi/generated/Models/CallIngressResponse.swift b/Sources/StreamVideo/OpenApi/generated/Models/CallIngressResponse.swift index f65fbc874..451df7458 100644 --- a/Sources/StreamVideo/OpenApi/generated/Models/CallIngressResponse.swift +++ b/Sources/StreamVideo/OpenApi/generated/Models/CallIngressResponse.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import Foundation diff --git a/Sources/StreamVideo/OpenApi/generated/Models/CallLiveStartedEvent.swift b/Sources/StreamVideo/OpenApi/generated/Models/CallLiveStartedEvent.swift index 9a41bef4d..e4713e395 100644 --- a/Sources/StreamVideo/OpenApi/generated/Models/CallLiveStartedEvent.swift +++ b/Sources/StreamVideo/OpenApi/generated/Models/CallLiveStartedEvent.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import Foundation diff --git a/Sources/StreamVideo/OpenApi/generated/Models/CallMemberAddedEvent.swift b/Sources/StreamVideo/OpenApi/generated/Models/CallMemberAddedEvent.swift index 175680776..ed0be7659 100644 --- a/Sources/StreamVideo/OpenApi/generated/Models/CallMemberAddedEvent.swift +++ b/Sources/StreamVideo/OpenApi/generated/Models/CallMemberAddedEvent.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import Foundation diff --git a/Sources/StreamVideo/OpenApi/generated/Models/CallMemberRemovedEvent.swift b/Sources/StreamVideo/OpenApi/generated/Models/CallMemberRemovedEvent.swift index 0bbc2c80a..4be130c6b 100644 --- a/Sources/StreamVideo/OpenApi/generated/Models/CallMemberRemovedEvent.swift +++ b/Sources/StreamVideo/OpenApi/generated/Models/CallMemberRemovedEvent.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import Foundation diff --git a/Sources/StreamVideo/OpenApi/generated/Models/CallMemberUpdatedEvent.swift b/Sources/StreamVideo/OpenApi/generated/Models/CallMemberUpdatedEvent.swift index dbe2de962..1ef16e82c 100644 --- a/Sources/StreamVideo/OpenApi/generated/Models/CallMemberUpdatedEvent.swift +++ b/Sources/StreamVideo/OpenApi/generated/Models/CallMemberUpdatedEvent.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import Foundation diff --git a/Sources/StreamVideo/OpenApi/generated/Models/CallMemberUpdatedPermissionEvent.swift b/Sources/StreamVideo/OpenApi/generated/Models/CallMemberUpdatedPermissionEvent.swift index 54b46d28a..44d4229ac 100644 --- a/Sources/StreamVideo/OpenApi/generated/Models/CallMemberUpdatedPermissionEvent.swift +++ b/Sources/StreamVideo/OpenApi/generated/Models/CallMemberUpdatedPermissionEvent.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import Foundation diff --git a/Sources/StreamVideo/OpenApi/generated/Models/CallMissedEvent.swift b/Sources/StreamVideo/OpenApi/generated/Models/CallMissedEvent.swift index e70d774b2..7e784b89e 100644 --- a/Sources/StreamVideo/OpenApi/generated/Models/CallMissedEvent.swift +++ b/Sources/StreamVideo/OpenApi/generated/Models/CallMissedEvent.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import Foundation diff --git a/Sources/StreamVideo/OpenApi/generated/Models/CallNotificationEvent.swift b/Sources/StreamVideo/OpenApi/generated/Models/CallNotificationEvent.swift index d8db0c55b..0c963d249 100644 --- a/Sources/StreamVideo/OpenApi/generated/Models/CallNotificationEvent.swift +++ b/Sources/StreamVideo/OpenApi/generated/Models/CallNotificationEvent.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import Foundation diff --git a/Sources/StreamVideo/OpenApi/generated/Models/CallParticipantResponse.swift b/Sources/StreamVideo/OpenApi/generated/Models/CallParticipantResponse.swift index 6f45251a2..4947e15d8 100644 --- a/Sources/StreamVideo/OpenApi/generated/Models/CallParticipantResponse.swift +++ b/Sources/StreamVideo/OpenApi/generated/Models/CallParticipantResponse.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import Foundation diff --git a/Sources/StreamVideo/OpenApi/generated/Models/CallReactionEvent.swift b/Sources/StreamVideo/OpenApi/generated/Models/CallReactionEvent.swift index 097b2f4f4..ff9975552 100644 --- a/Sources/StreamVideo/OpenApi/generated/Models/CallReactionEvent.swift +++ b/Sources/StreamVideo/OpenApi/generated/Models/CallReactionEvent.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import Foundation diff --git a/Sources/StreamVideo/OpenApi/generated/Models/CallRecording.swift b/Sources/StreamVideo/OpenApi/generated/Models/CallRecording.swift index 79707399b..5f387147b 100644 --- a/Sources/StreamVideo/OpenApi/generated/Models/CallRecording.swift +++ b/Sources/StreamVideo/OpenApi/generated/Models/CallRecording.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import Foundation diff --git a/Sources/StreamVideo/OpenApi/generated/Models/CallRecordingFailedEvent.swift b/Sources/StreamVideo/OpenApi/generated/Models/CallRecordingFailedEvent.swift index cbf30e0e7..77bae7d3a 100644 --- a/Sources/StreamVideo/OpenApi/generated/Models/CallRecordingFailedEvent.swift +++ b/Sources/StreamVideo/OpenApi/generated/Models/CallRecordingFailedEvent.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import Foundation diff --git a/Sources/StreamVideo/OpenApi/generated/Models/CallRecordingReadyEvent.swift b/Sources/StreamVideo/OpenApi/generated/Models/CallRecordingReadyEvent.swift index 9c86c8929..71a769c4a 100644 --- a/Sources/StreamVideo/OpenApi/generated/Models/CallRecordingReadyEvent.swift +++ b/Sources/StreamVideo/OpenApi/generated/Models/CallRecordingReadyEvent.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import Foundation diff --git a/Sources/StreamVideo/OpenApi/generated/Models/CallRecordingStartedEvent.swift b/Sources/StreamVideo/OpenApi/generated/Models/CallRecordingStartedEvent.swift index f2d953528..665ebe22f 100644 --- a/Sources/StreamVideo/OpenApi/generated/Models/CallRecordingStartedEvent.swift +++ b/Sources/StreamVideo/OpenApi/generated/Models/CallRecordingStartedEvent.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import Foundation diff --git a/Sources/StreamVideo/OpenApi/generated/Models/CallRecordingStoppedEvent.swift b/Sources/StreamVideo/OpenApi/generated/Models/CallRecordingStoppedEvent.swift index 9c2348959..315c02c32 100644 --- a/Sources/StreamVideo/OpenApi/generated/Models/CallRecordingStoppedEvent.swift +++ b/Sources/StreamVideo/OpenApi/generated/Models/CallRecordingStoppedEvent.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import Foundation diff --git a/Sources/StreamVideo/OpenApi/generated/Models/CallRejectedEvent.swift b/Sources/StreamVideo/OpenApi/generated/Models/CallRejectedEvent.swift index 4f358a3cc..f1145cf18 100644 --- a/Sources/StreamVideo/OpenApi/generated/Models/CallRejectedEvent.swift +++ b/Sources/StreamVideo/OpenApi/generated/Models/CallRejectedEvent.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import Foundation diff --git a/Sources/StreamVideo/OpenApi/generated/Models/CallRequest.swift b/Sources/StreamVideo/OpenApi/generated/Models/CallRequest.swift index 434db8903..b741a53c5 100644 --- a/Sources/StreamVideo/OpenApi/generated/Models/CallRequest.swift +++ b/Sources/StreamVideo/OpenApi/generated/Models/CallRequest.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import Foundation diff --git a/Sources/StreamVideo/OpenApi/generated/Models/CallResponse.swift b/Sources/StreamVideo/OpenApi/generated/Models/CallResponse.swift index 8ede7daea..3c6ca9144 100644 --- a/Sources/StreamVideo/OpenApi/generated/Models/CallResponse.swift +++ b/Sources/StreamVideo/OpenApi/generated/Models/CallResponse.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import Foundation diff --git a/Sources/StreamVideo/OpenApi/generated/Models/CallRingEvent.swift b/Sources/StreamVideo/OpenApi/generated/Models/CallRingEvent.swift index c57cae164..b2d5cc310 100644 --- a/Sources/StreamVideo/OpenApi/generated/Models/CallRingEvent.swift +++ b/Sources/StreamVideo/OpenApi/generated/Models/CallRingEvent.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import Foundation diff --git a/Sources/StreamVideo/OpenApi/generated/Models/CallRtmpBroadcastFailedEvent.swift b/Sources/StreamVideo/OpenApi/generated/Models/CallRtmpBroadcastFailedEvent.swift index 8a88e5077..29a79fbc0 100644 --- a/Sources/StreamVideo/OpenApi/generated/Models/CallRtmpBroadcastFailedEvent.swift +++ b/Sources/StreamVideo/OpenApi/generated/Models/CallRtmpBroadcastFailedEvent.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import Foundation diff --git a/Sources/StreamVideo/OpenApi/generated/Models/CallRtmpBroadcastStartedEvent.swift b/Sources/StreamVideo/OpenApi/generated/Models/CallRtmpBroadcastStartedEvent.swift index 923ae80c2..f7ccd6488 100644 --- a/Sources/StreamVideo/OpenApi/generated/Models/CallRtmpBroadcastStartedEvent.swift +++ b/Sources/StreamVideo/OpenApi/generated/Models/CallRtmpBroadcastStartedEvent.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import Foundation diff --git a/Sources/StreamVideo/OpenApi/generated/Models/CallRtmpBroadcastStoppedEvent.swift b/Sources/StreamVideo/OpenApi/generated/Models/CallRtmpBroadcastStoppedEvent.swift index 95634d291..200088f90 100644 --- a/Sources/StreamVideo/OpenApi/generated/Models/CallRtmpBroadcastStoppedEvent.swift +++ b/Sources/StreamVideo/OpenApi/generated/Models/CallRtmpBroadcastStoppedEvent.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import Foundation diff --git a/Sources/StreamVideo/OpenApi/generated/Models/CallSessionEndedEvent.swift b/Sources/StreamVideo/OpenApi/generated/Models/CallSessionEndedEvent.swift index 062e891b4..ab5307278 100644 --- a/Sources/StreamVideo/OpenApi/generated/Models/CallSessionEndedEvent.swift +++ b/Sources/StreamVideo/OpenApi/generated/Models/CallSessionEndedEvent.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import Foundation diff --git a/Sources/StreamVideo/OpenApi/generated/Models/CallSessionParticipantCountsUpdatedEvent.swift b/Sources/StreamVideo/OpenApi/generated/Models/CallSessionParticipantCountsUpdatedEvent.swift index a94fa90ec..1f661466a 100644 --- a/Sources/StreamVideo/OpenApi/generated/Models/CallSessionParticipantCountsUpdatedEvent.swift +++ b/Sources/StreamVideo/OpenApi/generated/Models/CallSessionParticipantCountsUpdatedEvent.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import Foundation diff --git a/Sources/StreamVideo/OpenApi/generated/Models/CallSessionParticipantJoinedEvent.swift b/Sources/StreamVideo/OpenApi/generated/Models/CallSessionParticipantJoinedEvent.swift index 705b362f1..8dbda346e 100644 --- a/Sources/StreamVideo/OpenApi/generated/Models/CallSessionParticipantJoinedEvent.swift +++ b/Sources/StreamVideo/OpenApi/generated/Models/CallSessionParticipantJoinedEvent.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import Foundation diff --git a/Sources/StreamVideo/OpenApi/generated/Models/CallSessionParticipantLeftEvent.swift b/Sources/StreamVideo/OpenApi/generated/Models/CallSessionParticipantLeftEvent.swift index 74465de98..9b6d70289 100644 --- a/Sources/StreamVideo/OpenApi/generated/Models/CallSessionParticipantLeftEvent.swift +++ b/Sources/StreamVideo/OpenApi/generated/Models/CallSessionParticipantLeftEvent.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import Foundation diff --git a/Sources/StreamVideo/OpenApi/generated/Models/CallSessionResponse.swift b/Sources/StreamVideo/OpenApi/generated/Models/CallSessionResponse.swift index 9e1498cb2..b52f54633 100644 --- a/Sources/StreamVideo/OpenApi/generated/Models/CallSessionResponse.swift +++ b/Sources/StreamVideo/OpenApi/generated/Models/CallSessionResponse.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import Foundation diff --git a/Sources/StreamVideo/OpenApi/generated/Models/CallSessionStartedEvent.swift b/Sources/StreamVideo/OpenApi/generated/Models/CallSessionStartedEvent.swift index 0e787b241..f261040ef 100644 --- a/Sources/StreamVideo/OpenApi/generated/Models/CallSessionStartedEvent.swift +++ b/Sources/StreamVideo/OpenApi/generated/Models/CallSessionStartedEvent.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import Foundation diff --git a/Sources/StreamVideo/OpenApi/generated/Models/CallSettingsRequest.swift b/Sources/StreamVideo/OpenApi/generated/Models/CallSettingsRequest.swift index f20599d10..5b7f55798 100644 --- a/Sources/StreamVideo/OpenApi/generated/Models/CallSettingsRequest.swift +++ b/Sources/StreamVideo/OpenApi/generated/Models/CallSettingsRequest.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import Foundation diff --git a/Sources/StreamVideo/OpenApi/generated/Models/CallSettingsResponse.swift b/Sources/StreamVideo/OpenApi/generated/Models/CallSettingsResponse.swift index 633db236b..6f1274146 100644 --- a/Sources/StreamVideo/OpenApi/generated/Models/CallSettingsResponse.swift +++ b/Sources/StreamVideo/OpenApi/generated/Models/CallSettingsResponse.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import Foundation diff --git a/Sources/StreamVideo/OpenApi/generated/Models/CallStateResponseFields.swift b/Sources/StreamVideo/OpenApi/generated/Models/CallStateResponseFields.swift index 3932722cd..e17cb0af0 100644 --- a/Sources/StreamVideo/OpenApi/generated/Models/CallStateResponseFields.swift +++ b/Sources/StreamVideo/OpenApi/generated/Models/CallStateResponseFields.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import Foundation diff --git a/Sources/StreamVideo/OpenApi/generated/Models/CallStatsReportSummaryResponse.swift b/Sources/StreamVideo/OpenApi/generated/Models/CallStatsReportSummaryResponse.swift index 8dfdc2146..988a6b2a3 100644 --- a/Sources/StreamVideo/OpenApi/generated/Models/CallStatsReportSummaryResponse.swift +++ b/Sources/StreamVideo/OpenApi/generated/Models/CallStatsReportSummaryResponse.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import Foundation diff --git a/Sources/StreamVideo/OpenApi/generated/Models/CallTimeline.swift b/Sources/StreamVideo/OpenApi/generated/Models/CallTimeline.swift index 91ea6f525..3cdb19bf8 100644 --- a/Sources/StreamVideo/OpenApi/generated/Models/CallTimeline.swift +++ b/Sources/StreamVideo/OpenApi/generated/Models/CallTimeline.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import Foundation diff --git a/Sources/StreamVideo/OpenApi/generated/Models/CallTranscription.swift b/Sources/StreamVideo/OpenApi/generated/Models/CallTranscription.swift index 9219ce48d..38e3ebabd 100644 --- a/Sources/StreamVideo/OpenApi/generated/Models/CallTranscription.swift +++ b/Sources/StreamVideo/OpenApi/generated/Models/CallTranscription.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import Foundation diff --git a/Sources/StreamVideo/OpenApi/generated/Models/CallTranscriptionFailedEvent.swift b/Sources/StreamVideo/OpenApi/generated/Models/CallTranscriptionFailedEvent.swift index 7b9ef7031..5a0474da5 100644 --- a/Sources/StreamVideo/OpenApi/generated/Models/CallTranscriptionFailedEvent.swift +++ b/Sources/StreamVideo/OpenApi/generated/Models/CallTranscriptionFailedEvent.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import Foundation diff --git a/Sources/StreamVideo/OpenApi/generated/Models/CallTranscriptionReadyEvent.swift b/Sources/StreamVideo/OpenApi/generated/Models/CallTranscriptionReadyEvent.swift index 696619990..f1b44a297 100644 --- a/Sources/StreamVideo/OpenApi/generated/Models/CallTranscriptionReadyEvent.swift +++ b/Sources/StreamVideo/OpenApi/generated/Models/CallTranscriptionReadyEvent.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import Foundation diff --git a/Sources/StreamVideo/OpenApi/generated/Models/CallTranscriptionStartedEvent.swift b/Sources/StreamVideo/OpenApi/generated/Models/CallTranscriptionStartedEvent.swift index 2401eac2d..8574a7393 100644 --- a/Sources/StreamVideo/OpenApi/generated/Models/CallTranscriptionStartedEvent.swift +++ b/Sources/StreamVideo/OpenApi/generated/Models/CallTranscriptionStartedEvent.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import Foundation diff --git a/Sources/StreamVideo/OpenApi/generated/Models/CallTranscriptionStoppedEvent.swift b/Sources/StreamVideo/OpenApi/generated/Models/CallTranscriptionStoppedEvent.swift index 09c675990..f649a9347 100644 --- a/Sources/StreamVideo/OpenApi/generated/Models/CallTranscriptionStoppedEvent.swift +++ b/Sources/StreamVideo/OpenApi/generated/Models/CallTranscriptionStoppedEvent.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import Foundation diff --git a/Sources/StreamVideo/OpenApi/generated/Models/CallUpdatedEvent.swift b/Sources/StreamVideo/OpenApi/generated/Models/CallUpdatedEvent.swift index babe38e47..fdd258df8 100644 --- a/Sources/StreamVideo/OpenApi/generated/Models/CallUpdatedEvent.swift +++ b/Sources/StreamVideo/OpenApi/generated/Models/CallUpdatedEvent.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import Foundation diff --git a/Sources/StreamVideo/OpenApi/generated/Models/CallUserMutedEvent.swift b/Sources/StreamVideo/OpenApi/generated/Models/CallUserMutedEvent.swift index 35d294c4c..3f527d2a7 100644 --- a/Sources/StreamVideo/OpenApi/generated/Models/CallUserMutedEvent.swift +++ b/Sources/StreamVideo/OpenApi/generated/Models/CallUserMutedEvent.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import Foundation diff --git a/Sources/StreamVideo/OpenApi/generated/Models/ClosedCaptionEvent.swift b/Sources/StreamVideo/OpenApi/generated/Models/ClosedCaptionEvent.swift index 62efb8d19..e53751155 100644 --- a/Sources/StreamVideo/OpenApi/generated/Models/ClosedCaptionEvent.swift +++ b/Sources/StreamVideo/OpenApi/generated/Models/ClosedCaptionEvent.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import Foundation diff --git a/Sources/StreamVideo/OpenApi/generated/Models/CollectUserFeedbackRequest.swift b/Sources/StreamVideo/OpenApi/generated/Models/CollectUserFeedbackRequest.swift index bb1bf0f9d..d58d0c41f 100644 --- a/Sources/StreamVideo/OpenApi/generated/Models/CollectUserFeedbackRequest.swift +++ b/Sources/StreamVideo/OpenApi/generated/Models/CollectUserFeedbackRequest.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import Foundation diff --git a/Sources/StreamVideo/OpenApi/generated/Models/CollectUserFeedbackResponse.swift b/Sources/StreamVideo/OpenApi/generated/Models/CollectUserFeedbackResponse.swift index 8f7eb6f4d..476677290 100644 --- a/Sources/StreamVideo/OpenApi/generated/Models/CollectUserFeedbackResponse.swift +++ b/Sources/StreamVideo/OpenApi/generated/Models/CollectUserFeedbackResponse.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import Foundation diff --git a/Sources/StreamVideo/OpenApi/generated/Models/ConnectUserDetailsRequest.swift b/Sources/StreamVideo/OpenApi/generated/Models/ConnectUserDetailsRequest.swift index a17f5bb03..cbc43319b 100644 --- a/Sources/StreamVideo/OpenApi/generated/Models/ConnectUserDetailsRequest.swift +++ b/Sources/StreamVideo/OpenApi/generated/Models/ConnectUserDetailsRequest.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import Foundation diff --git a/Sources/StreamVideo/OpenApi/generated/Models/ConnectedEvent.swift b/Sources/StreamVideo/OpenApi/generated/Models/ConnectedEvent.swift index da09e2a4f..4c8f0b8b1 100644 --- a/Sources/StreamVideo/OpenApi/generated/Models/ConnectedEvent.swift +++ b/Sources/StreamVideo/OpenApi/generated/Models/ConnectedEvent.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import Foundation diff --git a/Sources/StreamVideo/OpenApi/generated/Models/ConnectionErrorEvent.swift b/Sources/StreamVideo/OpenApi/generated/Models/ConnectionErrorEvent.swift index ec9ac5b3e..527cecd08 100644 --- a/Sources/StreamVideo/OpenApi/generated/Models/ConnectionErrorEvent.swift +++ b/Sources/StreamVideo/OpenApi/generated/Models/ConnectionErrorEvent.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import Foundation diff --git a/Sources/StreamVideo/OpenApi/generated/Models/Coordinates.swift b/Sources/StreamVideo/OpenApi/generated/Models/Coordinates.swift index 5d60b59e1..faef030f0 100644 --- a/Sources/StreamVideo/OpenApi/generated/Models/Coordinates.swift +++ b/Sources/StreamVideo/OpenApi/generated/Models/Coordinates.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import Foundation diff --git a/Sources/StreamVideo/OpenApi/generated/Models/Count.swift b/Sources/StreamVideo/OpenApi/generated/Models/Count.swift index 6c1a76bf0..3909c6cb4 100644 --- a/Sources/StreamVideo/OpenApi/generated/Models/Count.swift +++ b/Sources/StreamVideo/OpenApi/generated/Models/Count.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import Foundation diff --git a/Sources/StreamVideo/OpenApi/generated/Models/CountrywiseAggregateStats.swift b/Sources/StreamVideo/OpenApi/generated/Models/CountrywiseAggregateStats.swift index 34541b722..0d022bd64 100644 --- a/Sources/StreamVideo/OpenApi/generated/Models/CountrywiseAggregateStats.swift +++ b/Sources/StreamVideo/OpenApi/generated/Models/CountrywiseAggregateStats.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import Foundation diff --git a/Sources/StreamVideo/OpenApi/generated/Models/CreateDeviceRequest.swift b/Sources/StreamVideo/OpenApi/generated/Models/CreateDeviceRequest.swift index a8068ec91..055653928 100644 --- a/Sources/StreamVideo/OpenApi/generated/Models/CreateDeviceRequest.swift +++ b/Sources/StreamVideo/OpenApi/generated/Models/CreateDeviceRequest.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import Foundation diff --git a/Sources/StreamVideo/OpenApi/generated/Models/CreateGuestRequest.swift b/Sources/StreamVideo/OpenApi/generated/Models/CreateGuestRequest.swift index 872f58c63..da74ee277 100644 --- a/Sources/StreamVideo/OpenApi/generated/Models/CreateGuestRequest.swift +++ b/Sources/StreamVideo/OpenApi/generated/Models/CreateGuestRequest.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import Foundation diff --git a/Sources/StreamVideo/OpenApi/generated/Models/CreateGuestResponse.swift b/Sources/StreamVideo/OpenApi/generated/Models/CreateGuestResponse.swift index 1a3e9f91d..a5b6b9a24 100644 --- a/Sources/StreamVideo/OpenApi/generated/Models/CreateGuestResponse.swift +++ b/Sources/StreamVideo/OpenApi/generated/Models/CreateGuestResponse.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import Foundation diff --git a/Sources/StreamVideo/OpenApi/generated/Models/Credentials.swift b/Sources/StreamVideo/OpenApi/generated/Models/Credentials.swift index 4bbf831db..f76b0dfba 100644 --- a/Sources/StreamVideo/OpenApi/generated/Models/Credentials.swift +++ b/Sources/StreamVideo/OpenApi/generated/Models/Credentials.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import Foundation diff --git a/Sources/StreamVideo/OpenApi/generated/Models/CustomVideoEvent.swift b/Sources/StreamVideo/OpenApi/generated/Models/CustomVideoEvent.swift index 8bed9250b..a8c57e330 100644 --- a/Sources/StreamVideo/OpenApi/generated/Models/CustomVideoEvent.swift +++ b/Sources/StreamVideo/OpenApi/generated/Models/CustomVideoEvent.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import Foundation diff --git a/Sources/StreamVideo/OpenApi/generated/Models/DeleteCallRequest.swift b/Sources/StreamVideo/OpenApi/generated/Models/DeleteCallRequest.swift index 2fecb8f6f..9d4828a10 100644 --- a/Sources/StreamVideo/OpenApi/generated/Models/DeleteCallRequest.swift +++ b/Sources/StreamVideo/OpenApi/generated/Models/DeleteCallRequest.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import Foundation diff --git a/Sources/StreamVideo/OpenApi/generated/Models/DeleteCallResponse.swift b/Sources/StreamVideo/OpenApi/generated/Models/DeleteCallResponse.swift index 3e88664f4..ad0a64b96 100644 --- a/Sources/StreamVideo/OpenApi/generated/Models/DeleteCallResponse.swift +++ b/Sources/StreamVideo/OpenApi/generated/Models/DeleteCallResponse.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import Foundation diff --git a/Sources/StreamVideo/OpenApi/generated/Models/DeleteRecordingResponse.swift b/Sources/StreamVideo/OpenApi/generated/Models/DeleteRecordingResponse.swift index 87f3f3f88..b153d29f0 100644 --- a/Sources/StreamVideo/OpenApi/generated/Models/DeleteRecordingResponse.swift +++ b/Sources/StreamVideo/OpenApi/generated/Models/DeleteRecordingResponse.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import Foundation diff --git a/Sources/StreamVideo/OpenApi/generated/Models/DeleteTranscriptionResponse.swift b/Sources/StreamVideo/OpenApi/generated/Models/DeleteTranscriptionResponse.swift index cc0ece7d5..0ff44902d 100644 --- a/Sources/StreamVideo/OpenApi/generated/Models/DeleteTranscriptionResponse.swift +++ b/Sources/StreamVideo/OpenApi/generated/Models/DeleteTranscriptionResponse.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import Foundation diff --git a/Sources/StreamVideo/OpenApi/generated/Models/Device.swift b/Sources/StreamVideo/OpenApi/generated/Models/Device.swift index 1b94bd241..62afd6cab 100644 --- a/Sources/StreamVideo/OpenApi/generated/Models/Device.swift +++ b/Sources/StreamVideo/OpenApi/generated/Models/Device.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import Foundation diff --git a/Sources/StreamVideo/OpenApi/generated/Models/EdgeResponse.swift b/Sources/StreamVideo/OpenApi/generated/Models/EdgeResponse.swift index b32bbe231..9945857a4 100644 --- a/Sources/StreamVideo/OpenApi/generated/Models/EdgeResponse.swift +++ b/Sources/StreamVideo/OpenApi/generated/Models/EdgeResponse.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import Foundation diff --git a/Sources/StreamVideo/OpenApi/generated/Models/EgressHLSResponse.swift b/Sources/StreamVideo/OpenApi/generated/Models/EgressHLSResponse.swift index 5882382c8..bef32b13c 100644 --- a/Sources/StreamVideo/OpenApi/generated/Models/EgressHLSResponse.swift +++ b/Sources/StreamVideo/OpenApi/generated/Models/EgressHLSResponse.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import Foundation diff --git a/Sources/StreamVideo/OpenApi/generated/Models/EgressRTMPResponse.swift b/Sources/StreamVideo/OpenApi/generated/Models/EgressRTMPResponse.swift index 13f7b4f64..20a4cae0a 100644 --- a/Sources/StreamVideo/OpenApi/generated/Models/EgressRTMPResponse.swift +++ b/Sources/StreamVideo/OpenApi/generated/Models/EgressRTMPResponse.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import Foundation diff --git a/Sources/StreamVideo/OpenApi/generated/Models/EgressResponse.swift b/Sources/StreamVideo/OpenApi/generated/Models/EgressResponse.swift index 992234ef2..431016d5f 100644 --- a/Sources/StreamVideo/OpenApi/generated/Models/EgressResponse.swift +++ b/Sources/StreamVideo/OpenApi/generated/Models/EgressResponse.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import Foundation diff --git a/Sources/StreamVideo/OpenApi/generated/Models/EndCallResponse.swift b/Sources/StreamVideo/OpenApi/generated/Models/EndCallResponse.swift index 5cf5efed1..6fd4c6afd 100644 --- a/Sources/StreamVideo/OpenApi/generated/Models/EndCallResponse.swift +++ b/Sources/StreamVideo/OpenApi/generated/Models/EndCallResponse.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import Foundation diff --git a/Sources/StreamVideo/OpenApi/generated/Models/GeofenceSettings.swift b/Sources/StreamVideo/OpenApi/generated/Models/GeofenceSettings.swift index 2a9c1d6a1..0700cc0dd 100644 --- a/Sources/StreamVideo/OpenApi/generated/Models/GeofenceSettings.swift +++ b/Sources/StreamVideo/OpenApi/generated/Models/GeofenceSettings.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import Foundation diff --git a/Sources/StreamVideo/OpenApi/generated/Models/GeofenceSettingsRequest.swift b/Sources/StreamVideo/OpenApi/generated/Models/GeofenceSettingsRequest.swift index 6c1903d18..3ca9777ee 100644 --- a/Sources/StreamVideo/OpenApi/generated/Models/GeofenceSettingsRequest.swift +++ b/Sources/StreamVideo/OpenApi/generated/Models/GeofenceSettingsRequest.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import Foundation diff --git a/Sources/StreamVideo/OpenApi/generated/Models/GeolocationResult.swift b/Sources/StreamVideo/OpenApi/generated/Models/GeolocationResult.swift index cc7939164..51d0aad86 100644 --- a/Sources/StreamVideo/OpenApi/generated/Models/GeolocationResult.swift +++ b/Sources/StreamVideo/OpenApi/generated/Models/GeolocationResult.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import Foundation diff --git a/Sources/StreamVideo/OpenApi/generated/Models/GetCallResponse.swift b/Sources/StreamVideo/OpenApi/generated/Models/GetCallResponse.swift index 7f43c7ba0..e19230ba5 100644 --- a/Sources/StreamVideo/OpenApi/generated/Models/GetCallResponse.swift +++ b/Sources/StreamVideo/OpenApi/generated/Models/GetCallResponse.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import Foundation diff --git a/Sources/StreamVideo/OpenApi/generated/Models/GetCallStatsResponse.swift b/Sources/StreamVideo/OpenApi/generated/Models/GetCallStatsResponse.swift index 18827ae2b..7a7855789 100644 --- a/Sources/StreamVideo/OpenApi/generated/Models/GetCallStatsResponse.swift +++ b/Sources/StreamVideo/OpenApi/generated/Models/GetCallStatsResponse.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import Foundation diff --git a/Sources/StreamVideo/OpenApi/generated/Models/GetEdgesResponse.swift b/Sources/StreamVideo/OpenApi/generated/Models/GetEdgesResponse.swift index 7791af3b3..b4893c3d3 100644 --- a/Sources/StreamVideo/OpenApi/generated/Models/GetEdgesResponse.swift +++ b/Sources/StreamVideo/OpenApi/generated/Models/GetEdgesResponse.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import Foundation diff --git a/Sources/StreamVideo/OpenApi/generated/Models/GetOrCreateCallRequest.swift b/Sources/StreamVideo/OpenApi/generated/Models/GetOrCreateCallRequest.swift index 39c98ad34..e7ba8102c 100644 --- a/Sources/StreamVideo/OpenApi/generated/Models/GetOrCreateCallRequest.swift +++ b/Sources/StreamVideo/OpenApi/generated/Models/GetOrCreateCallRequest.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import Foundation diff --git a/Sources/StreamVideo/OpenApi/generated/Models/GetOrCreateCallResponse.swift b/Sources/StreamVideo/OpenApi/generated/Models/GetOrCreateCallResponse.swift index 48974bb1b..944be1ee4 100644 --- a/Sources/StreamVideo/OpenApi/generated/Models/GetOrCreateCallResponse.swift +++ b/Sources/StreamVideo/OpenApi/generated/Models/GetOrCreateCallResponse.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import Foundation diff --git a/Sources/StreamVideo/OpenApi/generated/Models/GoLiveRequest.swift b/Sources/StreamVideo/OpenApi/generated/Models/GoLiveRequest.swift index 366c25227..2dc803bcd 100644 --- a/Sources/StreamVideo/OpenApi/generated/Models/GoLiveRequest.swift +++ b/Sources/StreamVideo/OpenApi/generated/Models/GoLiveRequest.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import Foundation diff --git a/Sources/StreamVideo/OpenApi/generated/Models/GoLiveResponse.swift b/Sources/StreamVideo/OpenApi/generated/Models/GoLiveResponse.swift index 7178ca34a..1135370cb 100644 --- a/Sources/StreamVideo/OpenApi/generated/Models/GoLiveResponse.swift +++ b/Sources/StreamVideo/OpenApi/generated/Models/GoLiveResponse.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import Foundation diff --git a/Sources/StreamVideo/OpenApi/generated/Models/HLSSettingsRequest.swift b/Sources/StreamVideo/OpenApi/generated/Models/HLSSettingsRequest.swift index 205eeac67..cad7a98ac 100644 --- a/Sources/StreamVideo/OpenApi/generated/Models/HLSSettingsRequest.swift +++ b/Sources/StreamVideo/OpenApi/generated/Models/HLSSettingsRequest.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import Foundation diff --git a/Sources/StreamVideo/OpenApi/generated/Models/HLSSettingsResponse.swift b/Sources/StreamVideo/OpenApi/generated/Models/HLSSettingsResponse.swift index 7653a7dde..ed98065de 100644 --- a/Sources/StreamVideo/OpenApi/generated/Models/HLSSettingsResponse.swift +++ b/Sources/StreamVideo/OpenApi/generated/Models/HLSSettingsResponse.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import Foundation diff --git a/Sources/StreamVideo/OpenApi/generated/Models/HealthCheckEvent.swift b/Sources/StreamVideo/OpenApi/generated/Models/HealthCheckEvent.swift index 245cb3cb6..fd024715c 100644 --- a/Sources/StreamVideo/OpenApi/generated/Models/HealthCheckEvent.swift +++ b/Sources/StreamVideo/OpenApi/generated/Models/HealthCheckEvent.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import Foundation diff --git a/Sources/StreamVideo/OpenApi/generated/Models/ICEServer.swift b/Sources/StreamVideo/OpenApi/generated/Models/ICEServer.swift index efdd4e97f..eb6f05035 100644 --- a/Sources/StreamVideo/OpenApi/generated/Models/ICEServer.swift +++ b/Sources/StreamVideo/OpenApi/generated/Models/ICEServer.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import Foundation diff --git a/Sources/StreamVideo/OpenApi/generated/Models/JoinCallRequest.swift b/Sources/StreamVideo/OpenApi/generated/Models/JoinCallRequest.swift index 8b51950ea..52c1ba344 100644 --- a/Sources/StreamVideo/OpenApi/generated/Models/JoinCallRequest.swift +++ b/Sources/StreamVideo/OpenApi/generated/Models/JoinCallRequest.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import Foundation diff --git a/Sources/StreamVideo/OpenApi/generated/Models/JoinCallResponse.swift b/Sources/StreamVideo/OpenApi/generated/Models/JoinCallResponse.swift index 527c76587..a38d4b169 100644 --- a/Sources/StreamVideo/OpenApi/generated/Models/JoinCallResponse.swift +++ b/Sources/StreamVideo/OpenApi/generated/Models/JoinCallResponse.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import Foundation diff --git a/Sources/StreamVideo/OpenApi/generated/Models/LayoutSettings.swift b/Sources/StreamVideo/OpenApi/generated/Models/LayoutSettings.swift index 2e297f1f7..40bd33348 100644 --- a/Sources/StreamVideo/OpenApi/generated/Models/LayoutSettings.swift +++ b/Sources/StreamVideo/OpenApi/generated/Models/LayoutSettings.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import Foundation diff --git a/Sources/StreamVideo/OpenApi/generated/Models/LimitsSettingsRequest.swift b/Sources/StreamVideo/OpenApi/generated/Models/LimitsSettingsRequest.swift index afdbd64fd..5352799e4 100644 --- a/Sources/StreamVideo/OpenApi/generated/Models/LimitsSettingsRequest.swift +++ b/Sources/StreamVideo/OpenApi/generated/Models/LimitsSettingsRequest.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import Foundation diff --git a/Sources/StreamVideo/OpenApi/generated/Models/LimitsSettingsResponse.swift b/Sources/StreamVideo/OpenApi/generated/Models/LimitsSettingsResponse.swift index fd4e4def4..b9b4737ae 100644 --- a/Sources/StreamVideo/OpenApi/generated/Models/LimitsSettingsResponse.swift +++ b/Sources/StreamVideo/OpenApi/generated/Models/LimitsSettingsResponse.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import Foundation diff --git a/Sources/StreamVideo/OpenApi/generated/Models/ListDevicesResponse.swift b/Sources/StreamVideo/OpenApi/generated/Models/ListDevicesResponse.swift index 12bf38ee1..cef371c03 100644 --- a/Sources/StreamVideo/OpenApi/generated/Models/ListDevicesResponse.swift +++ b/Sources/StreamVideo/OpenApi/generated/Models/ListDevicesResponse.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import Foundation diff --git a/Sources/StreamVideo/OpenApi/generated/Models/ListRecordingsResponse.swift b/Sources/StreamVideo/OpenApi/generated/Models/ListRecordingsResponse.swift index 9fdb39a12..3462e73d0 100644 --- a/Sources/StreamVideo/OpenApi/generated/Models/ListRecordingsResponse.swift +++ b/Sources/StreamVideo/OpenApi/generated/Models/ListRecordingsResponse.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import Foundation diff --git a/Sources/StreamVideo/OpenApi/generated/Models/ListTranscriptionsResponse.swift b/Sources/StreamVideo/OpenApi/generated/Models/ListTranscriptionsResponse.swift index 36439a350..0162a34bd 100644 --- a/Sources/StreamVideo/OpenApi/generated/Models/ListTranscriptionsResponse.swift +++ b/Sources/StreamVideo/OpenApi/generated/Models/ListTranscriptionsResponse.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import Foundation diff --git a/Sources/StreamVideo/OpenApi/generated/Models/Location.swift b/Sources/StreamVideo/OpenApi/generated/Models/Location.swift index e2655fd74..ce252f6ae 100644 --- a/Sources/StreamVideo/OpenApi/generated/Models/Location.swift +++ b/Sources/StreamVideo/OpenApi/generated/Models/Location.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import Foundation diff --git a/Sources/StreamVideo/OpenApi/generated/Models/MediaPubSubHint.swift b/Sources/StreamVideo/OpenApi/generated/Models/MediaPubSubHint.swift index a93254de3..e7bb2f3d6 100644 --- a/Sources/StreamVideo/OpenApi/generated/Models/MediaPubSubHint.swift +++ b/Sources/StreamVideo/OpenApi/generated/Models/MediaPubSubHint.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import Foundation diff --git a/Sources/StreamVideo/OpenApi/generated/Models/MemberRequest.swift b/Sources/StreamVideo/OpenApi/generated/Models/MemberRequest.swift index 27f8a11fb..2539b98b8 100644 --- a/Sources/StreamVideo/OpenApi/generated/Models/MemberRequest.swift +++ b/Sources/StreamVideo/OpenApi/generated/Models/MemberRequest.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import Foundation diff --git a/Sources/StreamVideo/OpenApi/generated/Models/MemberResponse.swift b/Sources/StreamVideo/OpenApi/generated/Models/MemberResponse.swift index aed783ac2..1e49edf2b 100644 --- a/Sources/StreamVideo/OpenApi/generated/Models/MemberResponse.swift +++ b/Sources/StreamVideo/OpenApi/generated/Models/MemberResponse.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import Foundation diff --git a/Sources/StreamVideo/OpenApi/generated/Models/ModelResponse.swift b/Sources/StreamVideo/OpenApi/generated/Models/ModelResponse.swift index 0634b2009..12732bf3f 100644 --- a/Sources/StreamVideo/OpenApi/generated/Models/ModelResponse.swift +++ b/Sources/StreamVideo/OpenApi/generated/Models/ModelResponse.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import Foundation diff --git a/Sources/StreamVideo/OpenApi/generated/Models/MuteUsersRequest.swift b/Sources/StreamVideo/OpenApi/generated/Models/MuteUsersRequest.swift index a92de48fd..118046a24 100644 --- a/Sources/StreamVideo/OpenApi/generated/Models/MuteUsersRequest.swift +++ b/Sources/StreamVideo/OpenApi/generated/Models/MuteUsersRequest.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import Foundation diff --git a/Sources/StreamVideo/OpenApi/generated/Models/MuteUsersResponse.swift b/Sources/StreamVideo/OpenApi/generated/Models/MuteUsersResponse.swift index 2d58823ff..28302ed48 100644 --- a/Sources/StreamVideo/OpenApi/generated/Models/MuteUsersResponse.swift +++ b/Sources/StreamVideo/OpenApi/generated/Models/MuteUsersResponse.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import Foundation diff --git a/Sources/StreamVideo/OpenApi/generated/Models/NoiseCancellationSettingsRequest.swift b/Sources/StreamVideo/OpenApi/generated/Models/NoiseCancellationSettingsRequest.swift index b23104da6..0b33f47e0 100644 --- a/Sources/StreamVideo/OpenApi/generated/Models/NoiseCancellationSettingsRequest.swift +++ b/Sources/StreamVideo/OpenApi/generated/Models/NoiseCancellationSettingsRequest.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import Foundation diff --git a/Sources/StreamVideo/OpenApi/generated/Models/NullBool.swift b/Sources/StreamVideo/OpenApi/generated/Models/NullBool.swift index a38734c79..5cb930092 100644 --- a/Sources/StreamVideo/OpenApi/generated/Models/NullBool.swift +++ b/Sources/StreamVideo/OpenApi/generated/Models/NullBool.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import Foundation diff --git a/Sources/StreamVideo/OpenApi/generated/Models/NullTime.swift b/Sources/StreamVideo/OpenApi/generated/Models/NullTime.swift index e153805fb..8568dd24a 100644 --- a/Sources/StreamVideo/OpenApi/generated/Models/NullTime.swift +++ b/Sources/StreamVideo/OpenApi/generated/Models/NullTime.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import Foundation diff --git a/Sources/StreamVideo/OpenApi/generated/Models/OwnCapability.swift b/Sources/StreamVideo/OpenApi/generated/Models/OwnCapability.swift index c0a246119..c6c3d8de6 100644 --- a/Sources/StreamVideo/OpenApi/generated/Models/OwnCapability.swift +++ b/Sources/StreamVideo/OpenApi/generated/Models/OwnCapability.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import Foundation diff --git a/Sources/StreamVideo/OpenApi/generated/Models/OwnUserResponse.swift b/Sources/StreamVideo/OpenApi/generated/Models/OwnUserResponse.swift index f92c2edc8..03dd3fcca 100644 --- a/Sources/StreamVideo/OpenApi/generated/Models/OwnUserResponse.swift +++ b/Sources/StreamVideo/OpenApi/generated/Models/OwnUserResponse.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import Foundation diff --git a/Sources/StreamVideo/OpenApi/generated/Models/PermissionRequestEvent.swift b/Sources/StreamVideo/OpenApi/generated/Models/PermissionRequestEvent.swift index 21a46ba1c..f2b749d5c 100644 --- a/Sources/StreamVideo/OpenApi/generated/Models/PermissionRequestEvent.swift +++ b/Sources/StreamVideo/OpenApi/generated/Models/PermissionRequestEvent.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import Foundation diff --git a/Sources/StreamVideo/OpenApi/generated/Models/PinRequest.swift b/Sources/StreamVideo/OpenApi/generated/Models/PinRequest.swift index c814e9083..631490e7b 100644 --- a/Sources/StreamVideo/OpenApi/generated/Models/PinRequest.swift +++ b/Sources/StreamVideo/OpenApi/generated/Models/PinRequest.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import Foundation diff --git a/Sources/StreamVideo/OpenApi/generated/Models/PinResponse.swift b/Sources/StreamVideo/OpenApi/generated/Models/PinResponse.swift index 4e6c5ac0b..5ba2a4e5c 100644 --- a/Sources/StreamVideo/OpenApi/generated/Models/PinResponse.swift +++ b/Sources/StreamVideo/OpenApi/generated/Models/PinResponse.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import Foundation diff --git a/Sources/StreamVideo/OpenApi/generated/Models/PublishedTrackInfo.swift b/Sources/StreamVideo/OpenApi/generated/Models/PublishedTrackInfo.swift index 4bb505cc5..4a1e041c0 100644 --- a/Sources/StreamVideo/OpenApi/generated/Models/PublishedTrackInfo.swift +++ b/Sources/StreamVideo/OpenApi/generated/Models/PublishedTrackInfo.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import Foundation diff --git a/Sources/StreamVideo/OpenApi/generated/Models/PublisherAggregateStats.swift b/Sources/StreamVideo/OpenApi/generated/Models/PublisherAggregateStats.swift index e09514be6..27febefa3 100644 --- a/Sources/StreamVideo/OpenApi/generated/Models/PublisherAggregateStats.swift +++ b/Sources/StreamVideo/OpenApi/generated/Models/PublisherAggregateStats.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import Foundation diff --git a/Sources/StreamVideo/OpenApi/generated/Models/PushNotificationSettings.swift b/Sources/StreamVideo/OpenApi/generated/Models/PushNotificationSettings.swift index 40cfd2e35..aeb580ff5 100644 --- a/Sources/StreamVideo/OpenApi/generated/Models/PushNotificationSettings.swift +++ b/Sources/StreamVideo/OpenApi/generated/Models/PushNotificationSettings.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import Foundation diff --git a/Sources/StreamVideo/OpenApi/generated/Models/PushNotificationSettingsResponse.swift b/Sources/StreamVideo/OpenApi/generated/Models/PushNotificationSettingsResponse.swift index 97a02a688..574726b1a 100644 --- a/Sources/StreamVideo/OpenApi/generated/Models/PushNotificationSettingsResponse.swift +++ b/Sources/StreamVideo/OpenApi/generated/Models/PushNotificationSettingsResponse.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import Foundation diff --git a/Sources/StreamVideo/OpenApi/generated/Models/QueryCallStatsRequest.swift b/Sources/StreamVideo/OpenApi/generated/Models/QueryCallStatsRequest.swift index c8200811e..9b2e8ce3f 100644 --- a/Sources/StreamVideo/OpenApi/generated/Models/QueryCallStatsRequest.swift +++ b/Sources/StreamVideo/OpenApi/generated/Models/QueryCallStatsRequest.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import Foundation diff --git a/Sources/StreamVideo/OpenApi/generated/Models/QueryCallStatsResponse.swift b/Sources/StreamVideo/OpenApi/generated/Models/QueryCallStatsResponse.swift index e73b863f7..4b4f5ab6c 100644 --- a/Sources/StreamVideo/OpenApi/generated/Models/QueryCallStatsResponse.swift +++ b/Sources/StreamVideo/OpenApi/generated/Models/QueryCallStatsResponse.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import Foundation diff --git a/Sources/StreamVideo/OpenApi/generated/Models/QueryCallsRequest.swift b/Sources/StreamVideo/OpenApi/generated/Models/QueryCallsRequest.swift index 25e73b28d..9d65d9480 100644 --- a/Sources/StreamVideo/OpenApi/generated/Models/QueryCallsRequest.swift +++ b/Sources/StreamVideo/OpenApi/generated/Models/QueryCallsRequest.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import Foundation diff --git a/Sources/StreamVideo/OpenApi/generated/Models/QueryCallsResponse.swift b/Sources/StreamVideo/OpenApi/generated/Models/QueryCallsResponse.swift index e57656411..b7e68160a 100644 --- a/Sources/StreamVideo/OpenApi/generated/Models/QueryCallsResponse.swift +++ b/Sources/StreamVideo/OpenApi/generated/Models/QueryCallsResponse.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import Foundation diff --git a/Sources/StreamVideo/OpenApi/generated/Models/QueryMembersRequest.swift b/Sources/StreamVideo/OpenApi/generated/Models/QueryMembersRequest.swift index 46f823536..79f58729b 100644 --- a/Sources/StreamVideo/OpenApi/generated/Models/QueryMembersRequest.swift +++ b/Sources/StreamVideo/OpenApi/generated/Models/QueryMembersRequest.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import Foundation diff --git a/Sources/StreamVideo/OpenApi/generated/Models/QueryMembersResponse.swift b/Sources/StreamVideo/OpenApi/generated/Models/QueryMembersResponse.swift index 4561e9596..a87e0d39d 100644 --- a/Sources/StreamVideo/OpenApi/generated/Models/QueryMembersResponse.swift +++ b/Sources/StreamVideo/OpenApi/generated/Models/QueryMembersResponse.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import Foundation diff --git a/Sources/StreamVideo/OpenApi/generated/Models/RTMPBroadcastRequest.swift b/Sources/StreamVideo/OpenApi/generated/Models/RTMPBroadcastRequest.swift index e3e02c04b..cdac74ea0 100644 --- a/Sources/StreamVideo/OpenApi/generated/Models/RTMPBroadcastRequest.swift +++ b/Sources/StreamVideo/OpenApi/generated/Models/RTMPBroadcastRequest.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import Foundation diff --git a/Sources/StreamVideo/OpenApi/generated/Models/RTMPIngress.swift b/Sources/StreamVideo/OpenApi/generated/Models/RTMPIngress.swift index b2dbc71dc..09c2c7658 100644 --- a/Sources/StreamVideo/OpenApi/generated/Models/RTMPIngress.swift +++ b/Sources/StreamVideo/OpenApi/generated/Models/RTMPIngress.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import Foundation diff --git a/Sources/StreamVideo/OpenApi/generated/Models/RTMPSettingsRequest.swift b/Sources/StreamVideo/OpenApi/generated/Models/RTMPSettingsRequest.swift index dd73ff6bd..031dd4943 100644 --- a/Sources/StreamVideo/OpenApi/generated/Models/RTMPSettingsRequest.swift +++ b/Sources/StreamVideo/OpenApi/generated/Models/RTMPSettingsRequest.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import Foundation diff --git a/Sources/StreamVideo/OpenApi/generated/Models/RTMPSettingsResponse.swift b/Sources/StreamVideo/OpenApi/generated/Models/RTMPSettingsResponse.swift index baba90dc6..088dfdab7 100644 --- a/Sources/StreamVideo/OpenApi/generated/Models/RTMPSettingsResponse.swift +++ b/Sources/StreamVideo/OpenApi/generated/Models/RTMPSettingsResponse.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import Foundation diff --git a/Sources/StreamVideo/OpenApi/generated/Models/ReactionResponse.swift b/Sources/StreamVideo/OpenApi/generated/Models/ReactionResponse.swift index 14c328aca..e7578d5c8 100644 --- a/Sources/StreamVideo/OpenApi/generated/Models/ReactionResponse.swift +++ b/Sources/StreamVideo/OpenApi/generated/Models/ReactionResponse.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import Foundation diff --git a/Sources/StreamVideo/OpenApi/generated/Models/RecordSettingsRequest.swift b/Sources/StreamVideo/OpenApi/generated/Models/RecordSettingsRequest.swift index 794cca9c4..03595f8f1 100644 --- a/Sources/StreamVideo/OpenApi/generated/Models/RecordSettingsRequest.swift +++ b/Sources/StreamVideo/OpenApi/generated/Models/RecordSettingsRequest.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import Foundation diff --git a/Sources/StreamVideo/OpenApi/generated/Models/RecordSettingsResponse.swift b/Sources/StreamVideo/OpenApi/generated/Models/RecordSettingsResponse.swift index 9dff93dba..7a771a2cf 100644 --- a/Sources/StreamVideo/OpenApi/generated/Models/RecordSettingsResponse.swift +++ b/Sources/StreamVideo/OpenApi/generated/Models/RecordSettingsResponse.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import Foundation diff --git a/Sources/StreamVideo/OpenApi/generated/Models/RejectCallRequest.swift b/Sources/StreamVideo/OpenApi/generated/Models/RejectCallRequest.swift index 4d56cb2c3..425072412 100644 --- a/Sources/StreamVideo/OpenApi/generated/Models/RejectCallRequest.swift +++ b/Sources/StreamVideo/OpenApi/generated/Models/RejectCallRequest.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import Foundation diff --git a/Sources/StreamVideo/OpenApi/generated/Models/RejectCallResponse.swift b/Sources/StreamVideo/OpenApi/generated/Models/RejectCallResponse.swift index b0ec5a09e..9f9b45930 100644 --- a/Sources/StreamVideo/OpenApi/generated/Models/RejectCallResponse.swift +++ b/Sources/StreamVideo/OpenApi/generated/Models/RejectCallResponse.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import Foundation diff --git a/Sources/StreamVideo/OpenApi/generated/Models/RequestPermissionRequest.swift b/Sources/StreamVideo/OpenApi/generated/Models/RequestPermissionRequest.swift index 6b126583c..79cc46d99 100644 --- a/Sources/StreamVideo/OpenApi/generated/Models/RequestPermissionRequest.swift +++ b/Sources/StreamVideo/OpenApi/generated/Models/RequestPermissionRequest.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import Foundation diff --git a/Sources/StreamVideo/OpenApi/generated/Models/RequestPermissionResponse.swift b/Sources/StreamVideo/OpenApi/generated/Models/RequestPermissionResponse.swift index 51813c0fc..779ab7d85 100644 --- a/Sources/StreamVideo/OpenApi/generated/Models/RequestPermissionResponse.swift +++ b/Sources/StreamVideo/OpenApi/generated/Models/RequestPermissionResponse.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import Foundation diff --git a/Sources/StreamVideo/OpenApi/generated/Models/RingSettings.swift b/Sources/StreamVideo/OpenApi/generated/Models/RingSettings.swift index 08fba01e9..aa8da923d 100644 --- a/Sources/StreamVideo/OpenApi/generated/Models/RingSettings.swift +++ b/Sources/StreamVideo/OpenApi/generated/Models/RingSettings.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import Foundation diff --git a/Sources/StreamVideo/OpenApi/generated/Models/RingSettingsRequest.swift b/Sources/StreamVideo/OpenApi/generated/Models/RingSettingsRequest.swift index f5b0a18c5..8803d8a6c 100644 --- a/Sources/StreamVideo/OpenApi/generated/Models/RingSettingsRequest.swift +++ b/Sources/StreamVideo/OpenApi/generated/Models/RingSettingsRequest.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import Foundation diff --git a/Sources/StreamVideo/OpenApi/generated/Models/SFULocationResponse.swift b/Sources/StreamVideo/OpenApi/generated/Models/SFULocationResponse.swift index 97e526810..5b0b83058 100644 --- a/Sources/StreamVideo/OpenApi/generated/Models/SFULocationResponse.swift +++ b/Sources/StreamVideo/OpenApi/generated/Models/SFULocationResponse.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import Foundation diff --git a/Sources/StreamVideo/OpenApi/generated/Models/SFUResponse.swift b/Sources/StreamVideo/OpenApi/generated/Models/SFUResponse.swift index 2f9819a22..929950da9 100644 --- a/Sources/StreamVideo/OpenApi/generated/Models/SFUResponse.swift +++ b/Sources/StreamVideo/OpenApi/generated/Models/SFUResponse.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import Foundation diff --git a/Sources/StreamVideo/OpenApi/generated/Models/ScreensharingSettings.swift b/Sources/StreamVideo/OpenApi/generated/Models/ScreensharingSettings.swift index 311d40c86..d1ad3181b 100644 --- a/Sources/StreamVideo/OpenApi/generated/Models/ScreensharingSettings.swift +++ b/Sources/StreamVideo/OpenApi/generated/Models/ScreensharingSettings.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import Foundation diff --git a/Sources/StreamVideo/OpenApi/generated/Models/ScreensharingSettingsRequest.swift b/Sources/StreamVideo/OpenApi/generated/Models/ScreensharingSettingsRequest.swift index 0863031bb..c4c6a1ecb 100644 --- a/Sources/StreamVideo/OpenApi/generated/Models/ScreensharingSettingsRequest.swift +++ b/Sources/StreamVideo/OpenApi/generated/Models/ScreensharingSettingsRequest.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import Foundation diff --git a/Sources/StreamVideo/OpenApi/generated/Models/SendEventRequest.swift b/Sources/StreamVideo/OpenApi/generated/Models/SendEventRequest.swift index 46355faa4..0916a94ee 100644 --- a/Sources/StreamVideo/OpenApi/generated/Models/SendEventRequest.swift +++ b/Sources/StreamVideo/OpenApi/generated/Models/SendEventRequest.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import Foundation diff --git a/Sources/StreamVideo/OpenApi/generated/Models/SendEventResponse.swift b/Sources/StreamVideo/OpenApi/generated/Models/SendEventResponse.swift index 985ddd224..26f830377 100644 --- a/Sources/StreamVideo/OpenApi/generated/Models/SendEventResponse.swift +++ b/Sources/StreamVideo/OpenApi/generated/Models/SendEventResponse.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import Foundation diff --git a/Sources/StreamVideo/OpenApi/generated/Models/SendReactionRequest.swift b/Sources/StreamVideo/OpenApi/generated/Models/SendReactionRequest.swift index 450fe1731..069d52427 100644 --- a/Sources/StreamVideo/OpenApi/generated/Models/SendReactionRequest.swift +++ b/Sources/StreamVideo/OpenApi/generated/Models/SendReactionRequest.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import Foundation diff --git a/Sources/StreamVideo/OpenApi/generated/Models/SendReactionResponse.swift b/Sources/StreamVideo/OpenApi/generated/Models/SendReactionResponse.swift index 079a31f78..45981d08e 100644 --- a/Sources/StreamVideo/OpenApi/generated/Models/SendReactionResponse.swift +++ b/Sources/StreamVideo/OpenApi/generated/Models/SendReactionResponse.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import Foundation diff --git a/Sources/StreamVideo/OpenApi/generated/Models/SortParamRequest.swift b/Sources/StreamVideo/OpenApi/generated/Models/SortParamRequest.swift index 62c051c97..e7a1ee471 100644 --- a/Sources/StreamVideo/OpenApi/generated/Models/SortParamRequest.swift +++ b/Sources/StreamVideo/OpenApi/generated/Models/SortParamRequest.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import Foundation diff --git a/Sources/StreamVideo/OpenApi/generated/Models/StartClosedCaptionsResponse.swift b/Sources/StreamVideo/OpenApi/generated/Models/StartClosedCaptionsResponse.swift index a304b5e1a..53bbeb1cf 100644 --- a/Sources/StreamVideo/OpenApi/generated/Models/StartClosedCaptionsResponse.swift +++ b/Sources/StreamVideo/OpenApi/generated/Models/StartClosedCaptionsResponse.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import Foundation diff --git a/Sources/StreamVideo/OpenApi/generated/Models/StartHLSBroadcastingResponse.swift b/Sources/StreamVideo/OpenApi/generated/Models/StartHLSBroadcastingResponse.swift index e74151b2b..5238fb643 100644 --- a/Sources/StreamVideo/OpenApi/generated/Models/StartHLSBroadcastingResponse.swift +++ b/Sources/StreamVideo/OpenApi/generated/Models/StartHLSBroadcastingResponse.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import Foundation diff --git a/Sources/StreamVideo/OpenApi/generated/Models/StartRTMPBroadcastsRequest.swift b/Sources/StreamVideo/OpenApi/generated/Models/StartRTMPBroadcastsRequest.swift index e2a899a5d..cbac9ae42 100644 --- a/Sources/StreamVideo/OpenApi/generated/Models/StartRTMPBroadcastsRequest.swift +++ b/Sources/StreamVideo/OpenApi/generated/Models/StartRTMPBroadcastsRequest.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import Foundation diff --git a/Sources/StreamVideo/OpenApi/generated/Models/StartRTMPBroadcastsResponse.swift b/Sources/StreamVideo/OpenApi/generated/Models/StartRTMPBroadcastsResponse.swift index c0f89b534..3cc648587 100644 --- a/Sources/StreamVideo/OpenApi/generated/Models/StartRTMPBroadcastsResponse.swift +++ b/Sources/StreamVideo/OpenApi/generated/Models/StartRTMPBroadcastsResponse.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import Foundation diff --git a/Sources/StreamVideo/OpenApi/generated/Models/StartRecordingRequest.swift b/Sources/StreamVideo/OpenApi/generated/Models/StartRecordingRequest.swift index 7b4020821..126a73044 100644 --- a/Sources/StreamVideo/OpenApi/generated/Models/StartRecordingRequest.swift +++ b/Sources/StreamVideo/OpenApi/generated/Models/StartRecordingRequest.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import Foundation diff --git a/Sources/StreamVideo/OpenApi/generated/Models/StartRecordingResponse.swift b/Sources/StreamVideo/OpenApi/generated/Models/StartRecordingResponse.swift index 97f49f010..c8da661b2 100644 --- a/Sources/StreamVideo/OpenApi/generated/Models/StartRecordingResponse.swift +++ b/Sources/StreamVideo/OpenApi/generated/Models/StartRecordingResponse.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import Foundation diff --git a/Sources/StreamVideo/OpenApi/generated/Models/StartTranscriptionRequest.swift b/Sources/StreamVideo/OpenApi/generated/Models/StartTranscriptionRequest.swift index 9dfa878b8..b4377980e 100644 --- a/Sources/StreamVideo/OpenApi/generated/Models/StartTranscriptionRequest.swift +++ b/Sources/StreamVideo/OpenApi/generated/Models/StartTranscriptionRequest.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import Foundation diff --git a/Sources/StreamVideo/OpenApi/generated/Models/StartTranscriptionResponse.swift b/Sources/StreamVideo/OpenApi/generated/Models/StartTranscriptionResponse.swift index 8563c1d26..93681baac 100644 --- a/Sources/StreamVideo/OpenApi/generated/Models/StartTranscriptionResponse.swift +++ b/Sources/StreamVideo/OpenApi/generated/Models/StartTranscriptionResponse.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import Foundation diff --git a/Sources/StreamVideo/OpenApi/generated/Models/Stats.swift b/Sources/StreamVideo/OpenApi/generated/Models/Stats.swift index e04e66bb7..118f668bb 100644 --- a/Sources/StreamVideo/OpenApi/generated/Models/Stats.swift +++ b/Sources/StreamVideo/OpenApi/generated/Models/Stats.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import Foundation diff --git a/Sources/StreamVideo/OpenApi/generated/Models/StatsOptions.swift b/Sources/StreamVideo/OpenApi/generated/Models/StatsOptions.swift index c8bbb8b3b..fd510d6c0 100644 --- a/Sources/StreamVideo/OpenApi/generated/Models/StatsOptions.swift +++ b/Sources/StreamVideo/OpenApi/generated/Models/StatsOptions.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import Foundation diff --git a/Sources/StreamVideo/OpenApi/generated/Models/StopAllRTMPBroadcastsResponse.swift b/Sources/StreamVideo/OpenApi/generated/Models/StopAllRTMPBroadcastsResponse.swift index 9f9dd6b49..a21af7ad6 100644 --- a/Sources/StreamVideo/OpenApi/generated/Models/StopAllRTMPBroadcastsResponse.swift +++ b/Sources/StreamVideo/OpenApi/generated/Models/StopAllRTMPBroadcastsResponse.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import Foundation diff --git a/Sources/StreamVideo/OpenApi/generated/Models/StopClosedCaptionsResponse.swift b/Sources/StreamVideo/OpenApi/generated/Models/StopClosedCaptionsResponse.swift index 60a2868d1..3866e28d0 100644 --- a/Sources/StreamVideo/OpenApi/generated/Models/StopClosedCaptionsResponse.swift +++ b/Sources/StreamVideo/OpenApi/generated/Models/StopClosedCaptionsResponse.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import Foundation diff --git a/Sources/StreamVideo/OpenApi/generated/Models/StopHLSBroadcastingResponse.swift b/Sources/StreamVideo/OpenApi/generated/Models/StopHLSBroadcastingResponse.swift index 8a8e2f6b9..2c660dbdb 100644 --- a/Sources/StreamVideo/OpenApi/generated/Models/StopHLSBroadcastingResponse.swift +++ b/Sources/StreamVideo/OpenApi/generated/Models/StopHLSBroadcastingResponse.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import Foundation diff --git a/Sources/StreamVideo/OpenApi/generated/Models/StopLiveResponse.swift b/Sources/StreamVideo/OpenApi/generated/Models/StopLiveResponse.swift index 6e6b40784..01e863563 100644 --- a/Sources/StreamVideo/OpenApi/generated/Models/StopLiveResponse.swift +++ b/Sources/StreamVideo/OpenApi/generated/Models/StopLiveResponse.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import Foundation diff --git a/Sources/StreamVideo/OpenApi/generated/Models/StopRTMPBroadcastsResponse.swift b/Sources/StreamVideo/OpenApi/generated/Models/StopRTMPBroadcastsResponse.swift index 16f52cc91..7c94c693d 100644 --- a/Sources/StreamVideo/OpenApi/generated/Models/StopRTMPBroadcastsResponse.swift +++ b/Sources/StreamVideo/OpenApi/generated/Models/StopRTMPBroadcastsResponse.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import Foundation diff --git a/Sources/StreamVideo/OpenApi/generated/Models/StopRecordingResponse.swift b/Sources/StreamVideo/OpenApi/generated/Models/StopRecordingResponse.swift index 23d29949e..34f4a69da 100644 --- a/Sources/StreamVideo/OpenApi/generated/Models/StopRecordingResponse.swift +++ b/Sources/StreamVideo/OpenApi/generated/Models/StopRecordingResponse.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import Foundation diff --git a/Sources/StreamVideo/OpenApi/generated/Models/StopTranscriptionResponse.swift b/Sources/StreamVideo/OpenApi/generated/Models/StopTranscriptionResponse.swift index 7af8b79ce..0258c8a6d 100644 --- a/Sources/StreamVideo/OpenApi/generated/Models/StopTranscriptionResponse.swift +++ b/Sources/StreamVideo/OpenApi/generated/Models/StopTranscriptionResponse.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import Foundation diff --git a/Sources/StreamVideo/OpenApi/generated/Models/Subsession.swift b/Sources/StreamVideo/OpenApi/generated/Models/Subsession.swift index f2cfe1b70..2719541f4 100644 --- a/Sources/StreamVideo/OpenApi/generated/Models/Subsession.swift +++ b/Sources/StreamVideo/OpenApi/generated/Models/Subsession.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import Foundation diff --git a/Sources/StreamVideo/OpenApi/generated/Models/TURNAggregatedStats.swift b/Sources/StreamVideo/OpenApi/generated/Models/TURNAggregatedStats.swift index 67012c576..28a10f3d6 100644 --- a/Sources/StreamVideo/OpenApi/generated/Models/TURNAggregatedStats.swift +++ b/Sources/StreamVideo/OpenApi/generated/Models/TURNAggregatedStats.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import Foundation diff --git a/Sources/StreamVideo/OpenApi/generated/Models/TargetResolution.swift b/Sources/StreamVideo/OpenApi/generated/Models/TargetResolution.swift index 3950e9766..9183fb522 100644 --- a/Sources/StreamVideo/OpenApi/generated/Models/TargetResolution.swift +++ b/Sources/StreamVideo/OpenApi/generated/Models/TargetResolution.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import Foundation diff --git a/Sources/StreamVideo/OpenApi/generated/Models/ThumbnailResponse.swift b/Sources/StreamVideo/OpenApi/generated/Models/ThumbnailResponse.swift index b31345cfb..02c54fbe9 100644 --- a/Sources/StreamVideo/OpenApi/generated/Models/ThumbnailResponse.swift +++ b/Sources/StreamVideo/OpenApi/generated/Models/ThumbnailResponse.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import Foundation diff --git a/Sources/StreamVideo/OpenApi/generated/Models/ThumbnailsSettings.swift b/Sources/StreamVideo/OpenApi/generated/Models/ThumbnailsSettings.swift index 95007932b..ee18b4266 100644 --- a/Sources/StreamVideo/OpenApi/generated/Models/ThumbnailsSettings.swift +++ b/Sources/StreamVideo/OpenApi/generated/Models/ThumbnailsSettings.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import Foundation diff --git a/Sources/StreamVideo/OpenApi/generated/Models/ThumbnailsSettingsRequest.swift b/Sources/StreamVideo/OpenApi/generated/Models/ThumbnailsSettingsRequest.swift index 12faae675..5062c4101 100644 --- a/Sources/StreamVideo/OpenApi/generated/Models/ThumbnailsSettingsRequest.swift +++ b/Sources/StreamVideo/OpenApi/generated/Models/ThumbnailsSettingsRequest.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import Foundation diff --git a/Sources/StreamVideo/OpenApi/generated/Models/TranscriptionSettings.swift b/Sources/StreamVideo/OpenApi/generated/Models/TranscriptionSettings.swift index 18dd717a6..11e799672 100644 --- a/Sources/StreamVideo/OpenApi/generated/Models/TranscriptionSettings.swift +++ b/Sources/StreamVideo/OpenApi/generated/Models/TranscriptionSettings.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import Foundation diff --git a/Sources/StreamVideo/OpenApi/generated/Models/TranscriptionSettingsRequest.swift b/Sources/StreamVideo/OpenApi/generated/Models/TranscriptionSettingsRequest.swift index a1d463f79..ab1473b7d 100644 --- a/Sources/StreamVideo/OpenApi/generated/Models/TranscriptionSettingsRequest.swift +++ b/Sources/StreamVideo/OpenApi/generated/Models/TranscriptionSettingsRequest.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import Foundation diff --git a/Sources/StreamVideo/OpenApi/generated/Models/UnblockUserRequest.swift b/Sources/StreamVideo/OpenApi/generated/Models/UnblockUserRequest.swift index 0f99abacf..acfb7871d 100644 --- a/Sources/StreamVideo/OpenApi/generated/Models/UnblockUserRequest.swift +++ b/Sources/StreamVideo/OpenApi/generated/Models/UnblockUserRequest.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import Foundation diff --git a/Sources/StreamVideo/OpenApi/generated/Models/UnblockUserResponse.swift b/Sources/StreamVideo/OpenApi/generated/Models/UnblockUserResponse.swift index 04282cf9d..27a34708f 100644 --- a/Sources/StreamVideo/OpenApi/generated/Models/UnblockUserResponse.swift +++ b/Sources/StreamVideo/OpenApi/generated/Models/UnblockUserResponse.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import Foundation diff --git a/Sources/StreamVideo/OpenApi/generated/Models/UnblockedUserEvent.swift b/Sources/StreamVideo/OpenApi/generated/Models/UnblockedUserEvent.swift index 1f9540769..a71823143 100644 --- a/Sources/StreamVideo/OpenApi/generated/Models/UnblockedUserEvent.swift +++ b/Sources/StreamVideo/OpenApi/generated/Models/UnblockedUserEvent.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import Foundation diff --git a/Sources/StreamVideo/OpenApi/generated/Models/UnpinRequest.swift b/Sources/StreamVideo/OpenApi/generated/Models/UnpinRequest.swift index 4924397d4..b082a4270 100644 --- a/Sources/StreamVideo/OpenApi/generated/Models/UnpinRequest.swift +++ b/Sources/StreamVideo/OpenApi/generated/Models/UnpinRequest.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import Foundation diff --git a/Sources/StreamVideo/OpenApi/generated/Models/UnpinResponse.swift b/Sources/StreamVideo/OpenApi/generated/Models/UnpinResponse.swift index 0dbb33cc9..2ccf9b1bc 100644 --- a/Sources/StreamVideo/OpenApi/generated/Models/UnpinResponse.swift +++ b/Sources/StreamVideo/OpenApi/generated/Models/UnpinResponse.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import Foundation diff --git a/Sources/StreamVideo/OpenApi/generated/Models/UpdateCallMembersRequest.swift b/Sources/StreamVideo/OpenApi/generated/Models/UpdateCallMembersRequest.swift index 47c19683d..0b069abc5 100644 --- a/Sources/StreamVideo/OpenApi/generated/Models/UpdateCallMembersRequest.swift +++ b/Sources/StreamVideo/OpenApi/generated/Models/UpdateCallMembersRequest.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import Foundation diff --git a/Sources/StreamVideo/OpenApi/generated/Models/UpdateCallMembersResponse.swift b/Sources/StreamVideo/OpenApi/generated/Models/UpdateCallMembersResponse.swift index 992f7e53e..1f2fa8a2e 100644 --- a/Sources/StreamVideo/OpenApi/generated/Models/UpdateCallMembersResponse.swift +++ b/Sources/StreamVideo/OpenApi/generated/Models/UpdateCallMembersResponse.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import Foundation diff --git a/Sources/StreamVideo/OpenApi/generated/Models/UpdateCallRequest.swift b/Sources/StreamVideo/OpenApi/generated/Models/UpdateCallRequest.swift index 25a0a4110..b9d43bc8f 100644 --- a/Sources/StreamVideo/OpenApi/generated/Models/UpdateCallRequest.swift +++ b/Sources/StreamVideo/OpenApi/generated/Models/UpdateCallRequest.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import Foundation diff --git a/Sources/StreamVideo/OpenApi/generated/Models/UpdateCallResponse.swift b/Sources/StreamVideo/OpenApi/generated/Models/UpdateCallResponse.swift index d3db28484..ed3c8c2bc 100644 --- a/Sources/StreamVideo/OpenApi/generated/Models/UpdateCallResponse.swift +++ b/Sources/StreamVideo/OpenApi/generated/Models/UpdateCallResponse.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import Foundation diff --git a/Sources/StreamVideo/OpenApi/generated/Models/UpdateUserPermissionsRequest.swift b/Sources/StreamVideo/OpenApi/generated/Models/UpdateUserPermissionsRequest.swift index 6eb521f26..253b6656b 100644 --- a/Sources/StreamVideo/OpenApi/generated/Models/UpdateUserPermissionsRequest.swift +++ b/Sources/StreamVideo/OpenApi/generated/Models/UpdateUserPermissionsRequest.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import Foundation diff --git a/Sources/StreamVideo/OpenApi/generated/Models/UpdateUserPermissionsResponse.swift b/Sources/StreamVideo/OpenApi/generated/Models/UpdateUserPermissionsResponse.swift index c00ef1b2a..9fbf0b790 100644 --- a/Sources/StreamVideo/OpenApi/generated/Models/UpdateUserPermissionsResponse.swift +++ b/Sources/StreamVideo/OpenApi/generated/Models/UpdateUserPermissionsResponse.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import Foundation diff --git a/Sources/StreamVideo/OpenApi/generated/Models/UpdatedCallPermissionsEvent.swift b/Sources/StreamVideo/OpenApi/generated/Models/UpdatedCallPermissionsEvent.swift index 225c3dad9..382b771a9 100644 --- a/Sources/StreamVideo/OpenApi/generated/Models/UpdatedCallPermissionsEvent.swift +++ b/Sources/StreamVideo/OpenApi/generated/Models/UpdatedCallPermissionsEvent.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import Foundation diff --git a/Sources/StreamVideo/OpenApi/generated/Models/UserEventPayload.swift b/Sources/StreamVideo/OpenApi/generated/Models/UserEventPayload.swift index 1e76bff5c..d2b0e5ac7 100644 --- a/Sources/StreamVideo/OpenApi/generated/Models/UserEventPayload.swift +++ b/Sources/StreamVideo/OpenApi/generated/Models/UserEventPayload.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import Foundation diff --git a/Sources/StreamVideo/OpenApi/generated/Models/UserInfoResponse.swift b/Sources/StreamVideo/OpenApi/generated/Models/UserInfoResponse.swift index 77ee06cf8..132eedce7 100644 --- a/Sources/StreamVideo/OpenApi/generated/Models/UserInfoResponse.swift +++ b/Sources/StreamVideo/OpenApi/generated/Models/UserInfoResponse.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import Foundation diff --git a/Sources/StreamVideo/OpenApi/generated/Models/UserMuteResponse.swift b/Sources/StreamVideo/OpenApi/generated/Models/UserMuteResponse.swift index 58f4689d8..5e661cba9 100644 --- a/Sources/StreamVideo/OpenApi/generated/Models/UserMuteResponse.swift +++ b/Sources/StreamVideo/OpenApi/generated/Models/UserMuteResponse.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import Foundation diff --git a/Sources/StreamVideo/OpenApi/generated/Models/UserRequest.swift b/Sources/StreamVideo/OpenApi/generated/Models/UserRequest.swift index e757ee407..28f59e884 100644 --- a/Sources/StreamVideo/OpenApi/generated/Models/UserRequest.swift +++ b/Sources/StreamVideo/OpenApi/generated/Models/UserRequest.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import Foundation diff --git a/Sources/StreamVideo/OpenApi/generated/Models/UserResponse.swift b/Sources/StreamVideo/OpenApi/generated/Models/UserResponse.swift index bffbfca02..6c0c1fbf2 100644 --- a/Sources/StreamVideo/OpenApi/generated/Models/UserResponse.swift +++ b/Sources/StreamVideo/OpenApi/generated/Models/UserResponse.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import Foundation diff --git a/Sources/StreamVideo/OpenApi/generated/Models/UserSessionStats.swift b/Sources/StreamVideo/OpenApi/generated/Models/UserSessionStats.swift index fcb38d070..908bf991d 100644 --- a/Sources/StreamVideo/OpenApi/generated/Models/UserSessionStats.swift +++ b/Sources/StreamVideo/OpenApi/generated/Models/UserSessionStats.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import Foundation diff --git a/Sources/StreamVideo/OpenApi/generated/Models/UserStats.swift b/Sources/StreamVideo/OpenApi/generated/Models/UserStats.swift index 70f294d11..a22bad5c1 100644 --- a/Sources/StreamVideo/OpenApi/generated/Models/UserStats.swift +++ b/Sources/StreamVideo/OpenApi/generated/Models/UserStats.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import Foundation diff --git a/Sources/StreamVideo/OpenApi/generated/Models/UserUpdatedEvent.swift b/Sources/StreamVideo/OpenApi/generated/Models/UserUpdatedEvent.swift index c45485705..52bd58261 100644 --- a/Sources/StreamVideo/OpenApi/generated/Models/UserUpdatedEvent.swift +++ b/Sources/StreamVideo/OpenApi/generated/Models/UserUpdatedEvent.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import Foundation diff --git a/Sources/StreamVideo/OpenApi/generated/Models/VideoEvent.swift b/Sources/StreamVideo/OpenApi/generated/Models/VideoEvent.swift index ab962964d..c23feb2b6 100644 --- a/Sources/StreamVideo/OpenApi/generated/Models/VideoEvent.swift +++ b/Sources/StreamVideo/OpenApi/generated/Models/VideoEvent.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import Foundation diff --git a/Sources/StreamVideo/OpenApi/generated/Models/VideoQuality.swift b/Sources/StreamVideo/OpenApi/generated/Models/VideoQuality.swift index 14db13234..b33791741 100644 --- a/Sources/StreamVideo/OpenApi/generated/Models/VideoQuality.swift +++ b/Sources/StreamVideo/OpenApi/generated/Models/VideoQuality.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import Foundation diff --git a/Sources/StreamVideo/OpenApi/generated/Models/VideoResolution.swift b/Sources/StreamVideo/OpenApi/generated/Models/VideoResolution.swift index 2f14414be..3c740f6db 100644 --- a/Sources/StreamVideo/OpenApi/generated/Models/VideoResolution.swift +++ b/Sources/StreamVideo/OpenApi/generated/Models/VideoResolution.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import Foundation diff --git a/Sources/StreamVideo/OpenApi/generated/Models/VideoSettings.swift b/Sources/StreamVideo/OpenApi/generated/Models/VideoSettings.swift index c8f2fa47e..e3aa24c09 100644 --- a/Sources/StreamVideo/OpenApi/generated/Models/VideoSettings.swift +++ b/Sources/StreamVideo/OpenApi/generated/Models/VideoSettings.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import Foundation diff --git a/Sources/StreamVideo/OpenApi/generated/Models/VideoSettingsRequest.swift b/Sources/StreamVideo/OpenApi/generated/Models/VideoSettingsRequest.swift index 546877cad..d78b04f2f 100644 --- a/Sources/StreamVideo/OpenApi/generated/Models/VideoSettingsRequest.swift +++ b/Sources/StreamVideo/OpenApi/generated/Models/VideoSettingsRequest.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import Foundation diff --git a/Sources/StreamVideo/OpenApi/generated/Models/WSAuthMessageRequest.swift b/Sources/StreamVideo/OpenApi/generated/Models/WSAuthMessageRequest.swift index 2bfaa19aa..8fb6ef2a7 100644 --- a/Sources/StreamVideo/OpenApi/generated/Models/WSAuthMessageRequest.swift +++ b/Sources/StreamVideo/OpenApi/generated/Models/WSAuthMessageRequest.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import Foundation diff --git a/Sources/StreamVideo/OpenApi/generated/OpenISO8601DateFormatter.swift b/Sources/StreamVideo/OpenApi/generated/OpenISO8601DateFormatter.swift index 13a085572..97cb88fde 100644 --- a/Sources/StreamVideo/OpenApi/generated/OpenISO8601DateFormatter.swift +++ b/Sources/StreamVideo/OpenApi/generated/OpenISO8601DateFormatter.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import Foundation diff --git a/Sources/StreamVideo/StreamVideo.h b/Sources/StreamVideo/StreamVideo.h index a85fd2c43..a9ca331e4 100644 --- a/Sources/StreamVideo/StreamVideo.h +++ b/Sources/StreamVideo/StreamVideo.h @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // #import diff --git a/Sources/StreamVideo/StreamVideo.swift b/Sources/StreamVideo/StreamVideo.swift index c4fb2954b..6614bdce5 100644 --- a/Sources/StreamVideo/StreamVideo.swift +++ b/Sources/StreamVideo/StreamVideo.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import Combine diff --git a/Sources/StreamVideo/StreamVideoEnvironment.swift b/Sources/StreamVideo/StreamVideoEnvironment.swift index 9ae922211..db1b89360 100644 --- a/Sources/StreamVideo/StreamVideoEnvironment.swift +++ b/Sources/StreamVideo/StreamVideoEnvironment.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import Foundation diff --git a/Sources/StreamVideo/Utils/AVCaptureSession+ActiveCaptureDevice.swift b/Sources/StreamVideo/Utils/AVCaptureSession+ActiveCaptureDevice.swift index d747faeeb..9ed2d1dd0 100644 --- a/Sources/StreamVideo/Utils/AVCaptureSession+ActiveCaptureDevice.swift +++ b/Sources/StreamVideo/Utils/AVCaptureSession+ActiveCaptureDevice.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import AVFoundation diff --git a/Sources/StreamVideo/Utils/Array+SafeSubscript.swift b/Sources/StreamVideo/Utils/Array+SafeSubscript.swift index 12690f710..94a464d2b 100644 --- a/Sources/StreamVideo/Utils/Array+SafeSubscript.swift +++ b/Sources/StreamVideo/Utils/Array+SafeSubscript.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import Foundation diff --git a/Sources/StreamVideo/Utils/Atomic.swift b/Sources/StreamVideo/Utils/Atomic.swift index e17cf4fcb..bc18e1304 100644 --- a/Sources/StreamVideo/Utils/Atomic.swift +++ b/Sources/StreamVideo/Utils/Atomic.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import Foundation diff --git a/Sources/StreamVideo/Utils/AudioSession/AudioRecorder/AVAudioRecorderBuilder.swift b/Sources/StreamVideo/Utils/AudioSession/AudioRecorder/AVAudioRecorderBuilder.swift index cac40741b..e0e00c340 100644 --- a/Sources/StreamVideo/Utils/AudioSession/AudioRecorder/AVAudioRecorderBuilder.swift +++ b/Sources/StreamVideo/Utils/AudioSession/AudioRecorder/AVAudioRecorderBuilder.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import AVFoundation diff --git a/Sources/StreamVideo/Utils/AudioSession/AudioRecorder/StreamActiveCallProvider.swift b/Sources/StreamVideo/Utils/AudioSession/AudioRecorder/StreamActiveCallProvider.swift index 4bc7dd6ab..f8d80c3bc 100644 --- a/Sources/StreamVideo/Utils/AudioSession/AudioRecorder/StreamActiveCallProvider.swift +++ b/Sources/StreamVideo/Utils/AudioSession/AudioRecorder/StreamActiveCallProvider.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import Combine diff --git a/Sources/StreamVideo/Utils/AudioSession/AudioRecorder/StreamCallAudioRecorder.swift b/Sources/StreamVideo/Utils/AudioSession/AudioRecorder/StreamCallAudioRecorder.swift index 19121ea38..e8500ec95 100644 --- a/Sources/StreamVideo/Utils/AudioSession/AudioRecorder/StreamCallAudioRecorder.swift +++ b/Sources/StreamVideo/Utils/AudioSession/AudioRecorder/StreamCallAudioRecorder.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import AVFoundation diff --git a/Sources/StreamVideo/Utils/AudioSession/AudioSessionProtocol.swift b/Sources/StreamVideo/Utils/AudioSession/AudioSessionProtocol.swift index e67ea8c9e..a539de4ee 100644 --- a/Sources/StreamVideo/Utils/AudioSession/AudioSessionProtocol.swift +++ b/Sources/StreamVideo/Utils/AudioSession/AudioSessionProtocol.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import AVFoundation diff --git a/Sources/StreamVideo/Utils/AudioSession/Extensions/AVAudioSession+CategoryOptions+Convenience.swift b/Sources/StreamVideo/Utils/AudioSession/Extensions/AVAudioSession+CategoryOptions+Convenience.swift index a5ac5d052..9d840b261 100644 --- a/Sources/StreamVideo/Utils/AudioSession/Extensions/AVAudioSession+CategoryOptions+Convenience.swift +++ b/Sources/StreamVideo/Utils/AudioSession/Extensions/AVAudioSession+CategoryOptions+Convenience.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import AVFoundation diff --git a/Sources/StreamVideo/Utils/AudioSession/Extensions/AVAudioSessionPortDescription+Convenience.swift b/Sources/StreamVideo/Utils/AudioSession/Extensions/AVAudioSessionPortDescription+Convenience.swift index 8f3559514..70446bf91 100644 --- a/Sources/StreamVideo/Utils/AudioSession/Extensions/AVAudioSessionPortDescription+Convenience.swift +++ b/Sources/StreamVideo/Utils/AudioSession/Extensions/AVAudioSessionPortDescription+Convenience.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import AVFoundation diff --git a/Sources/StreamVideo/Utils/AudioSession/Extensions/AVAudioSessionRouteDescription+Convenience.swift b/Sources/StreamVideo/Utils/AudioSession/Extensions/AVAudioSessionRouteDescription+Convenience.swift index 4cb096de1..8a4901338 100644 --- a/Sources/StreamVideo/Utils/AudioSession/Extensions/AVAudioSessionRouteDescription+Convenience.swift +++ b/Sources/StreamVideo/Utils/AudioSession/Extensions/AVAudioSessionRouteDescription+Convenience.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import AVFoundation diff --git a/Sources/StreamVideo/Utils/AudioSession/Extensions/AVAudioSession_RouteChangeReason+Convenience.swift b/Sources/StreamVideo/Utils/AudioSession/Extensions/AVAudioSession_RouteChangeReason+Convenience.swift index 4224c0e16..342732b96 100644 --- a/Sources/StreamVideo/Utils/AudioSession/Extensions/AVAudioSession_RouteChangeReason+Convenience.swift +++ b/Sources/StreamVideo/Utils/AudioSession/Extensions/AVAudioSession_RouteChangeReason+Convenience.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import AVFoundation diff --git a/Sources/StreamVideo/Utils/AudioSession/Extensions/RTCAudioSessionConfiguration+Default.swift b/Sources/StreamVideo/Utils/AudioSession/Extensions/RTCAudioSessionConfiguration+Default.swift index 2217a1c17..cf2b52446 100644 --- a/Sources/StreamVideo/Utils/AudioSession/Extensions/RTCAudioSessionConfiguration+Default.swift +++ b/Sources/StreamVideo/Utils/AudioSession/Extensions/RTCAudioSessionConfiguration+Default.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import StreamWebRTC diff --git a/Sources/StreamVideo/Utils/AudioSession/StreamAudioSessionAdapter.swift b/Sources/StreamVideo/Utils/AudioSession/StreamAudioSessionAdapter.swift index ff8359c9a..e1a31be35 100644 --- a/Sources/StreamVideo/Utils/AudioSession/StreamAudioSessionAdapter.swift +++ b/Sources/StreamVideo/Utils/AudioSession/StreamAudioSessionAdapter.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import AVFoundation diff --git a/Sources/StreamVideo/Utils/AudioSession/StreamAudioSessionAdapterDelegate.swift b/Sources/StreamVideo/Utils/AudioSession/StreamAudioSessionAdapterDelegate.swift index 52303110c..ef4bdb5e0 100644 --- a/Sources/StreamVideo/Utils/AudioSession/StreamAudioSessionAdapterDelegate.swift +++ b/Sources/StreamVideo/Utils/AudioSession/StreamAudioSessionAdapterDelegate.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import Foundation diff --git a/Sources/StreamVideo/Utils/AudioSession/StreamRTCAudioSession.swift b/Sources/StreamVideo/Utils/AudioSession/StreamRTCAudioSession.swift index 624d19e82..ecf7247a0 100644 --- a/Sources/StreamVideo/Utils/AudioSession/StreamRTCAudioSession.swift +++ b/Sources/StreamVideo/Utils/AudioSession/StreamRTCAudioSession.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import AVFoundation diff --git a/Sources/StreamVideo/Utils/BundleExtensions.swift b/Sources/StreamVideo/Utils/BundleExtensions.swift index 363b24a6b..d3ad60639 100644 --- a/Sources/StreamVideo/Utils/BundleExtensions.swift +++ b/Sources/StreamVideo/Utils/BundleExtensions.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import Foundation diff --git a/Sources/StreamVideo/Utils/CallCache/CallCache.swift b/Sources/StreamVideo/Utils/CallCache/CallCache.swift index 915293def..504baa23b 100644 --- a/Sources/StreamVideo/Utils/CallCache/CallCache.swift +++ b/Sources/StreamVideo/Utils/CallCache/CallCache.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import Foundation diff --git a/Sources/StreamVideo/Utils/CollectionDelayedUpdateObserver.swift b/Sources/StreamVideo/Utils/CollectionDelayedUpdateObserver.swift index 9c4535217..0497f79be 100644 --- a/Sources/StreamVideo/Utils/CollectionDelayedUpdateObserver.swift +++ b/Sources/StreamVideo/Utils/CollectionDelayedUpdateObserver.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import Combine diff --git a/Sources/StreamVideo/Utils/Data+Gzip.swift b/Sources/StreamVideo/Utils/Data+Gzip.swift index 183d0622b..9674a22ee 100644 --- a/Sources/StreamVideo/Utils/Data+Gzip.swift +++ b/Sources/StreamVideo/Utils/Data+Gzip.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // /* diff --git a/Sources/StreamVideo/Utils/DeviceOrientation/StreamDeviceOrientationAdapter.swift b/Sources/StreamVideo/Utils/DeviceOrientation/StreamDeviceOrientationAdapter.swift index 4fb931a2e..fd6bd6f9f 100644 --- a/Sources/StreamVideo/Utils/DeviceOrientation/StreamDeviceOrientationAdapter.swift +++ b/Sources/StreamVideo/Utils/DeviceOrientation/StreamDeviceOrientationAdapter.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import Combine diff --git a/Sources/StreamVideo/Utils/DisposableBag/DisposableBag.swift b/Sources/StreamVideo/Utils/DisposableBag/DisposableBag.swift index cb482783c..0fd20d42b 100644 --- a/Sources/StreamVideo/Utils/DisposableBag/DisposableBag.swift +++ b/Sources/StreamVideo/Utils/DisposableBag/DisposableBag.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import Combine diff --git a/Sources/StreamVideo/Utils/EndpointConfig.swift b/Sources/StreamVideo/Utils/EndpointConfig.swift index 2ba5c9e7b..3bea5ba50 100644 --- a/Sources/StreamVideo/Utils/EndpointConfig.swift +++ b/Sources/StreamVideo/Utils/EndpointConfig.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import Foundation diff --git a/Sources/StreamVideo/Utils/IntExtensions.swift b/Sources/StreamVideo/Utils/IntExtensions.swift index 4730ad1bb..3c103b234 100644 --- a/Sources/StreamVideo/Utils/IntExtensions.swift +++ b/Sources/StreamVideo/Utils/IntExtensions.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import Foundation diff --git a/Sources/StreamVideo/Utils/LocaleProvider/StreamLocaleProvider.swift b/Sources/StreamVideo/Utils/LocaleProvider/StreamLocaleProvider.swift index 765f50b9f..ccd394142 100644 --- a/Sources/StreamVideo/Utils/LocaleProvider/StreamLocaleProvider.swift +++ b/Sources/StreamVideo/Utils/LocaleProvider/StreamLocaleProvider.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import Foundation diff --git a/Sources/StreamVideo/Utils/LocationFetcher.swift b/Sources/StreamVideo/Utils/LocationFetcher.swift index 2cc108d62..d43194bcd 100644 --- a/Sources/StreamVideo/Utils/LocationFetcher.swift +++ b/Sources/StreamVideo/Utils/LocationFetcher.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import Foundation diff --git a/Sources/StreamVideo/Utils/Logger/Array+Logger.swift b/Sources/StreamVideo/Utils/Logger/Array+Logger.swift index aa3257c41..ab8950f1a 100644 --- a/Sources/StreamVideo/Utils/Logger/Array+Logger.swift +++ b/Sources/StreamVideo/Utils/Logger/Array+Logger.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import Foundation diff --git a/Sources/StreamVideo/Utils/Logger/Destination/BaseLogDestination.swift b/Sources/StreamVideo/Utils/Logger/Destination/BaseLogDestination.swift index f8ae3d42f..4c94fd569 100644 --- a/Sources/StreamVideo/Utils/Logger/Destination/BaseLogDestination.swift +++ b/Sources/StreamVideo/Utils/Logger/Destination/BaseLogDestination.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import Foundation diff --git a/Sources/StreamVideo/Utils/Logger/Destination/ConsoleLogDestination.swift b/Sources/StreamVideo/Utils/Logger/Destination/ConsoleLogDestination.swift index fcaeaace2..7d25f70c1 100644 --- a/Sources/StreamVideo/Utils/Logger/Destination/ConsoleLogDestination.swift +++ b/Sources/StreamVideo/Utils/Logger/Destination/ConsoleLogDestination.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import Foundation diff --git a/Sources/StreamVideo/Utils/Logger/Destination/LogDestination.swift b/Sources/StreamVideo/Utils/Logger/Destination/LogDestination.swift index 81de97fdc..ed10dfd37 100644 --- a/Sources/StreamVideo/Utils/Logger/Destination/LogDestination.swift +++ b/Sources/StreamVideo/Utils/Logger/Destination/LogDestination.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import Foundation diff --git a/Sources/StreamVideo/Utils/Logger/Formatter/LogFormatter.swift b/Sources/StreamVideo/Utils/Logger/Formatter/LogFormatter.swift index ab513d596..da6fba3e6 100644 --- a/Sources/StreamVideo/Utils/Logger/Formatter/LogFormatter.swift +++ b/Sources/StreamVideo/Utils/Logger/Formatter/LogFormatter.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import Foundation diff --git a/Sources/StreamVideo/Utils/Logger/Formatter/PrefixLogFormatter.swift b/Sources/StreamVideo/Utils/Logger/Formatter/PrefixLogFormatter.swift index ba8b6f833..2f8b95133 100644 --- a/Sources/StreamVideo/Utils/Logger/Formatter/PrefixLogFormatter.swift +++ b/Sources/StreamVideo/Utils/Logger/Formatter/PrefixLogFormatter.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import Foundation diff --git a/Sources/StreamVideo/Utils/Logger/Publisher+Logger.swift b/Sources/StreamVideo/Utils/Logger/Publisher+Logger.swift index 60da81d7f..a54207bcf 100644 --- a/Sources/StreamVideo/Utils/Logger/Publisher+Logger.swift +++ b/Sources/StreamVideo/Utils/Logger/Publisher+Logger.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import Combine diff --git a/Sources/StreamVideo/Utils/ParticipantAutoLeavePolicy/DefaultParticipantAutoLeavePolicy.swift b/Sources/StreamVideo/Utils/ParticipantAutoLeavePolicy/DefaultParticipantAutoLeavePolicy.swift index 0bce9d49e..5127fa896 100644 --- a/Sources/StreamVideo/Utils/ParticipantAutoLeavePolicy/DefaultParticipantAutoLeavePolicy.swift +++ b/Sources/StreamVideo/Utils/ParticipantAutoLeavePolicy/DefaultParticipantAutoLeavePolicy.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import Foundation diff --git a/Sources/StreamVideo/Utils/ParticipantAutoLeavePolicy/LastParticipantAutoLeavePolicy.swift b/Sources/StreamVideo/Utils/ParticipantAutoLeavePolicy/LastParticipantAutoLeavePolicy.swift index bb9f1090f..f62b66d4b 100644 --- a/Sources/StreamVideo/Utils/ParticipantAutoLeavePolicy/LastParticipantAutoLeavePolicy.swift +++ b/Sources/StreamVideo/Utils/ParticipantAutoLeavePolicy/LastParticipantAutoLeavePolicy.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import Combine diff --git a/Sources/StreamVideo/Utils/ParticipantAutoLeavePolicy/ParticipantAutoLeavePolicy.swift b/Sources/StreamVideo/Utils/ParticipantAutoLeavePolicy/ParticipantAutoLeavePolicy.swift index e7220756e..e6066e0f4 100644 --- a/Sources/StreamVideo/Utils/ParticipantAutoLeavePolicy/ParticipantAutoLeavePolicy.swift +++ b/Sources/StreamVideo/Utils/ParticipantAutoLeavePolicy/ParticipantAutoLeavePolicy.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import Foundation diff --git a/Sources/StreamVideo/Utils/Publisher+WeakAssign.swift b/Sources/StreamVideo/Utils/Publisher+WeakAssign.swift index 91fe69216..75bc6186f 100644 --- a/Sources/StreamVideo/Utils/Publisher+WeakAssign.swift +++ b/Sources/StreamVideo/Utils/Publisher+WeakAssign.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import Combine diff --git a/Sources/StreamVideo/Utils/Queues/LockQueuing.swift b/Sources/StreamVideo/Utils/Queues/LockQueuing.swift index bf7fc752b..b32f375be 100644 --- a/Sources/StreamVideo/Utils/Queues/LockQueuing.swift +++ b/Sources/StreamVideo/Utils/Queues/LockQueuing.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import Foundation diff --git a/Sources/StreamVideo/Utils/Queues/RecursiveQueue.swift b/Sources/StreamVideo/Utils/Queues/RecursiveQueue.swift index 5e7978625..d3ec65cf8 100644 --- a/Sources/StreamVideo/Utils/Queues/RecursiveQueue.swift +++ b/Sources/StreamVideo/Utils/Queues/RecursiveQueue.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import Foundation diff --git a/Sources/StreamVideo/Utils/Queues/UnfairQueue.swift b/Sources/StreamVideo/Utils/Queues/UnfairQueue.swift index 1341848b4..3cfb6cd8c 100644 --- a/Sources/StreamVideo/Utils/Queues/UnfairQueue.swift +++ b/Sources/StreamVideo/Utils/Queues/UnfairQueue.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import Foundation diff --git a/Sources/StreamVideo/Utils/RawJSON.swift b/Sources/StreamVideo/Utils/RawJSON.swift index b68504ef1..6ec035b77 100644 --- a/Sources/StreamVideo/Utils/RawJSON.swift +++ b/Sources/StreamVideo/Utils/RawJSON.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import Foundation diff --git a/Sources/StreamVideo/Utils/RejectionReasonProvider/RejectionReasonProvider.swift b/Sources/StreamVideo/Utils/RejectionReasonProvider/RejectionReasonProvider.swift index 421aba751..cbbbb0582 100644 --- a/Sources/StreamVideo/Utils/RejectionReasonProvider/RejectionReasonProvider.swift +++ b/Sources/StreamVideo/Utils/RejectionReasonProvider/RejectionReasonProvider.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import Combine diff --git a/Sources/StreamVideo/Utils/ScreenPropertiesAdapter/ScreenPropertiesAdapter.swift b/Sources/StreamVideo/Utils/ScreenPropertiesAdapter/ScreenPropertiesAdapter.swift index 6722105f0..84b2924ac 100644 --- a/Sources/StreamVideo/Utils/ScreenPropertiesAdapter/ScreenPropertiesAdapter.swift +++ b/Sources/StreamVideo/Utils/ScreenPropertiesAdapter/ScreenPropertiesAdapter.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import Foundation diff --git a/Sources/StreamVideo/Utils/Sorting.swift b/Sources/StreamVideo/Utils/Sorting.swift index d57998e7e..e55fd61bb 100644 --- a/Sources/StreamVideo/Utils/Sorting.swift +++ b/Sources/StreamVideo/Utils/Sorting.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import Foundation diff --git a/Sources/StreamVideo/Utils/StateMachine/CallStateMachine/Stages/StreamCallStateMachine+AcceptedStage.swift b/Sources/StreamVideo/Utils/StateMachine/CallStateMachine/Stages/StreamCallStateMachine+AcceptedStage.swift index c05606c78..b6bd53e5c 100644 --- a/Sources/StreamVideo/Utils/StateMachine/CallStateMachine/Stages/StreamCallStateMachine+AcceptedStage.swift +++ b/Sources/StreamVideo/Utils/StateMachine/CallStateMachine/Stages/StreamCallStateMachine+AcceptedStage.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import Foundation diff --git a/Sources/StreamVideo/Utils/StateMachine/CallStateMachine/Stages/StreamCallStateMachine+AcceptingStage.swift b/Sources/StreamVideo/Utils/StateMachine/CallStateMachine/Stages/StreamCallStateMachine+AcceptingStage.swift index baca5b43d..de230edf6 100644 --- a/Sources/StreamVideo/Utils/StateMachine/CallStateMachine/Stages/StreamCallStateMachine+AcceptingStage.swift +++ b/Sources/StreamVideo/Utils/StateMachine/CallStateMachine/Stages/StreamCallStateMachine+AcceptingStage.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // extension StreamCallStateMachine.Stage { diff --git a/Sources/StreamVideo/Utils/StateMachine/CallStateMachine/Stages/StreamCallStateMachine+ErrorStage.swift b/Sources/StreamVideo/Utils/StateMachine/CallStateMachine/Stages/StreamCallStateMachine+ErrorStage.swift index fc538ce79..19b9b5a8f 100644 --- a/Sources/StreamVideo/Utils/StateMachine/CallStateMachine/Stages/StreamCallStateMachine+ErrorStage.swift +++ b/Sources/StreamVideo/Utils/StateMachine/CallStateMachine/Stages/StreamCallStateMachine+ErrorStage.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import Foundation diff --git a/Sources/StreamVideo/Utils/StateMachine/CallStateMachine/Stages/StreamCallStateMachine+IdleStage.swift b/Sources/StreamVideo/Utils/StateMachine/CallStateMachine/Stages/StreamCallStateMachine+IdleStage.swift index 508557faf..b3dd5d77b 100644 --- a/Sources/StreamVideo/Utils/StateMachine/CallStateMachine/Stages/StreamCallStateMachine+IdleStage.swift +++ b/Sources/StreamVideo/Utils/StateMachine/CallStateMachine/Stages/StreamCallStateMachine+IdleStage.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import Foundation diff --git a/Sources/StreamVideo/Utils/StateMachine/CallStateMachine/Stages/StreamCallStateMachine+JoinedStage.swift b/Sources/StreamVideo/Utils/StateMachine/CallStateMachine/Stages/StreamCallStateMachine+JoinedStage.swift index 60ebc54b0..d1932ea3b 100644 --- a/Sources/StreamVideo/Utils/StateMachine/CallStateMachine/Stages/StreamCallStateMachine+JoinedStage.swift +++ b/Sources/StreamVideo/Utils/StateMachine/CallStateMachine/Stages/StreamCallStateMachine+JoinedStage.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import Foundation diff --git a/Sources/StreamVideo/Utils/StateMachine/CallStateMachine/Stages/StreamCallStateMachine+JoiningStage.swift b/Sources/StreamVideo/Utils/StateMachine/CallStateMachine/Stages/StreamCallStateMachine+JoiningStage.swift index d6cd3665f..868d86c23 100644 --- a/Sources/StreamVideo/Utils/StateMachine/CallStateMachine/Stages/StreamCallStateMachine+JoiningStage.swift +++ b/Sources/StreamVideo/Utils/StateMachine/CallStateMachine/Stages/StreamCallStateMachine+JoiningStage.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import Foundation diff --git a/Sources/StreamVideo/Utils/StateMachine/CallStateMachine/Stages/StreamCallStateMachine+RejectedStage.swift b/Sources/StreamVideo/Utils/StateMachine/CallStateMachine/Stages/StreamCallStateMachine+RejectedStage.swift index d95c983b8..031e73591 100644 --- a/Sources/StreamVideo/Utils/StateMachine/CallStateMachine/Stages/StreamCallStateMachine+RejectedStage.swift +++ b/Sources/StreamVideo/Utils/StateMachine/CallStateMachine/Stages/StreamCallStateMachine+RejectedStage.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // extension StreamCallStateMachine.Stage { diff --git a/Sources/StreamVideo/Utils/StateMachine/CallStateMachine/Stages/StreamCallStateMachine+RejectingStage.swift b/Sources/StreamVideo/Utils/StateMachine/CallStateMachine/Stages/StreamCallStateMachine+RejectingStage.swift index 383dff1f4..11a0bfa04 100644 --- a/Sources/StreamVideo/Utils/StateMachine/CallStateMachine/Stages/StreamCallStateMachine+RejectingStage.swift +++ b/Sources/StreamVideo/Utils/StateMachine/CallStateMachine/Stages/StreamCallStateMachine+RejectingStage.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // extension StreamCallStateMachine.Stage { diff --git a/Sources/StreamVideo/Utils/StateMachine/CallStateMachine/Stages/StreamCallStateMachine+Stage.swift b/Sources/StreamVideo/Utils/StateMachine/CallStateMachine/Stages/StreamCallStateMachine+Stage.swift index bdb8394ad..c2e2fc33f 100644 --- a/Sources/StreamVideo/Utils/StateMachine/CallStateMachine/Stages/StreamCallStateMachine+Stage.swift +++ b/Sources/StreamVideo/Utils/StateMachine/CallStateMachine/Stages/StreamCallStateMachine+Stage.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import Foundation diff --git a/Sources/StreamVideo/Utils/StateMachine/CallStateMachine/StreamCallStateMachine.swift b/Sources/StreamVideo/Utils/StateMachine/CallStateMachine/StreamCallStateMachine.swift index 78b795b75..d996cf1a3 100644 --- a/Sources/StreamVideo/Utils/StateMachine/CallStateMachine/StreamCallStateMachine.swift +++ b/Sources/StreamVideo/Utils/StateMachine/CallStateMachine/StreamCallStateMachine.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import Combine diff --git a/Sources/StreamVideo/Utils/StateMachine/Publisher+NextValue.swift b/Sources/StreamVideo/Utils/StateMachine/Publisher+NextValue.swift index 5d2aeab34..396b87324 100644 --- a/Sources/StreamVideo/Utils/StateMachine/Publisher+NextValue.swift +++ b/Sources/StreamVideo/Utils/StateMachine/Publisher+NextValue.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import Combine diff --git a/Sources/StreamVideo/Utils/StateMachine/StreamStateMachine.swift b/Sources/StreamVideo/Utils/StateMachine/StreamStateMachine.swift index 9f8cf7d61..a0bd65401 100644 --- a/Sources/StreamVideo/Utils/StateMachine/StreamStateMachine.swift +++ b/Sources/StreamVideo/Utils/StateMachine/StreamStateMachine.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import Combine diff --git a/Sources/StreamVideo/Utils/StateMachine/StreamStateMachineStage.swift b/Sources/StreamVideo/Utils/StateMachine/StreamStateMachineStage.swift index 76d4e8865..6228bab3b 100644 --- a/Sources/StreamVideo/Utils/StateMachine/StreamStateMachineStage.swift +++ b/Sources/StreamVideo/Utils/StateMachine/StreamStateMachineStage.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import Foundation diff --git a/Sources/StreamVideo/Utils/StreamRuntimeCheck.swift b/Sources/StreamVideo/Utils/StreamRuntimeCheck.swift index 18314dbbe..4b800aba9 100644 --- a/Sources/StreamVideo/Utils/StreamRuntimeCheck.swift +++ b/Sources/StreamVideo/Utils/StreamRuntimeCheck.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import Foundation diff --git a/Sources/StreamVideo/Utils/SystemEnvironment+XStreamClient.swift b/Sources/StreamVideo/Utils/SystemEnvironment+XStreamClient.swift index c43c94d74..7b6ef345e 100644 --- a/Sources/StreamVideo/Utils/SystemEnvironment+XStreamClient.swift +++ b/Sources/StreamVideo/Utils/SystemEnvironment+XStreamClient.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import Foundation diff --git a/Sources/StreamVideo/Utils/SystemEnvironment.swift b/Sources/StreamVideo/Utils/SystemEnvironment.swift index d83514ca4..e0d00815e 100644 --- a/Sources/StreamVideo/Utils/SystemEnvironment.swift +++ b/Sources/StreamVideo/Utils/SystemEnvironment.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import Foundation diff --git a/Sources/StreamVideo/Utils/ThermalStateObserver.swift b/Sources/StreamVideo/Utils/ThermalStateObserver.swift index 678a4a8cd..a6d79ca77 100644 --- a/Sources/StreamVideo/Utils/ThermalStateObserver.swift +++ b/Sources/StreamVideo/Utils/ThermalStateObserver.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import Combine diff --git a/Sources/StreamVideo/Utils/Timers.swift b/Sources/StreamVideo/Utils/Timers.swift index cc4fe1488..701d1d36f 100644 --- a/Sources/StreamVideo/Utils/Timers.swift +++ b/Sources/StreamVideo/Utils/Timers.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import Foundation diff --git a/Sources/StreamVideo/Utils/UIInterfaceOrientation+CGOrientation.swift b/Sources/StreamVideo/Utils/UIInterfaceOrientation+CGOrientation.swift index bd3677193..4803481cb 100644 --- a/Sources/StreamVideo/Utils/UIInterfaceOrientation+CGOrientation.swift +++ b/Sources/StreamVideo/Utils/UIInterfaceOrientation+CGOrientation.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // #if canImport(UIKit) diff --git a/Sources/StreamVideo/Utils/UUIDProviding/StreamUUIDFactory.swift b/Sources/StreamVideo/Utils/UUIDProviding/StreamUUIDFactory.swift index c75348af4..38527f2ff 100644 --- a/Sources/StreamVideo/Utils/UUIDProviding/StreamUUIDFactory.swift +++ b/Sources/StreamVideo/Utils/UUIDProviding/StreamUUIDFactory.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import Foundation diff --git a/Sources/StreamVideo/Utils/Unwrap/Unwrap.swift b/Sources/StreamVideo/Utils/Unwrap/Unwrap.swift index e65a109d9..1ce0fde53 100644 --- a/Sources/StreamVideo/Utils/Unwrap/Unwrap.swift +++ b/Sources/StreamVideo/Utils/Unwrap/Unwrap.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import Foundation diff --git a/Sources/StreamVideo/Utils/Utils.swift b/Sources/StreamVideo/Utils/Utils.swift index f55f2b400..a3594c4f5 100644 --- a/Sources/StreamVideo/Utils/Utils.swift +++ b/Sources/StreamVideo/Utils/Utils.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import Foundation diff --git a/Sources/StreamVideo/VideoConfig.swift b/Sources/StreamVideo/VideoConfig.swift index 8a72cba6c..634401345 100644 --- a/Sources/StreamVideo/VideoConfig.swift +++ b/Sources/StreamVideo/VideoConfig.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import Foundation diff --git a/Sources/StreamVideo/WebRTC/AudioFilter/AudioFilter.swift b/Sources/StreamVideo/WebRTC/AudioFilter/AudioFilter.swift index 69364ee91..864100031 100644 --- a/Sources/StreamVideo/WebRTC/AudioFilter/AudioFilter.swift +++ b/Sources/StreamVideo/WebRTC/AudioFilter/AudioFilter.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import Foundation diff --git a/Sources/StreamVideo/WebRTC/AudioFilter/Filters/NoiseCancellationFilter.swift b/Sources/StreamVideo/WebRTC/AudioFilter/Filters/NoiseCancellationFilter.swift index 5481d9d61..e2de75c67 100644 --- a/Sources/StreamVideo/WebRTC/AudioFilter/Filters/NoiseCancellationFilter.swift +++ b/Sources/StreamVideo/WebRTC/AudioFilter/Filters/NoiseCancellationFilter.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import Foundation diff --git a/Sources/StreamVideo/WebRTC/AudioFilter/StreamAudioFilterCapturePostProcessingModule.swift b/Sources/StreamVideo/WebRTC/AudioFilter/StreamAudioFilterCapturePostProcessingModule.swift index ce2fc9a24..9a4d2c501 100644 --- a/Sources/StreamVideo/WebRTC/AudioFilter/StreamAudioFilterCapturePostProcessingModule.swift +++ b/Sources/StreamVideo/WebRTC/AudioFilter/StreamAudioFilterCapturePostProcessingModule.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import Foundation diff --git a/Sources/StreamVideo/WebRTC/AudioFilter/StreamAudioProcessingModule.swift b/Sources/StreamVideo/WebRTC/AudioFilter/StreamAudioProcessingModule.swift index 19fae7b4e..02d506868 100644 --- a/Sources/StreamVideo/WebRTC/AudioFilter/StreamAudioProcessingModule.swift +++ b/Sources/StreamVideo/WebRTC/AudioFilter/StreamAudioProcessingModule.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import Foundation diff --git a/Sources/StreamVideo/WebRTC/DefaultRTCConfiguration.swift b/Sources/StreamVideo/WebRTC/DefaultRTCConfiguration.swift index 9fcf48f56..41c82604f 100644 --- a/Sources/StreamVideo/WebRTC/DefaultRTCConfiguration.swift +++ b/Sources/StreamVideo/WebRTC/DefaultRTCConfiguration.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import Foundation diff --git a/Sources/StreamVideo/WebRTC/DefaultRTCMediaConstraints.swift b/Sources/StreamVideo/WebRTC/DefaultRTCMediaConstraints.swift index 1c7474026..9f7c996ec 100644 --- a/Sources/StreamVideo/WebRTC/DefaultRTCMediaConstraints.swift +++ b/Sources/StreamVideo/WebRTC/DefaultRTCMediaConstraints.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import Foundation diff --git a/Sources/StreamVideo/WebRTC/Retries.swift b/Sources/StreamVideo/WebRTC/Retries.swift index 86a77e2a0..4e5ae832d 100644 --- a/Sources/StreamVideo/WebRTC/Retries.swift +++ b/Sources/StreamVideo/WebRTC/Retries.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import Foundation diff --git a/Sources/StreamVideo/WebRTC/Screensharing/BroadcastBufferConnection.swift b/Sources/StreamVideo/WebRTC/Screensharing/BroadcastBufferConnection.swift index 8641c5ac0..860bb50df 100644 --- a/Sources/StreamVideo/WebRTC/Screensharing/BroadcastBufferConnection.swift +++ b/Sources/StreamVideo/WebRTC/Screensharing/BroadcastBufferConnection.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import Foundation diff --git a/Sources/StreamVideo/WebRTC/Screensharing/BroadcastBufferReader.swift b/Sources/StreamVideo/WebRTC/Screensharing/BroadcastBufferReader.swift index 2197e7209..01cadf846 100644 --- a/Sources/StreamVideo/WebRTC/Screensharing/BroadcastBufferReader.swift +++ b/Sources/StreamVideo/WebRTC/Screensharing/BroadcastBufferReader.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import CoreImage diff --git a/Sources/StreamVideo/WebRTC/Screensharing/BroadcastBufferReaderConnection.swift b/Sources/StreamVideo/WebRTC/Screensharing/BroadcastBufferReaderConnection.swift index bffb70610..ecbc20a77 100644 --- a/Sources/StreamVideo/WebRTC/Screensharing/BroadcastBufferReaderConnection.swift +++ b/Sources/StreamVideo/WebRTC/Screensharing/BroadcastBufferReaderConnection.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import Darwin diff --git a/Sources/StreamVideo/WebRTC/Screensharing/BroadcastBufferUploadConnection.swift b/Sources/StreamVideo/WebRTC/Screensharing/BroadcastBufferUploadConnection.swift index d38346eeb..d4a20ad13 100644 --- a/Sources/StreamVideo/WebRTC/Screensharing/BroadcastBufferUploadConnection.swift +++ b/Sources/StreamVideo/WebRTC/Screensharing/BroadcastBufferUploadConnection.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import Foundation diff --git a/Sources/StreamVideo/WebRTC/Screensharing/BroadcastBufferUploader.swift b/Sources/StreamVideo/WebRTC/Screensharing/BroadcastBufferUploader.swift index 0806e8706..cd2b1dee5 100644 --- a/Sources/StreamVideo/WebRTC/Screensharing/BroadcastBufferUploader.swift +++ b/Sources/StreamVideo/WebRTC/Screensharing/BroadcastBufferUploader.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import Foundation diff --git a/Sources/StreamVideo/WebRTC/Screensharing/BroadcastConstants.swift b/Sources/StreamVideo/WebRTC/Screensharing/BroadcastConstants.swift index cde87c451..ea4b85176 100644 --- a/Sources/StreamVideo/WebRTC/Screensharing/BroadcastConstants.swift +++ b/Sources/StreamVideo/WebRTC/Screensharing/BroadcastConstants.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import Foundation diff --git a/Sources/StreamVideo/WebRTC/Screensharing/BroadcastObserver.swift b/Sources/StreamVideo/WebRTC/Screensharing/BroadcastObserver.swift index bed73fbe2..34579fc8b 100644 --- a/Sources/StreamVideo/WebRTC/Screensharing/BroadcastObserver.swift +++ b/Sources/StreamVideo/WebRTC/Screensharing/BroadcastObserver.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import Combine diff --git a/Sources/StreamVideo/WebRTC/Screensharing/BroadcastSampleHandler.swift b/Sources/StreamVideo/WebRTC/Screensharing/BroadcastSampleHandler.swift index bb99808bd..5cf9ca062 100644 --- a/Sources/StreamVideo/WebRTC/Screensharing/BroadcastSampleHandler.swift +++ b/Sources/StreamVideo/WebRTC/Screensharing/BroadcastSampleHandler.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import ReplayKit diff --git a/Sources/StreamVideo/WebRTC/Statistics/Statistics+Convenience.swift b/Sources/StreamVideo/WebRTC/Statistics/Statistics+Convenience.swift index 608173082..57b542759 100644 --- a/Sources/StreamVideo/WebRTC/Statistics/Statistics+Convenience.swift +++ b/Sources/StreamVideo/WebRTC/Statistics/Statistics+Convenience.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import Foundation diff --git a/Sources/StreamVideo/WebRTC/Statistics/StreamCallStatisticsFormatter.swift b/Sources/StreamVideo/WebRTC/Statistics/StreamCallStatisticsFormatter.swift index aa75b51b1..d64fb62bb 100644 --- a/Sources/StreamVideo/WebRTC/Statistics/StreamCallStatisticsFormatter.swift +++ b/Sources/StreamVideo/WebRTC/Statistics/StreamCallStatisticsFormatter.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import Foundation diff --git a/Sources/StreamVideo/WebRTC/Statistics/StreamCallStatisticsReporter.swift b/Sources/StreamVideo/WebRTC/Statistics/StreamCallStatisticsReporter.swift index 4ea4ce7a5..3588a10ff 100644 --- a/Sources/StreamVideo/WebRTC/Statistics/StreamCallStatisticsReporter.swift +++ b/Sources/StreamVideo/WebRTC/Statistics/StreamCallStatisticsReporter.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import Foundation diff --git a/Sources/StreamVideo/WebRTC/VideoCapturing/SimulatorScreenCapturer.swift b/Sources/StreamVideo/WebRTC/VideoCapturing/SimulatorScreenCapturer.swift index f76963198..50dc3b486 100644 --- a/Sources/StreamVideo/WebRTC/VideoCapturing/SimulatorScreenCapturer.swift +++ b/Sources/StreamVideo/WebRTC/VideoCapturing/SimulatorScreenCapturer.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import Foundation diff --git a/Sources/StreamVideo/WebRTC/VideoFilters/Extensions/CIImage+Resize.swift b/Sources/StreamVideo/WebRTC/VideoFilters/Extensions/CIImage+Resize.swift index b68329bee..aec032123 100644 --- a/Sources/StreamVideo/WebRTC/VideoFilters/Extensions/CIImage+Resize.swift +++ b/Sources/StreamVideo/WebRTC/VideoFilters/Extensions/CIImage+Resize.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import CoreImage diff --git a/Sources/StreamVideo/WebRTC/VideoFilters/Extensions/CIImage+Sendable.swift b/Sources/StreamVideo/WebRTC/VideoFilters/Extensions/CIImage+Sendable.swift index 8e4407c25..f007fc255 100644 --- a/Sources/StreamVideo/WebRTC/VideoFilters/Extensions/CIImage+Sendable.swift +++ b/Sources/StreamVideo/WebRTC/VideoFilters/Extensions/CIImage+Sendable.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import CoreImage diff --git a/Sources/StreamVideo/WebRTC/VideoFilters/Extensions/UIDevice+NeuralEngine.swift b/Sources/StreamVideo/WebRTC/VideoFilters/Extensions/UIDevice+NeuralEngine.swift index 688e2e02d..9c31afcd2 100644 --- a/Sources/StreamVideo/WebRTC/VideoFilters/Extensions/UIDevice+NeuralEngine.swift +++ b/Sources/StreamVideo/WebRTC/VideoFilters/Extensions/UIDevice+NeuralEngine.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // #if canImport(MLCompute) diff --git a/Sources/StreamVideo/WebRTC/VideoFilters/Filters/BlurBackgroundFilter/BlurBackgroundVideoFilter.swift b/Sources/StreamVideo/WebRTC/VideoFilters/Filters/BlurBackgroundFilter/BlurBackgroundVideoFilter.swift index 153502665..3ae918182 100644 --- a/Sources/StreamVideo/WebRTC/VideoFilters/Filters/BlurBackgroundFilter/BlurBackgroundVideoFilter.swift +++ b/Sources/StreamVideo/WebRTC/VideoFilters/Filters/BlurBackgroundFilter/BlurBackgroundVideoFilter.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import CoreImage diff --git a/Sources/StreamVideo/WebRTC/VideoFilters/Filters/ImageBackgroundFilter/ImageBackgroundVideoFilter.swift b/Sources/StreamVideo/WebRTC/VideoFilters/Filters/ImageBackgroundFilter/ImageBackgroundVideoFilter.swift index 22b110c3b..72c18686a 100644 --- a/Sources/StreamVideo/WebRTC/VideoFilters/Filters/ImageBackgroundFilter/ImageBackgroundVideoFilter.swift +++ b/Sources/StreamVideo/WebRTC/VideoFilters/Filters/ImageBackgroundFilter/ImageBackgroundVideoFilter.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import CoreImage diff --git a/Sources/StreamVideo/WebRTC/VideoFilters/Utilities/BackgroundImageFilterProcessor.swift b/Sources/StreamVideo/WebRTC/VideoFilters/Utilities/BackgroundImageFilterProcessor.swift index 578736345..8a49c39d7 100644 --- a/Sources/StreamVideo/WebRTC/VideoFilters/Utilities/BackgroundImageFilterProcessor.swift +++ b/Sources/StreamVideo/WebRTC/VideoFilters/Utilities/BackgroundImageFilterProcessor.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import CoreImage diff --git a/Sources/StreamVideo/WebRTC/VideoFilters/VideoFilters.swift b/Sources/StreamVideo/WebRTC/VideoFilters/VideoFilters.swift index 5efe1e5b4..f9c77b8c2 100644 --- a/Sources/StreamVideo/WebRTC/VideoFilters/VideoFilters.swift +++ b/Sources/StreamVideo/WebRTC/VideoFilters/VideoFilters.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import Foundation diff --git a/Sources/StreamVideo/WebRTC/WebRTCEventDecoder.swift b/Sources/StreamVideo/WebRTC/WebRTCEventDecoder.swift index 13bee95dc..f65044523 100644 --- a/Sources/StreamVideo/WebRTC/WebRTCEventDecoder.swift +++ b/Sources/StreamVideo/WebRTC/WebRTCEventDecoder.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import Foundation diff --git a/Sources/StreamVideo/WebRTC/WebRTCEvents.swift b/Sources/StreamVideo/WebRTC/WebRTCEvents.swift index c34ab47cd..4d952f48b 100644 --- a/Sources/StreamVideo/WebRTC/WebRTCEvents.swift +++ b/Sources/StreamVideo/WebRTC/WebRTCEvents.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import Foundation diff --git a/Sources/StreamVideo/WebRTC/v2/Extensions/AudioSettings+Convenience.swift b/Sources/StreamVideo/WebRTC/v2/Extensions/AudioSettings+Convenience.swift index 584b8a5ca..1ff741e52 100644 --- a/Sources/StreamVideo/WebRTC/v2/Extensions/AudioSettings+Convenience.swift +++ b/Sources/StreamVideo/WebRTC/v2/Extensions/AudioSettings+Convenience.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import Foundation diff --git a/Sources/StreamVideo/WebRTC/v2/Extensions/CallParticipant+Convenience.swift b/Sources/StreamVideo/WebRTC/v2/Extensions/CallParticipant+Convenience.swift index 25ecc24d0..ae2067e53 100644 --- a/Sources/StreamVideo/WebRTC/v2/Extensions/CallParticipant+Convenience.swift +++ b/Sources/StreamVideo/WebRTC/v2/Extensions/CallParticipant+Convenience.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import Foundation diff --git a/Sources/StreamVideo/WebRTC/v2/Extensions/Foundation/Publisher+AsyncStream.swift b/Sources/StreamVideo/WebRTC/v2/Extensions/Foundation/Publisher+AsyncStream.swift index b57cfdbc9..c985776ab 100644 --- a/Sources/StreamVideo/WebRTC/v2/Extensions/Foundation/Publisher+AsyncStream.swift +++ b/Sources/StreamVideo/WebRTC/v2/Extensions/Foundation/Publisher+AsyncStream.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import Combine diff --git a/Sources/StreamVideo/WebRTC/v2/Extensions/Foundation/Publisher+Sendable.swift b/Sources/StreamVideo/WebRTC/v2/Extensions/Foundation/Publisher+Sendable.swift index efb27983b..c64abc40d 100644 --- a/Sources/StreamVideo/WebRTC/v2/Extensions/Foundation/Publisher+Sendable.swift +++ b/Sources/StreamVideo/WebRTC/v2/Extensions/Foundation/Publisher+Sendable.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import Combine diff --git a/Sources/StreamVideo/WebRTC/v2/Extensions/Foundation/Task+Timeout.swift b/Sources/StreamVideo/WebRTC/v2/Extensions/Foundation/Task+Timeout.swift index 1844b6c79..68b882c34 100644 --- a/Sources/StreamVideo/WebRTC/v2/Extensions/Foundation/Task+Timeout.swift +++ b/Sources/StreamVideo/WebRTC/v2/Extensions/Foundation/Task+Timeout.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import Foundation diff --git a/Sources/StreamVideo/WebRTC/v2/Extensions/Foundation/URLSessionConfiguration+WaitsForConnectivity.swift b/Sources/StreamVideo/WebRTC/v2/Extensions/Foundation/URLSessionConfiguration+WaitsForConnectivity.swift index 76261a9ea..bb126f0a0 100644 --- a/Sources/StreamVideo/WebRTC/v2/Extensions/Foundation/URLSessionConfiguration+WaitsForConnectivity.swift +++ b/Sources/StreamVideo/WebRTC/v2/Extensions/Foundation/URLSessionConfiguration+WaitsForConnectivity.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import Foundation diff --git a/Sources/StreamVideo/WebRTC/v2/Extensions/WebRTC/RTCMediaStreamTrack+Sendable.swift b/Sources/StreamVideo/WebRTC/v2/Extensions/WebRTC/RTCMediaStreamTrack+Sendable.swift index 94b3bebc1..37ab183b3 100644 --- a/Sources/StreamVideo/WebRTC/v2/Extensions/WebRTC/RTCMediaStreamTrack+Sendable.swift +++ b/Sources/StreamVideo/WebRTC/v2/Extensions/WebRTC/RTCMediaStreamTrack+Sendable.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import StreamWebRTC diff --git a/Sources/StreamVideo/WebRTC/v2/PeerConnection/Adapters/ICEAdapter.swift b/Sources/StreamVideo/WebRTC/v2/PeerConnection/Adapters/ICEAdapter.swift index 62087eea7..c2835c53f 100644 --- a/Sources/StreamVideo/WebRTC/v2/PeerConnection/Adapters/ICEAdapter.swift +++ b/Sources/StreamVideo/WebRTC/v2/PeerConnection/Adapters/ICEAdapter.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import Foundation diff --git a/Sources/StreamVideo/WebRTC/v2/PeerConnection/Extensions/RTCIceCandidate+Convenience.swift b/Sources/StreamVideo/WebRTC/v2/PeerConnection/Extensions/RTCIceCandidate+Convenience.swift index 3c8d98310..e6ed45e31 100644 --- a/Sources/StreamVideo/WebRTC/v2/PeerConnection/Extensions/RTCIceCandidate+Convenience.swift +++ b/Sources/StreamVideo/WebRTC/v2/PeerConnection/Extensions/RTCIceCandidate+Convenience.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import StreamWebRTC diff --git a/Sources/StreamVideo/WebRTC/v2/PeerConnection/Extensions/RTCIceCandidate+CustomStringConvertible.swift b/Sources/StreamVideo/WebRTC/v2/PeerConnection/Extensions/RTCIceCandidate+CustomStringConvertible.swift index f6b5b2fae..b053b1609 100644 --- a/Sources/StreamVideo/WebRTC/v2/PeerConnection/Extensions/RTCIceCandidate+CustomStringConvertible.swift +++ b/Sources/StreamVideo/WebRTC/v2/PeerConnection/Extensions/RTCIceCandidate+CustomStringConvertible.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import StreamWebRTC diff --git a/Sources/StreamVideo/WebRTC/v2/PeerConnection/Extensions/RTCIceCandidate+Sendable.swift b/Sources/StreamVideo/WebRTC/v2/PeerConnection/Extensions/RTCIceCandidate+Sendable.swift index f75104507..525c3e9f2 100644 --- a/Sources/StreamVideo/WebRTC/v2/PeerConnection/Extensions/RTCIceCandidate+Sendable.swift +++ b/Sources/StreamVideo/WebRTC/v2/PeerConnection/Extensions/RTCIceCandidate+Sendable.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import StreamWebRTC diff --git a/Sources/StreamVideo/WebRTC/v2/PeerConnection/Extensions/RTCIceConnectionState+CustomStringConvertible.swift b/Sources/StreamVideo/WebRTC/v2/PeerConnection/Extensions/RTCIceConnectionState+CustomStringConvertible.swift index 03a1997dd..e107fb4ce 100644 --- a/Sources/StreamVideo/WebRTC/v2/PeerConnection/Extensions/RTCIceConnectionState+CustomStringConvertible.swift +++ b/Sources/StreamVideo/WebRTC/v2/PeerConnection/Extensions/RTCIceConnectionState+CustomStringConvertible.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import Foundation diff --git a/Sources/StreamVideo/WebRTC/v2/PeerConnection/Extensions/RTCIceGatheringState+CustomStringConvertible.swift b/Sources/StreamVideo/WebRTC/v2/PeerConnection/Extensions/RTCIceGatheringState+CustomStringConvertible.swift index 90117f612..eb57433ad 100644 --- a/Sources/StreamVideo/WebRTC/v2/PeerConnection/Extensions/RTCIceGatheringState+CustomStringConvertible.swift +++ b/Sources/StreamVideo/WebRTC/v2/PeerConnection/Extensions/RTCIceGatheringState+CustomStringConvertible.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import Foundation diff --git a/Sources/StreamVideo/WebRTC/v2/PeerConnection/Extensions/RTCMediaStream+CustomStringConvertible.swift b/Sources/StreamVideo/WebRTC/v2/PeerConnection/Extensions/RTCMediaStream+CustomStringConvertible.swift index dd2f36f89..7a9a02249 100644 --- a/Sources/StreamVideo/WebRTC/v2/PeerConnection/Extensions/RTCMediaStream+CustomStringConvertible.swift +++ b/Sources/StreamVideo/WebRTC/v2/PeerConnection/Extensions/RTCMediaStream+CustomStringConvertible.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import StreamWebRTC diff --git a/Sources/StreamVideo/WebRTC/v2/PeerConnection/Extensions/RTCPeerConnectionState+CustomStringConvertible.swift b/Sources/StreamVideo/WebRTC/v2/PeerConnection/Extensions/RTCPeerConnectionState+CustomStringConvertible.swift index 061a21185..99df6df63 100644 --- a/Sources/StreamVideo/WebRTC/v2/PeerConnection/Extensions/RTCPeerConnectionState+CustomStringConvertible.swift +++ b/Sources/StreamVideo/WebRTC/v2/PeerConnection/Extensions/RTCPeerConnectionState+CustomStringConvertible.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import Foundation diff --git a/Sources/StreamVideo/WebRTC/v2/PeerConnection/Extensions/RTCRtpReceiver+CustomStringConvertible.swift b/Sources/StreamVideo/WebRTC/v2/PeerConnection/Extensions/RTCRtpReceiver+CustomStringConvertible.swift index 93aa3ffd7..b77ebaaa5 100644 --- a/Sources/StreamVideo/WebRTC/v2/PeerConnection/Extensions/RTCRtpReceiver+CustomStringConvertible.swift +++ b/Sources/StreamVideo/WebRTC/v2/PeerConnection/Extensions/RTCRtpReceiver+CustomStringConvertible.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import StreamWebRTC diff --git a/Sources/StreamVideo/WebRTC/v2/PeerConnection/Extensions/RTCRtpTransceiverDirection+CustomStringConvertible.swift b/Sources/StreamVideo/WebRTC/v2/PeerConnection/Extensions/RTCRtpTransceiverDirection+CustomStringConvertible.swift index 5ca7862a6..506379735 100644 --- a/Sources/StreamVideo/WebRTC/v2/PeerConnection/Extensions/RTCRtpTransceiverDirection+CustomStringConvertible.swift +++ b/Sources/StreamVideo/WebRTC/v2/PeerConnection/Extensions/RTCRtpTransceiverDirection+CustomStringConvertible.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import Foundation diff --git a/Sources/StreamVideo/WebRTC/v2/PeerConnection/Extensions/RTCSdpType+CustomStringConvertible.swift b/Sources/StreamVideo/WebRTC/v2/PeerConnection/Extensions/RTCSdpType+CustomStringConvertible.swift index 58315e056..17773e3c6 100644 --- a/Sources/StreamVideo/WebRTC/v2/PeerConnection/Extensions/RTCSdpType+CustomStringConvertible.swift +++ b/Sources/StreamVideo/WebRTC/v2/PeerConnection/Extensions/RTCSdpType+CustomStringConvertible.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import Foundation diff --git a/Sources/StreamVideo/WebRTC/v2/PeerConnection/Extensions/RTCSignalingState+CustomStringConvertible.swift b/Sources/StreamVideo/WebRTC/v2/PeerConnection/Extensions/RTCSignalingState+CustomStringConvertible.swift index 15d16b37c..7b4c07d9f 100644 --- a/Sources/StreamVideo/WebRTC/v2/PeerConnection/Extensions/RTCSignalingState+CustomStringConvertible.swift +++ b/Sources/StreamVideo/WebRTC/v2/PeerConnection/Extensions/RTCSignalingState+CustomStringConvertible.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import Foundation diff --git a/Sources/StreamVideo/WebRTC/v2/PeerConnection/Extensions/RTCVideoTrack+Sendable.swift b/Sources/StreamVideo/WebRTC/v2/PeerConnection/Extensions/RTCVideoTrack+Sendable.swift index 9bc907016..8eced8103 100644 --- a/Sources/StreamVideo/WebRTC/v2/PeerConnection/Extensions/RTCVideoTrack+Sendable.swift +++ b/Sources/StreamVideo/WebRTC/v2/PeerConnection/Extensions/RTCVideoTrack+Sendable.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import StreamWebRTC diff --git a/Sources/StreamVideo/WebRTC/v2/PeerConnection/Extensions/StreamRTCPeerConnection+DelegatePublisher.swift b/Sources/StreamVideo/WebRTC/v2/PeerConnection/Extensions/StreamRTCPeerConnection+DelegatePublisher.swift index 2691cd03a..c9ecfe5f8 100644 --- a/Sources/StreamVideo/WebRTC/v2/PeerConnection/Extensions/StreamRTCPeerConnection+DelegatePublisher.swift +++ b/Sources/StreamVideo/WebRTC/v2/PeerConnection/Extensions/StreamRTCPeerConnection+DelegatePublisher.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import Combine diff --git a/Sources/StreamVideo/WebRTC/v2/PeerConnection/Models/ICECandidate.swift b/Sources/StreamVideo/WebRTC/v2/PeerConnection/Models/ICECandidate.swift index 41161f8fd..ca0fb9ce8 100644 --- a/Sources/StreamVideo/WebRTC/v2/PeerConnection/Models/ICECandidate.swift +++ b/Sources/StreamVideo/WebRTC/v2/PeerConnection/Models/ICECandidate.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import Foundation diff --git a/Sources/StreamVideo/WebRTC/v2/PeerConnection/Models/PeerConnectionType.swift b/Sources/StreamVideo/WebRTC/v2/PeerConnection/Models/PeerConnectionType.swift index 74f7c7b64..3d4943b5a 100644 --- a/Sources/StreamVideo/WebRTC/v2/PeerConnection/Models/PeerConnectionType.swift +++ b/Sources/StreamVideo/WebRTC/v2/PeerConnection/Models/PeerConnectionType.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import Foundation diff --git a/Sources/StreamVideo/WebRTC/v2/PeerConnection/Models/StreamRTCPeerConnection+Events.swift b/Sources/StreamVideo/WebRTC/v2/PeerConnection/Models/StreamRTCPeerConnection+Events.swift index e2611d5a7..c6336d2a0 100644 --- a/Sources/StreamVideo/WebRTC/v2/PeerConnection/Models/StreamRTCPeerConnection+Events.swift +++ b/Sources/StreamVideo/WebRTC/v2/PeerConnection/Models/StreamRTCPeerConnection+Events.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import Foundation diff --git a/Sources/StreamVideo/WebRTC/v2/PeerConnection/Models/TrackEvent.swift b/Sources/StreamVideo/WebRTC/v2/PeerConnection/Models/TrackEvent.swift index 780bf3af5..9ae3f2c9e 100644 --- a/Sources/StreamVideo/WebRTC/v2/PeerConnection/Models/TrackEvent.swift +++ b/Sources/StreamVideo/WebRTC/v2/PeerConnection/Models/TrackEvent.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import Combine diff --git a/Sources/StreamVideo/WebRTC/v2/PeerConnection/Models/TrackType.swift b/Sources/StreamVideo/WebRTC/v2/PeerConnection/Models/TrackType.swift index 68c50813b..092283334 100644 --- a/Sources/StreamVideo/WebRTC/v2/PeerConnection/Models/TrackType.swift +++ b/Sources/StreamVideo/WebRTC/v2/PeerConnection/Models/TrackType.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import Foundation diff --git a/Sources/StreamVideo/WebRTC/v2/PeerConnection/Protocols/RTCPeerConnectionEvent.swift b/Sources/StreamVideo/WebRTC/v2/PeerConnection/Protocols/RTCPeerConnectionEvent.swift index e8f576f6d..4d505cad4 100644 --- a/Sources/StreamVideo/WebRTC/v2/PeerConnection/Protocols/RTCPeerConnectionEvent.swift +++ b/Sources/StreamVideo/WebRTC/v2/PeerConnection/Protocols/RTCPeerConnectionEvent.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // /// A simple protocol describing an event created from an RTCPeerConnection. diff --git a/Sources/StreamVideo/WebRTC/v2/SFU/Extensions/Stream_Video_Sfu_Event_SfuEvent.OneOf_EventPayload+Payload.swift b/Sources/StreamVideo/WebRTC/v2/SFU/Extensions/Stream_Video_Sfu_Event_SfuEvent.OneOf_EventPayload+Payload.swift index 995719f18..9198c2d96 100644 --- a/Sources/StreamVideo/WebRTC/v2/SFU/Extensions/Stream_Video_Sfu_Event_SfuEvent.OneOf_EventPayload+Payload.swift +++ b/Sources/StreamVideo/WebRTC/v2/SFU/Extensions/Stream_Video_Sfu_Event_SfuEvent.OneOf_EventPayload+Payload.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import Foundation diff --git a/Sources/StreamVideo/WebRTC/v2/SFU/Protocols/SignalServerEvent.swift b/Sources/StreamVideo/WebRTC/v2/SFU/Protocols/SignalServerEvent.swift index c3219f0d0..fd391bcce 100644 --- a/Sources/StreamVideo/WebRTC/v2/SFU/Protocols/SignalServerEvent.swift +++ b/Sources/StreamVideo/WebRTC/v2/SFU/Protocols/SignalServerEvent.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // // New protocol definition diff --git a/Sources/StreamVideo/WebRTC/v2/SFU/Protocols/WebSocketClientProviding.swift b/Sources/StreamVideo/WebRTC/v2/SFU/Protocols/WebSocketClientProviding.swift index 5d08be7a4..40368489e 100644 --- a/Sources/StreamVideo/WebRTC/v2/SFU/Protocols/WebSocketClientProviding.swift +++ b/Sources/StreamVideo/WebRTC/v2/SFU/Protocols/WebSocketClientProviding.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import Foundation diff --git a/Sources/StreamVideo/WebRTC/v2/SFU/SFUSignalService.swift b/Sources/StreamVideo/WebRTC/v2/SFU/SFUSignalService.swift index deec0187b..6bff6399e 100644 --- a/Sources/StreamVideo/WebRTC/v2/SFU/SFUSignalService.swift +++ b/Sources/StreamVideo/WebRTC/v2/SFU/SFUSignalService.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import Combine diff --git a/Sources/StreamVideo/WebRTC/v2/StateMachine/Stages/WebRTCCoordinator+CleanUp.swift b/Sources/StreamVideo/WebRTC/v2/StateMachine/Stages/WebRTCCoordinator+CleanUp.swift index 948f99fb0..aed97a8f1 100644 --- a/Sources/StreamVideo/WebRTC/v2/StateMachine/Stages/WebRTCCoordinator+CleanUp.swift +++ b/Sources/StreamVideo/WebRTC/v2/StateMachine/Stages/WebRTCCoordinator+CleanUp.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import Foundation diff --git a/Sources/StreamVideo/WebRTC/v2/StateMachine/Stages/WebRTCCoordinator+Connected.swift b/Sources/StreamVideo/WebRTC/v2/StateMachine/Stages/WebRTCCoordinator+Connected.swift index f1aeb9261..d15a65fd2 100644 --- a/Sources/StreamVideo/WebRTC/v2/StateMachine/Stages/WebRTCCoordinator+Connected.swift +++ b/Sources/StreamVideo/WebRTC/v2/StateMachine/Stages/WebRTCCoordinator+Connected.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import Foundation diff --git a/Sources/StreamVideo/WebRTC/v2/StateMachine/Stages/WebRTCCoordinator+Connecting.swift b/Sources/StreamVideo/WebRTC/v2/StateMachine/Stages/WebRTCCoordinator+Connecting.swift index f4e5736a2..5c1024f4a 100644 --- a/Sources/StreamVideo/WebRTC/v2/StateMachine/Stages/WebRTCCoordinator+Connecting.swift +++ b/Sources/StreamVideo/WebRTC/v2/StateMachine/Stages/WebRTCCoordinator+Connecting.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import Foundation diff --git a/Sources/StreamVideo/WebRTC/v2/StateMachine/Stages/WebRTCCoordinator+Error.swift b/Sources/StreamVideo/WebRTC/v2/StateMachine/Stages/WebRTCCoordinator+Error.swift index 6b3b03195..62270fb53 100644 --- a/Sources/StreamVideo/WebRTC/v2/StateMachine/Stages/WebRTCCoordinator+Error.swift +++ b/Sources/StreamVideo/WebRTC/v2/StateMachine/Stages/WebRTCCoordinator+Error.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import Foundation diff --git a/Sources/StreamVideo/WebRTC/v2/StateMachine/Stages/WebRTCCoordinator+FastReconnected.swift b/Sources/StreamVideo/WebRTC/v2/StateMachine/Stages/WebRTCCoordinator+FastReconnected.swift index 5e6c1ab04..b5d002ed7 100644 --- a/Sources/StreamVideo/WebRTC/v2/StateMachine/Stages/WebRTCCoordinator+FastReconnected.swift +++ b/Sources/StreamVideo/WebRTC/v2/StateMachine/Stages/WebRTCCoordinator+FastReconnected.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import Foundation diff --git a/Sources/StreamVideo/WebRTC/v2/StateMachine/Stages/WebRTCCoordinator+FastReconnecting.swift b/Sources/StreamVideo/WebRTC/v2/StateMachine/Stages/WebRTCCoordinator+FastReconnecting.swift index 121247a7e..667b907f8 100644 --- a/Sources/StreamVideo/WebRTC/v2/StateMachine/Stages/WebRTCCoordinator+FastReconnecting.swift +++ b/Sources/StreamVideo/WebRTC/v2/StateMachine/Stages/WebRTCCoordinator+FastReconnecting.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import Combine diff --git a/Sources/StreamVideo/WebRTC/v2/StateMachine/Stages/WebRTCCoordinator+Idle.swift b/Sources/StreamVideo/WebRTC/v2/StateMachine/Stages/WebRTCCoordinator+Idle.swift index 8a1b5da2c..99cfd578b 100644 --- a/Sources/StreamVideo/WebRTC/v2/StateMachine/Stages/WebRTCCoordinator+Idle.swift +++ b/Sources/StreamVideo/WebRTC/v2/StateMachine/Stages/WebRTCCoordinator+Idle.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import Foundation diff --git a/Sources/StreamVideo/WebRTC/v2/StateMachine/Stages/WebRTCCoordinator+Joined.swift b/Sources/StreamVideo/WebRTC/v2/StateMachine/Stages/WebRTCCoordinator+Joined.swift index b742510e7..4aa2ddc56 100644 --- a/Sources/StreamVideo/WebRTC/v2/StateMachine/Stages/WebRTCCoordinator+Joined.swift +++ b/Sources/StreamVideo/WebRTC/v2/StateMachine/Stages/WebRTCCoordinator+Joined.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import Combine diff --git a/Sources/StreamVideo/WebRTC/v2/StateMachine/Stages/WebRTCCoordinator+Leaving.swift b/Sources/StreamVideo/WebRTC/v2/StateMachine/Stages/WebRTCCoordinator+Leaving.swift index bef986875..c4e5b943c 100644 --- a/Sources/StreamVideo/WebRTC/v2/StateMachine/Stages/WebRTCCoordinator+Leaving.swift +++ b/Sources/StreamVideo/WebRTC/v2/StateMachine/Stages/WebRTCCoordinator+Leaving.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import Foundation diff --git a/Sources/StreamVideo/WebRTC/v2/StateMachine/Stages/WebRTCCoordinator+Migrated.swift b/Sources/StreamVideo/WebRTC/v2/StateMachine/Stages/WebRTCCoordinator+Migrated.swift index 5257e3e46..1b64883ff 100644 --- a/Sources/StreamVideo/WebRTC/v2/StateMachine/Stages/WebRTCCoordinator+Migrated.swift +++ b/Sources/StreamVideo/WebRTC/v2/StateMachine/Stages/WebRTCCoordinator+Migrated.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import Foundation diff --git a/Sources/StreamVideo/WebRTC/v2/StateMachine/Stages/WebRTCCoordinator+Migrating.swift b/Sources/StreamVideo/WebRTC/v2/StateMachine/Stages/WebRTCCoordinator+Migrating.swift index 71ad632b7..49962d5cc 100644 --- a/Sources/StreamVideo/WebRTC/v2/StateMachine/Stages/WebRTCCoordinator+Migrating.swift +++ b/Sources/StreamVideo/WebRTC/v2/StateMachine/Stages/WebRTCCoordinator+Migrating.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // extension WebRTCCoordinator.StateMachine.Stage { diff --git a/Sources/StreamVideo/WebRTC/v2/StateMachine/Stages/WebRTCCoordinator+Rejoining.swift b/Sources/StreamVideo/WebRTC/v2/StateMachine/Stages/WebRTCCoordinator+Rejoining.swift index 8d2936ea8..cfef8d8de 100644 --- a/Sources/StreamVideo/WebRTC/v2/StateMachine/Stages/WebRTCCoordinator+Rejoining.swift +++ b/Sources/StreamVideo/WebRTC/v2/StateMachine/Stages/WebRTCCoordinator+Rejoining.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import Combine diff --git a/Sources/StreamVideo/WebRTC/v2/StateMachine/Stages/WebRTCCoordinator+Stage.swift b/Sources/StreamVideo/WebRTC/v2/StateMachine/Stages/WebRTCCoordinator+Stage.swift index 7fc9b65ed..efc2e8437 100644 --- a/Sources/StreamVideo/WebRTC/v2/StateMachine/Stages/WebRTCCoordinator+Stage.swift +++ b/Sources/StreamVideo/WebRTC/v2/StateMachine/Stages/WebRTCCoordinator+Stage.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import Foundation diff --git a/Sources/StreamVideo/WebRTC/v2/StateMachine/WebRTCCoordinator+StateMachine.swift b/Sources/StreamVideo/WebRTC/v2/StateMachine/WebRTCCoordinator+StateMachine.swift index ccf7ae86b..b17bf716b 100644 --- a/Sources/StreamVideo/WebRTC/v2/StateMachine/WebRTCCoordinator+StateMachine.swift +++ b/Sources/StreamVideo/WebRTC/v2/StateMachine/WebRTCCoordinator+StateMachine.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import Combine diff --git a/Sources/StreamVideo/WebRTC/v2/WebRTCConfiguration.swift b/Sources/StreamVideo/WebRTC/v2/WebRTCConfiguration.swift index c007e0239..1fe7d782b 100644 --- a/Sources/StreamVideo/WebRTC/v2/WebRTCConfiguration.swift +++ b/Sources/StreamVideo/WebRTC/v2/WebRTCConfiguration.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import Foundation diff --git a/Sources/StreamVideo/WebRTC/v2/WebRTCCoordinatorProviding.swift b/Sources/StreamVideo/WebRTC/v2/WebRTCCoordinatorProviding.swift index ba4c4c263..8bf0a8e03 100644 --- a/Sources/StreamVideo/WebRTC/v2/WebRTCCoordinatorProviding.swift +++ b/Sources/StreamVideo/WebRTC/v2/WebRTCCoordinatorProviding.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import Foundation diff --git a/Sources/StreamVideo/WebRTC/v2/WebRTCMigrationStatusObserver.swift b/Sources/StreamVideo/WebRTC/v2/WebRTCMigrationStatusObserver.swift index 8a9f53994..19937068a 100644 --- a/Sources/StreamVideo/WebRTC/v2/WebRTCMigrationStatusObserver.swift +++ b/Sources/StreamVideo/WebRTC/v2/WebRTCMigrationStatusObserver.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import Combine diff --git a/Sources/StreamVideo/WebRTC/v2/WebRTCStatsReporter.swift b/Sources/StreamVideo/WebRTC/v2/WebRTCStatsReporter.swift index 6d50d3e92..b7613909a 100644 --- a/Sources/StreamVideo/WebRTC/v2/WebRTCStatsReporter.swift +++ b/Sources/StreamVideo/WebRTC/v2/WebRTCStatsReporter.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import Combine diff --git a/Sources/StreamVideo/WebSockets/Client/BackgroundTaskScheduler.swift b/Sources/StreamVideo/WebSockets/Client/BackgroundTaskScheduler.swift index 3e8471c77..be292f8a1 100644 --- a/Sources/StreamVideo/WebSockets/Client/BackgroundTaskScheduler.swift +++ b/Sources/StreamVideo/WebSockets/Client/BackgroundTaskScheduler.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import Foundation diff --git a/Sources/StreamVideo/WebSockets/Client/ConnectionRecoveryHandler.swift b/Sources/StreamVideo/WebSockets/Client/ConnectionRecoveryHandler.swift index 7c3ef1e0b..c7e125f3f 100644 --- a/Sources/StreamVideo/WebSockets/Client/ConnectionRecoveryHandler.swift +++ b/Sources/StreamVideo/WebSockets/Client/ConnectionRecoveryHandler.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import CoreData diff --git a/Sources/StreamVideo/WebSockets/Client/ConnectionStatus.swift b/Sources/StreamVideo/WebSockets/Client/ConnectionStatus.swift index d8dc191ea..4f1cbe8b2 100644 --- a/Sources/StreamVideo/WebSockets/Client/ConnectionStatus.swift +++ b/Sources/StreamVideo/WebSockets/Client/ConnectionStatus.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import Foundation diff --git a/Sources/StreamVideo/WebSockets/Client/RetryStrategy.swift b/Sources/StreamVideo/WebSockets/Client/RetryStrategy.swift index 9f7e5c410..79c228092 100644 --- a/Sources/StreamVideo/WebSockets/Client/RetryStrategy.swift +++ b/Sources/StreamVideo/WebSockets/Client/RetryStrategy.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import Foundation diff --git a/Sources/StreamVideo/WebSockets/Client/URLSessionWebSocketEngine.swift b/Sources/StreamVideo/WebSockets/Client/URLSessionWebSocketEngine.swift index 5dcae58f2..6b366e325 100644 --- a/Sources/StreamVideo/WebSockets/Client/URLSessionWebSocketEngine.swift +++ b/Sources/StreamVideo/WebSockets/Client/URLSessionWebSocketEngine.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import Foundation diff --git a/Sources/StreamVideo/WebSockets/Client/WebSocketClient.swift b/Sources/StreamVideo/WebSockets/Client/WebSocketClient.swift index 6f0743ce5..3a5592a09 100644 --- a/Sources/StreamVideo/WebSockets/Client/WebSocketClient.swift +++ b/Sources/StreamVideo/WebSockets/Client/WebSocketClient.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import Combine diff --git a/Sources/StreamVideo/WebSockets/Client/WebSocketEngine.swift b/Sources/StreamVideo/WebSockets/Client/WebSocketEngine.swift index d58b236aa..06bf1d5e1 100644 --- a/Sources/StreamVideo/WebSockets/Client/WebSocketEngine.swift +++ b/Sources/StreamVideo/WebSockets/Client/WebSocketEngine.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import Foundation diff --git a/Sources/StreamVideo/WebSockets/Client/WebSocketPingController.swift b/Sources/StreamVideo/WebSockets/Client/WebSocketPingController.swift index 536fda5da..4166f18e3 100644 --- a/Sources/StreamVideo/WebSockets/Client/WebSocketPingController.swift +++ b/Sources/StreamVideo/WebSockets/Client/WebSocketPingController.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import Foundation diff --git a/Sources/StreamVideo/WebSockets/Events/Event.swift b/Sources/StreamVideo/WebSockets/Events/Event.swift index e5e6ee4e2..52d988c74 100644 --- a/Sources/StreamVideo/WebSockets/Events/Event.swift +++ b/Sources/StreamVideo/WebSockets/Events/Event.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import Foundation diff --git a/Sources/StreamVideo/WebSockets/Events/EventBatcher.swift b/Sources/StreamVideo/WebSockets/Events/EventBatcher.swift index 13c844d86..aff1dc9c8 100644 --- a/Sources/StreamVideo/WebSockets/Events/EventBatcher.swift +++ b/Sources/StreamVideo/WebSockets/Events/EventBatcher.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import Foundation diff --git a/Sources/StreamVideo/WebSockets/Events/EventMiddleware.swift b/Sources/StreamVideo/WebSockets/Events/EventMiddleware.swift index 23cab17d7..7f8aff2b6 100644 --- a/Sources/StreamVideo/WebSockets/Events/EventMiddleware.swift +++ b/Sources/StreamVideo/WebSockets/Events/EventMiddleware.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import Foundation diff --git a/Sources/StreamVideo/WebSockets/Events/EventNotificationCenter.swift b/Sources/StreamVideo/WebSockets/Events/EventNotificationCenter.swift index 28955f081..b703185dc 100644 --- a/Sources/StreamVideo/WebSockets/Events/EventNotificationCenter.swift +++ b/Sources/StreamVideo/WebSockets/Events/EventNotificationCenter.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import Foundation diff --git a/Sources/StreamVideo/WebSockets/Events/JsonEventDecoder.swift b/Sources/StreamVideo/WebSockets/Events/JsonEventDecoder.swift index 0fbc9c59e..f4a198022 100644 --- a/Sources/StreamVideo/WebSockets/Events/JsonEventDecoder.swift +++ b/Sources/StreamVideo/WebSockets/Events/JsonEventDecoder.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import Foundation diff --git a/Sources/StreamVideo/WebSockets/Events/StreamJsonDecoder.swift b/Sources/StreamVideo/WebSockets/Events/StreamJsonDecoder.swift index 683a6cfe2..9a09591f1 100644 --- a/Sources/StreamVideo/WebSockets/Events/StreamJsonDecoder.swift +++ b/Sources/StreamVideo/WebSockets/Events/StreamJsonDecoder.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import Foundation diff --git a/Sources/StreamVideo/WebSockets/Events/WSEventsMiddleware.swift b/Sources/StreamVideo/WebSockets/Events/WSEventsMiddleware.swift index d5dba4a8a..f91639b55 100644 --- a/Sources/StreamVideo/WebSockets/Events/WSEventsMiddleware.swift +++ b/Sources/StreamVideo/WebSockets/Events/WSEventsMiddleware.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import Foundation diff --git a/Sources/StreamVideo/protobuf/ProtoModel.swift b/Sources/StreamVideo/protobuf/ProtoModel.swift index 9bdec381a..52dcd9306 100644 --- a/Sources/StreamVideo/protobuf/ProtoModel.swift +++ b/Sources/StreamVideo/protobuf/ProtoModel.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import Foundation diff --git a/Sources/StreamVideoSwiftUI/Appearance.swift b/Sources/StreamVideoSwiftUI/Appearance.swift index 67f33b364..fc9c60163 100644 --- a/Sources/StreamVideoSwiftUI/Appearance.swift +++ b/Sources/StreamVideoSwiftUI/Appearance.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import StreamVideo diff --git a/Sources/StreamVideoSwiftUI/CallContainer.swift b/Sources/StreamVideoSwiftUI/CallContainer.swift index 3e91919a7..17da1ba8a 100644 --- a/Sources/StreamVideoSwiftUI/CallContainer.swift +++ b/Sources/StreamVideoSwiftUI/CallContainer.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import StreamVideo diff --git a/Sources/StreamVideoSwiftUI/CallView/CallControls/Stateful/CallControlsView.swift b/Sources/StreamVideoSwiftUI/CallView/CallControls/Stateful/CallControlsView.swift index f3b26137b..da71c1f7e 100644 --- a/Sources/StreamVideoSwiftUI/CallView/CallControls/Stateful/CallControlsView.swift +++ b/Sources/StreamVideoSwiftUI/CallView/CallControls/Stateful/CallControlsView.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import StreamVideo diff --git a/Sources/StreamVideoSwiftUI/CallView/CallControls/Stateless/StatelessAudioOutputIconView.swift b/Sources/StreamVideoSwiftUI/CallView/CallControls/Stateless/StatelessAudioOutputIconView.swift index cd31dc150..8ffc0dc68 100644 --- a/Sources/StreamVideoSwiftUI/CallView/CallControls/Stateless/StatelessAudioOutputIconView.swift +++ b/Sources/StreamVideoSwiftUI/CallView/CallControls/Stateless/StatelessAudioOutputIconView.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import Foundation diff --git a/Sources/StreamVideoSwiftUI/CallView/CallControls/Stateless/StatelessHangUpIconView.swift b/Sources/StreamVideoSwiftUI/CallView/CallControls/Stateless/StatelessHangUpIconView.swift index b16a4eb14..fb9af429b 100644 --- a/Sources/StreamVideoSwiftUI/CallView/CallControls/Stateless/StatelessHangUpIconView.swift +++ b/Sources/StreamVideoSwiftUI/CallView/CallControls/Stateless/StatelessHangUpIconView.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import Foundation diff --git a/Sources/StreamVideoSwiftUI/CallView/CallControls/Stateless/StatelessMicrophoneIconView.swift b/Sources/StreamVideoSwiftUI/CallView/CallControls/Stateless/StatelessMicrophoneIconView.swift index 418b2491d..c8e10e3b3 100644 --- a/Sources/StreamVideoSwiftUI/CallView/CallControls/Stateless/StatelessMicrophoneIconView.swift +++ b/Sources/StreamVideoSwiftUI/CallView/CallControls/Stateless/StatelessMicrophoneIconView.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import Foundation diff --git a/Sources/StreamVideoSwiftUI/CallView/CallControls/Stateless/StatelessParticipantsListButton.swift b/Sources/StreamVideoSwiftUI/CallView/CallControls/Stateless/StatelessParticipantsListButton.swift index 3c6a6c3f0..d9c89914a 100644 --- a/Sources/StreamVideoSwiftUI/CallView/CallControls/Stateless/StatelessParticipantsListButton.swift +++ b/Sources/StreamVideoSwiftUI/CallView/CallControls/Stateless/StatelessParticipantsListButton.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import Foundation diff --git a/Sources/StreamVideoSwiftUI/CallView/CallControls/Stateless/StatelessSpeakerIconView.swift b/Sources/StreamVideoSwiftUI/CallView/CallControls/Stateless/StatelessSpeakerIconView.swift index 26aa4111f..931a9d083 100644 --- a/Sources/StreamVideoSwiftUI/CallView/CallControls/Stateless/StatelessSpeakerIconView.swift +++ b/Sources/StreamVideoSwiftUI/CallView/CallControls/Stateless/StatelessSpeakerIconView.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import Foundation diff --git a/Sources/StreamVideoSwiftUI/CallView/CallControls/Stateless/StatelessToggleCameraIconView.swift b/Sources/StreamVideoSwiftUI/CallView/CallControls/Stateless/StatelessToggleCameraIconView.swift index 376a95426..b303533d5 100644 --- a/Sources/StreamVideoSwiftUI/CallView/CallControls/Stateless/StatelessToggleCameraIconView.swift +++ b/Sources/StreamVideoSwiftUI/CallView/CallControls/Stateless/StatelessToggleCameraIconView.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import Foundation diff --git a/Sources/StreamVideoSwiftUI/CallView/CallControls/Stateless/StatelessVideoIconView.swift b/Sources/StreamVideoSwiftUI/CallView/CallControls/Stateless/StatelessVideoIconView.swift index 64f983e2e..e6824b7f9 100644 --- a/Sources/StreamVideoSwiftUI/CallView/CallControls/Stateless/StatelessVideoIconView.swift +++ b/Sources/StreamVideoSwiftUI/CallView/CallControls/Stateless/StatelessVideoIconView.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import Foundation diff --git a/Sources/StreamVideoSwiftUI/CallView/CallDurationView.swift b/Sources/StreamVideoSwiftUI/CallView/CallDurationView.swift index 17f592634..99217df6e 100644 --- a/Sources/StreamVideoSwiftUI/CallView/CallDurationView.swift +++ b/Sources/StreamVideoSwiftUI/CallView/CallDurationView.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import Foundation diff --git a/Sources/StreamVideoSwiftUI/CallView/CallParticipantImageView.swift b/Sources/StreamVideoSwiftUI/CallView/CallParticipantImageView.swift index 8913c0a2f..d9681ee57 100644 --- a/Sources/StreamVideoSwiftUI/CallView/CallParticipantImageView.swift +++ b/Sources/StreamVideoSwiftUI/CallView/CallParticipantImageView.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import StreamVideo diff --git a/Sources/StreamVideoSwiftUI/CallView/CallTopView.swift b/Sources/StreamVideoSwiftUI/CallView/CallTopView.swift index 4d253dffb..22f5c5533 100644 --- a/Sources/StreamVideoSwiftUI/CallView/CallTopView.swift +++ b/Sources/StreamVideoSwiftUI/CallView/CallTopView.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import StreamVideo diff --git a/Sources/StreamVideoSwiftUI/CallView/CallView.swift b/Sources/StreamVideoSwiftUI/CallView/CallView.swift index ad7ade128..910636346 100644 --- a/Sources/StreamVideoSwiftUI/CallView/CallView.swift +++ b/Sources/StreamVideoSwiftUI/CallView/CallView.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import StreamVideo diff --git a/Sources/StreamVideoSwiftUI/CallView/ConnectionQualityIndicator.swift b/Sources/StreamVideoSwiftUI/CallView/ConnectionQualityIndicator.swift index 36e62176d..29beb9868 100644 --- a/Sources/StreamVideoSwiftUI/CallView/ConnectionQualityIndicator.swift +++ b/Sources/StreamVideoSwiftUI/CallView/ConnectionQualityIndicator.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import StreamVideo diff --git a/Sources/StreamVideoSwiftUI/CallView/CornerDraggableView.swift b/Sources/StreamVideoSwiftUI/CallView/CornerDraggableView.swift index 96a035395..e8b637dc8 100644 --- a/Sources/StreamVideoSwiftUI/CallView/CornerDraggableView.swift +++ b/Sources/StreamVideoSwiftUI/CallView/CornerDraggableView.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import StreamVideo diff --git a/Sources/StreamVideoSwiftUI/CallView/LayoutComponents/ControlBadgeView.swift b/Sources/StreamVideoSwiftUI/CallView/LayoutComponents/ControlBadgeView.swift index 5be793c6a..c63cb8a8b 100644 --- a/Sources/StreamVideoSwiftUI/CallView/LayoutComponents/ControlBadgeView.swift +++ b/Sources/StreamVideoSwiftUI/CallView/LayoutComponents/ControlBadgeView.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import Foundation diff --git a/Sources/StreamVideoSwiftUI/CallView/LayoutComponents/Controls/ModalButton.swift b/Sources/StreamVideoSwiftUI/CallView/LayoutComponents/Controls/ModalButton.swift index 91947cafa..5412ed099 100644 --- a/Sources/StreamVideoSwiftUI/CallView/LayoutComponents/Controls/ModalButton.swift +++ b/Sources/StreamVideoSwiftUI/CallView/LayoutComponents/Controls/ModalButton.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import Foundation diff --git a/Sources/StreamVideoSwiftUI/CallView/LayoutComponents/Controls/ParticipantsListButton.swift b/Sources/StreamVideoSwiftUI/CallView/LayoutComponents/Controls/ParticipantsListButton.swift index dd345107d..00f303522 100644 --- a/Sources/StreamVideoSwiftUI/CallView/LayoutComponents/Controls/ParticipantsListButton.swift +++ b/Sources/StreamVideoSwiftUI/CallView/LayoutComponents/Controls/ParticipantsListButton.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import Foundation diff --git a/Sources/StreamVideoSwiftUI/CallView/LayoutComponents/HorizontalParticipantsListView.swift b/Sources/StreamVideoSwiftUI/CallView/LayoutComponents/HorizontalParticipantsListView.swift index da72fed29..b336d301b 100644 --- a/Sources/StreamVideoSwiftUI/CallView/LayoutComponents/HorizontalParticipantsListView.swift +++ b/Sources/StreamVideoSwiftUI/CallView/LayoutComponents/HorizontalParticipantsListView.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import StreamVideo diff --git a/Sources/StreamVideoSwiftUI/CallView/LayoutComponents/SpotlightSpeakerView.swift b/Sources/StreamVideoSwiftUI/CallView/LayoutComponents/SpotlightSpeakerView.swift index e27b5bbed..d68412064 100644 --- a/Sources/StreamVideoSwiftUI/CallView/LayoutComponents/SpotlightSpeakerView.swift +++ b/Sources/StreamVideoSwiftUI/CallView/LayoutComponents/SpotlightSpeakerView.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import StreamVideo diff --git a/Sources/StreamVideoSwiftUI/CallView/LayoutMenuView.swift b/Sources/StreamVideoSwiftUI/CallView/LayoutMenuView.swift index 62317405f..742a11fdd 100644 --- a/Sources/StreamVideoSwiftUI/CallView/LayoutMenuView.swift +++ b/Sources/StreamVideoSwiftUI/CallView/LayoutMenuView.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import StreamVideo diff --git a/Sources/StreamVideoSwiftUI/CallView/LocalParticipantViewModifier.swift b/Sources/StreamVideoSwiftUI/CallView/LocalParticipantViewModifier.swift index 5ef677d48..fb6cc8f9b 100644 --- a/Sources/StreamVideoSwiftUI/CallView/LocalParticipantViewModifier.swift +++ b/Sources/StreamVideoSwiftUI/CallView/LocalParticipantViewModifier.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import Foundation diff --git a/Sources/StreamVideoSwiftUI/CallView/MinimizedCallView.swift b/Sources/StreamVideoSwiftUI/CallView/MinimizedCallView.swift index 39ed138b5..089f0a6c1 100644 --- a/Sources/StreamVideoSwiftUI/CallView/MinimizedCallView.swift +++ b/Sources/StreamVideoSwiftUI/CallView/MinimizedCallView.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import StreamVideo diff --git a/Sources/StreamVideoSwiftUI/CallView/ParticipantPopoverView.swift b/Sources/StreamVideoSwiftUI/CallView/ParticipantPopoverView.swift index 943c6b093..56915ff8a 100644 --- a/Sources/StreamVideoSwiftUI/CallView/ParticipantPopoverView.swift +++ b/Sources/StreamVideoSwiftUI/CallView/ParticipantPopoverView.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import StreamVideo diff --git a/Sources/StreamVideoSwiftUI/CallView/Participants/CallParticipantMenuAction.swift b/Sources/StreamVideoSwiftUI/CallView/Participants/CallParticipantMenuAction.swift index f40f8647a..af79efe2e 100644 --- a/Sources/StreamVideoSwiftUI/CallView/Participants/CallParticipantMenuAction.swift +++ b/Sources/StreamVideoSwiftUI/CallView/Participants/CallParticipantMenuAction.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import Foundation diff --git a/Sources/StreamVideoSwiftUI/CallView/Participants/CallParticipantsInfoView.swift b/Sources/StreamVideoSwiftUI/CallView/Participants/CallParticipantsInfoView.swift index dd9c01cbf..f9894bdb1 100644 --- a/Sources/StreamVideoSwiftUI/CallView/Participants/CallParticipantsInfoView.swift +++ b/Sources/StreamVideoSwiftUI/CallView/Participants/CallParticipantsInfoView.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import StreamVideo diff --git a/Sources/StreamVideoSwiftUI/CallView/Participants/CallParticipantsInfoViewModel.swift b/Sources/StreamVideoSwiftUI/CallView/Participants/CallParticipantsInfoViewModel.swift index 0769ef63e..f4d81ec90 100644 --- a/Sources/StreamVideoSwiftUI/CallView/Participants/CallParticipantsInfoViewModel.swift +++ b/Sources/StreamVideoSwiftUI/CallView/Participants/CallParticipantsInfoViewModel.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import StreamVideo diff --git a/Sources/StreamVideoSwiftUI/CallView/Participants/InviteParticipantsView.swift b/Sources/StreamVideoSwiftUI/CallView/Participants/InviteParticipantsView.swift index 18d3e91ec..0070331a1 100644 --- a/Sources/StreamVideoSwiftUI/CallView/Participants/InviteParticipantsView.swift +++ b/Sources/StreamVideoSwiftUI/CallView/Participants/InviteParticipantsView.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import StreamVideo diff --git a/Sources/StreamVideoSwiftUI/CallView/Participants/InviteParticipantsViewModel.swift b/Sources/StreamVideoSwiftUI/CallView/Participants/InviteParticipantsViewModel.swift index 5b35f70d2..ed9730a4a 100644 --- a/Sources/StreamVideoSwiftUI/CallView/Participants/InviteParticipantsViewModel.swift +++ b/Sources/StreamVideoSwiftUI/CallView/Participants/InviteParticipantsViewModel.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import Combine diff --git a/Sources/StreamVideoSwiftUI/CallView/Participants/SelectedParticipantView.swift b/Sources/StreamVideoSwiftUI/CallView/Participants/SelectedParticipantView.swift index dd17b9fce..cfcb784cf 100644 --- a/Sources/StreamVideoSwiftUI/CallView/Participants/SelectedParticipantView.swift +++ b/Sources/StreamVideoSwiftUI/CallView/Participants/SelectedParticipantView.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import StreamVideo diff --git a/Sources/StreamVideoSwiftUI/CallView/Participants/UserListProvider.swift b/Sources/StreamVideoSwiftUI/CallView/Participants/UserListProvider.swift index e70744e9a..353ebcc92 100644 --- a/Sources/StreamVideoSwiftUI/CallView/Participants/UserListProvider.swift +++ b/Sources/StreamVideoSwiftUI/CallView/Participants/UserListProvider.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import StreamVideo diff --git a/Sources/StreamVideoSwiftUI/CallView/ParticipantsFullScreenLayout.swift b/Sources/StreamVideoSwiftUI/CallView/ParticipantsFullScreenLayout.swift index ca7341507..71f23e753 100644 --- a/Sources/StreamVideoSwiftUI/CallView/ParticipantsFullScreenLayout.swift +++ b/Sources/StreamVideoSwiftUI/CallView/ParticipantsFullScreenLayout.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import StreamVideo diff --git a/Sources/StreamVideoSwiftUI/CallView/ParticipantsGridLayout.swift b/Sources/StreamVideoSwiftUI/CallView/ParticipantsGridLayout.swift index a1d85b273..f3b521621 100644 --- a/Sources/StreamVideoSwiftUI/CallView/ParticipantsGridLayout.swift +++ b/Sources/StreamVideoSwiftUI/CallView/ParticipantsGridLayout.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import StreamVideo diff --git a/Sources/StreamVideoSwiftUI/CallView/ParticipantsGridView.swift b/Sources/StreamVideoSwiftUI/CallView/ParticipantsGridView.swift index a9d691010..5c3270fbd 100644 --- a/Sources/StreamVideoSwiftUI/CallView/ParticipantsGridView.swift +++ b/Sources/StreamVideoSwiftUI/CallView/ParticipantsGridView.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import StreamVideo diff --git a/Sources/StreamVideoSwiftUI/CallView/ParticipantsSpotlightLayout.swift b/Sources/StreamVideoSwiftUI/CallView/ParticipantsSpotlightLayout.swift index 470d202bc..3f26afbdf 100644 --- a/Sources/StreamVideoSwiftUI/CallView/ParticipantsSpotlightLayout.swift +++ b/Sources/StreamVideoSwiftUI/CallView/ParticipantsSpotlightLayout.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import StreamVideo diff --git a/Sources/StreamVideoSwiftUI/CallView/ReconnectionView.swift b/Sources/StreamVideoSwiftUI/CallView/ReconnectionView.swift index 6845565f5..57727586b 100644 --- a/Sources/StreamVideoSwiftUI/CallView/ReconnectionView.swift +++ b/Sources/StreamVideoSwiftUI/CallView/ReconnectionView.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import StreamVideo diff --git a/Sources/StreamVideoSwiftUI/CallView/RecordingView.swift b/Sources/StreamVideoSwiftUI/CallView/RecordingView.swift index 60de95f0b..120531e23 100644 --- a/Sources/StreamVideoSwiftUI/CallView/RecordingView.swift +++ b/Sources/StreamVideoSwiftUI/CallView/RecordingView.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import SwiftUI diff --git a/Sources/StreamVideoSwiftUI/CallView/SampleBufferVideoCallView.swift b/Sources/StreamVideoSwiftUI/CallView/SampleBufferVideoCallView.swift index 68e6266d3..fb3b5f1ca 100644 --- a/Sources/StreamVideoSwiftUI/CallView/SampleBufferVideoCallView.swift +++ b/Sources/StreamVideoSwiftUI/CallView/SampleBufferVideoCallView.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import AVKit diff --git a/Sources/StreamVideoSwiftUI/CallView/ScreenSharing/BroadcastPickerView.swift b/Sources/StreamVideoSwiftUI/CallView/ScreenSharing/BroadcastPickerView.swift index d22d16fe2..53cef4a14 100644 --- a/Sources/StreamVideoSwiftUI/CallView/ScreenSharing/BroadcastPickerView.swift +++ b/Sources/StreamVideoSwiftUI/CallView/ScreenSharing/BroadcastPickerView.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import ReplayKit diff --git a/Sources/StreamVideoSwiftUI/CallView/ScreenSharing/ScreenSharingView.swift b/Sources/StreamVideoSwiftUI/CallView/ScreenSharing/ScreenSharingView.swift index 2f84335dc..ac590e45b 100644 --- a/Sources/StreamVideoSwiftUI/CallView/ScreenSharing/ScreenSharingView.swift +++ b/Sources/StreamVideoSwiftUI/CallView/ScreenSharing/ScreenSharingView.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import StreamVideo diff --git a/Sources/StreamVideoSwiftUI/CallView/ScreenSharing/ScreensharingControls.swift b/Sources/StreamVideoSwiftUI/CallView/ScreenSharing/ScreensharingControls.swift index 8455fc4c8..9a84c7372 100644 --- a/Sources/StreamVideoSwiftUI/CallView/ScreenSharing/ScreensharingControls.swift +++ b/Sources/StreamVideoSwiftUI/CallView/ScreenSharing/ScreensharingControls.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import StreamVideo diff --git a/Sources/StreamVideoSwiftUI/CallView/ScreenSharing/ZoomableScrollView.swift b/Sources/StreamVideoSwiftUI/CallView/ScreenSharing/ZoomableScrollView.swift index 64035c97f..6c3fd2b5e 100644 --- a/Sources/StreamVideoSwiftUI/CallView/ScreenSharing/ZoomableScrollView.swift +++ b/Sources/StreamVideoSwiftUI/CallView/ScreenSharing/ZoomableScrollView.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import Combine diff --git a/Sources/StreamVideoSwiftUI/CallView/VideoParticipantsView.swift b/Sources/StreamVideoSwiftUI/CallView/VideoParticipantsView.swift index c5fdf6ddc..c4aefd9c8 100644 --- a/Sources/StreamVideoSwiftUI/CallView/VideoParticipantsView.swift +++ b/Sources/StreamVideoSwiftUI/CallView/VideoParticipantsView.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import StreamVideo diff --git a/Sources/StreamVideoSwiftUI/CallView/VideoRenderer/LocalVideoView.swift b/Sources/StreamVideoSwiftUI/CallView/VideoRenderer/LocalVideoView.swift index 82cfd51e0..8d30ca401 100644 --- a/Sources/StreamVideoSwiftUI/CallView/VideoRenderer/LocalVideoView.swift +++ b/Sources/StreamVideoSwiftUI/CallView/VideoRenderer/LocalVideoView.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import Foundation diff --git a/Sources/StreamVideoSwiftUI/CallView/VideoRenderer/VideoRenderer.swift b/Sources/StreamVideoSwiftUI/CallView/VideoRenderer/VideoRenderer.swift index a5cfd31e9..0009e06ec 100644 --- a/Sources/StreamVideoSwiftUI/CallView/VideoRenderer/VideoRenderer.swift +++ b/Sources/StreamVideoSwiftUI/CallView/VideoRenderer/VideoRenderer.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import Combine diff --git a/Sources/StreamVideoSwiftUI/CallView/VideoRenderer/VideoRendererView.swift b/Sources/StreamVideoSwiftUI/CallView/VideoRenderer/VideoRendererView.swift index 821be80eb..e8be83ed6 100644 --- a/Sources/StreamVideoSwiftUI/CallView/VideoRenderer/VideoRendererView.swift +++ b/Sources/StreamVideoSwiftUI/CallView/VideoRenderer/VideoRendererView.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import Combine diff --git a/Sources/StreamVideoSwiftUI/CallView/ViewModifiers/CallEndedViewModifier.swift b/Sources/StreamVideoSwiftUI/CallView/ViewModifiers/CallEndedViewModifier.swift index 905870600..73d655246 100644 --- a/Sources/StreamVideoSwiftUI/CallView/ViewModifiers/CallEndedViewModifier.swift +++ b/Sources/StreamVideoSwiftUI/CallView/ViewModifiers/CallEndedViewModifier.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import Combine diff --git a/Sources/StreamVideoSwiftUI/CallView/ViewModifiers/ParticipantEventViewModifier.swift b/Sources/StreamVideoSwiftUI/CallView/ViewModifiers/ParticipantEventViewModifier.swift index 5554b95da..2509cc554 100644 --- a/Sources/StreamVideoSwiftUI/CallView/ViewModifiers/ParticipantEventViewModifier.swift +++ b/Sources/StreamVideoSwiftUI/CallView/ViewModifiers/ParticipantEventViewModifier.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import Foundation diff --git a/Sources/StreamVideoSwiftUI/CallView/ViewModifiers/ParticipantsListViewModifier.swift b/Sources/StreamVideoSwiftUI/CallView/ViewModifiers/ParticipantsListViewModifier.swift index bfd5d898d..1c2dd8af0 100644 --- a/Sources/StreamVideoSwiftUI/CallView/ViewModifiers/ParticipantsListViewModifier.swift +++ b/Sources/StreamVideoSwiftUI/CallView/ViewModifiers/ParticipantsListViewModifier.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import Foundation diff --git a/Sources/StreamVideoSwiftUI/CallView/ViewModifiers/ReadableContentGuide/ReadableContentGuide.swift b/Sources/StreamVideoSwiftUI/CallView/ViewModifiers/ReadableContentGuide/ReadableContentGuide.swift index ae96e806f..0bb957d46 100644 --- a/Sources/StreamVideoSwiftUI/CallView/ViewModifiers/ReadableContentGuide/ReadableContentGuide.swift +++ b/Sources/StreamVideoSwiftUI/CallView/ViewModifiers/ReadableContentGuide/ReadableContentGuide.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import Foundation diff --git a/Sources/StreamVideoSwiftUI/CallView/ViewModifiers/Snapshot/SnapshotViewModifier.swift b/Sources/StreamVideoSwiftUI/CallView/ViewModifiers/Snapshot/SnapshotViewModifier.swift index bcf01de1c..51cadb6ce 100644 --- a/Sources/StreamVideoSwiftUI/CallView/ViewModifiers/Snapshot/SnapshotViewModifier.swift +++ b/Sources/StreamVideoSwiftUI/CallView/ViewModifiers/Snapshot/SnapshotViewModifier.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import Combine diff --git a/Sources/StreamVideoSwiftUI/CallView/ViewModifiers/Snapshot/UIView+Snapshot.swift b/Sources/StreamVideoSwiftUI/CallView/ViewModifiers/Snapshot/UIView+Snapshot.swift index 32ee0a9ab..bb85bbf3e 100644 --- a/Sources/StreamVideoSwiftUI/CallView/ViewModifiers/Snapshot/UIView+Snapshot.swift +++ b/Sources/StreamVideoSwiftUI/CallView/ViewModifiers/Snapshot/UIView+Snapshot.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import Foundation diff --git a/Sources/StreamVideoSwiftUI/CallView/VisibilityThresholdModifier.swift b/Sources/StreamVideoSwiftUI/CallView/VisibilityThresholdModifier.swift index af0b861c1..cfa20b2b5 100644 --- a/Sources/StreamVideoSwiftUI/CallView/VisibilityThresholdModifier.swift +++ b/Sources/StreamVideoSwiftUI/CallView/VisibilityThresholdModifier.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import StreamVideo diff --git a/Sources/StreamVideoSwiftUI/CallingViews/CallBackgrounds.swift b/Sources/StreamVideoSwiftUI/CallingViews/CallBackgrounds.swift index d5e961fff..7ab6e97a4 100644 --- a/Sources/StreamVideoSwiftUI/CallingViews/CallBackgrounds.swift +++ b/Sources/StreamVideoSwiftUI/CallingViews/CallBackgrounds.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import StreamVideo diff --git a/Sources/StreamVideoSwiftUI/CallingViews/CallConnectingView.swift b/Sources/StreamVideoSwiftUI/CallingViews/CallConnectingView.swift index a5838fedc..ea6e69fe8 100644 --- a/Sources/StreamVideoSwiftUI/CallingViews/CallConnectingView.swift +++ b/Sources/StreamVideoSwiftUI/CallingViews/CallConnectingView.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import StreamVideo diff --git a/Sources/StreamVideoSwiftUI/CallingViews/CallingGroupView.swift b/Sources/StreamVideoSwiftUI/CallingViews/CallingGroupView.swift index 3e879fc3c..abb01a5ec 100644 --- a/Sources/StreamVideoSwiftUI/CallingViews/CallingGroupView.swift +++ b/Sources/StreamVideoSwiftUI/CallingViews/CallingGroupView.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import StreamVideo diff --git a/Sources/StreamVideoSwiftUI/CallingViews/CallingIndicator.swift b/Sources/StreamVideoSwiftUI/CallingViews/CallingIndicator.swift index 4dc93bd8f..534a14370 100644 --- a/Sources/StreamVideoSwiftUI/CallingViews/CallingIndicator.swift +++ b/Sources/StreamVideoSwiftUI/CallingViews/CallingIndicator.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import SwiftUI diff --git a/Sources/StreamVideoSwiftUI/CallingViews/CallingParticipantView.swift b/Sources/StreamVideoSwiftUI/CallingViews/CallingParticipantView.swift index 80d0db6ea..c3d9a5c2b 100644 --- a/Sources/StreamVideoSwiftUI/CallingViews/CallingParticipantView.swift +++ b/Sources/StreamVideoSwiftUI/CallingViews/CallingParticipantView.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import StreamVideo diff --git a/Sources/StreamVideoSwiftUI/CallingViews/CallingParticipantsView.swift b/Sources/StreamVideoSwiftUI/CallingViews/CallingParticipantsView.swift index 34e12c7ec..da41a5075 100644 --- a/Sources/StreamVideoSwiftUI/CallingViews/CallingParticipantsView.swift +++ b/Sources/StreamVideoSwiftUI/CallingViews/CallingParticipantsView.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import StreamVideo diff --git a/Sources/StreamVideoSwiftUI/CallingViews/IncomingCallView.swift b/Sources/StreamVideoSwiftUI/CallingViews/IncomingCallView.swift index f6c5e691c..2cde9c127 100644 --- a/Sources/StreamVideoSwiftUI/CallingViews/IncomingCallView.swift +++ b/Sources/StreamVideoSwiftUI/CallingViews/IncomingCallView.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import StreamVideo diff --git a/Sources/StreamVideoSwiftUI/CallingViews/IncomingCallViewModel.swift b/Sources/StreamVideoSwiftUI/CallingViews/IncomingCallViewModel.swift index f4f18e6fd..a85146d3a 100644 --- a/Sources/StreamVideoSwiftUI/CallingViews/IncomingCallViewModel.swift +++ b/Sources/StreamVideoSwiftUI/CallingViews/IncomingCallViewModel.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import Combine diff --git a/Sources/StreamVideoSwiftUI/CallingViews/JoiningCallView.swift b/Sources/StreamVideoSwiftUI/CallingViews/JoiningCallView.swift index 7a97fdbb5..201d55ce9 100644 --- a/Sources/StreamVideoSwiftUI/CallingViews/JoiningCallView.swift +++ b/Sources/StreamVideoSwiftUI/CallingViews/JoiningCallView.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import StreamVideo diff --git a/Sources/StreamVideoSwiftUI/CallingViews/MicrophoneCheckView.swift b/Sources/StreamVideoSwiftUI/CallingViews/MicrophoneCheckView.swift index 0780ef0aa..ffaa039d0 100644 --- a/Sources/StreamVideoSwiftUI/CallingViews/MicrophoneCheckView.swift +++ b/Sources/StreamVideoSwiftUI/CallingViews/MicrophoneCheckView.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import StreamVideo diff --git a/Sources/StreamVideoSwiftUI/CallingViews/MicrophoneChecker.swift b/Sources/StreamVideoSwiftUI/CallingViews/MicrophoneChecker.swift index aa5749fbf..8655d0013 100644 --- a/Sources/StreamVideoSwiftUI/CallingViews/MicrophoneChecker.swift +++ b/Sources/StreamVideoSwiftUI/CallingViews/MicrophoneChecker.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import AVFoundation diff --git a/Sources/StreamVideoSwiftUI/CallingViews/OutgoingCallView.swift b/Sources/StreamVideoSwiftUI/CallingViews/OutgoingCallView.swift index 78a28c46b..0019c6119 100644 --- a/Sources/StreamVideoSwiftUI/CallingViews/OutgoingCallView.swift +++ b/Sources/StreamVideoSwiftUI/CallingViews/OutgoingCallView.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import StreamVideo diff --git a/Sources/StreamVideoSwiftUI/CallingViews/PreJoiningView.swift b/Sources/StreamVideoSwiftUI/CallingViews/PreJoiningView.swift index 57e1b539c..8a6e693ac 100644 --- a/Sources/StreamVideoSwiftUI/CallingViews/PreJoiningView.swift +++ b/Sources/StreamVideoSwiftUI/CallingViews/PreJoiningView.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import StreamVideo diff --git a/Sources/StreamVideoSwiftUI/CallingViews/PreJoiningViewModel.swift b/Sources/StreamVideoSwiftUI/CallingViews/PreJoiningViewModel.swift index 14687f2e8..a5ee888c3 100644 --- a/Sources/StreamVideoSwiftUI/CallingViews/PreJoiningViewModel.swift +++ b/Sources/StreamVideoSwiftUI/CallingViews/PreJoiningViewModel.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import AVFoundation diff --git a/Sources/StreamVideoSwiftUI/CallingViews/iOS13/BackportStateObject.swift b/Sources/StreamVideoSwiftUI/CallingViews/iOS13/BackportStateObject.swift index 7aec6223e..5e9e08c02 100644 --- a/Sources/StreamVideoSwiftUI/CallingViews/iOS13/BackportStateObject.swift +++ b/Sources/StreamVideoSwiftUI/CallingViews/iOS13/BackportStateObject.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import Combine diff --git a/Sources/StreamVideoSwiftUI/CallingViews/iOS13/IncomingCallView_iOS13.swift b/Sources/StreamVideoSwiftUI/CallingViews/iOS13/IncomingCallView_iOS13.swift index 805acfeb8..d57f84f35 100644 --- a/Sources/StreamVideoSwiftUI/CallingViews/iOS13/IncomingCallView_iOS13.swift +++ b/Sources/StreamVideoSwiftUI/CallingViews/iOS13/IncomingCallView_iOS13.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import StreamVideo diff --git a/Sources/StreamVideoSwiftUI/CallingViews/iOS13/PreJoiningView_iOS13.swift b/Sources/StreamVideoSwiftUI/CallingViews/iOS13/PreJoiningView_iOS13.swift index 35b451c5d..05779689a 100644 --- a/Sources/StreamVideoSwiftUI/CallingViews/iOS13/PreJoiningView_iOS13.swift +++ b/Sources/StreamVideoSwiftUI/CallingViews/iOS13/PreJoiningView_iOS13.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import StreamVideo diff --git a/Sources/StreamVideoSwiftUI/CallingViews/iOS13/VideoView_iOS13.swift b/Sources/StreamVideoSwiftUI/CallingViews/iOS13/VideoView_iOS13.swift index 1cb89a7bd..0e09a881c 100644 --- a/Sources/StreamVideoSwiftUI/CallingViews/iOS13/VideoView_iOS13.swift +++ b/Sources/StreamVideoSwiftUI/CallingViews/iOS13/VideoView_iOS13.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import StreamVideo diff --git a/Sources/StreamVideoSwiftUI/Colors.swift b/Sources/StreamVideoSwiftUI/Colors.swift index 898312046..71af11269 100644 --- a/Sources/StreamVideoSwiftUI/Colors.swift +++ b/Sources/StreamVideoSwiftUI/Colors.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import SwiftUI diff --git a/Sources/StreamVideoSwiftUI/Fonts.swift b/Sources/StreamVideoSwiftUI/Fonts.swift index 98bb4c121..a93ccee7d 100644 --- a/Sources/StreamVideoSwiftUI/Fonts.swift +++ b/Sources/StreamVideoSwiftUI/Fonts.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import SwiftUI diff --git a/Sources/StreamVideoSwiftUI/Images.swift b/Sources/StreamVideoSwiftUI/Images.swift index c28957d0b..113aa41f8 100644 --- a/Sources/StreamVideoSwiftUI/Images.swift +++ b/Sources/StreamVideoSwiftUI/Images.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import Foundation diff --git a/Sources/StreamVideoSwiftUI/Livestreaming/LivestreamPlayer.swift b/Sources/StreamVideoSwiftUI/Livestreaming/LivestreamPlayer.swift index 94da970f8..2503cfb8c 100644 --- a/Sources/StreamVideoSwiftUI/Livestreaming/LivestreamPlayer.swift +++ b/Sources/StreamVideoSwiftUI/Livestreaming/LivestreamPlayer.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import StreamVideo diff --git a/Sources/StreamVideoSwiftUI/Livestreaming/LivestreamPlayerViewModel.swift b/Sources/StreamVideoSwiftUI/Livestreaming/LivestreamPlayerViewModel.swift index 47459641a..78ec21908 100644 --- a/Sources/StreamVideoSwiftUI/Livestreaming/LivestreamPlayerViewModel.swift +++ b/Sources/StreamVideoSwiftUI/Livestreaming/LivestreamPlayerViewModel.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import StreamVideo diff --git a/Sources/StreamVideoSwiftUI/Models/CallEvents.swift b/Sources/StreamVideoSwiftUI/Models/CallEvents.swift index 382bf0164..3a5d51cd4 100644 --- a/Sources/StreamVideoSwiftUI/Models/CallEvents.swift +++ b/Sources/StreamVideoSwiftUI/Models/CallEvents.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import Foundation diff --git a/Sources/StreamVideoSwiftUI/Models/CallEventsHandler.swift b/Sources/StreamVideoSwiftUI/Models/CallEventsHandler.swift index c943df6fd..b66ca5d11 100644 --- a/Sources/StreamVideoSwiftUI/Models/CallEventsHandler.swift +++ b/Sources/StreamVideoSwiftUI/Models/CallEventsHandler.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import Foundation diff --git a/Sources/StreamVideoSwiftUI/Models/CallModels.swift b/Sources/StreamVideoSwiftUI/Models/CallModels.swift index 94db799eb..6b0d2f76f 100644 --- a/Sources/StreamVideoSwiftUI/Models/CallModels.swift +++ b/Sources/StreamVideoSwiftUI/Models/CallModels.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import AVFoundation diff --git a/Sources/StreamVideoSwiftUI/Models/IncomingCall.swift b/Sources/StreamVideoSwiftUI/Models/IncomingCall.swift index 6b4c91ccc..081c72ca7 100644 --- a/Sources/StreamVideoSwiftUI/Models/IncomingCall.swift +++ b/Sources/StreamVideoSwiftUI/Models/IncomingCall.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import Foundation diff --git a/Sources/StreamVideoSwiftUI/Models/Toast.swift b/Sources/StreamVideoSwiftUI/Models/Toast.swift index 1060bdbbb..1180bc490 100644 --- a/Sources/StreamVideoSwiftUI/Models/Toast.swift +++ b/Sources/StreamVideoSwiftUI/Models/Toast.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import SwiftUI diff --git a/Sources/StreamVideoSwiftUI/Sounds.swift b/Sources/StreamVideoSwiftUI/Sounds.swift index 378620467..74e0b762b 100644 --- a/Sources/StreamVideoSwiftUI/Sounds.swift +++ b/Sources/StreamVideoSwiftUI/Sounds.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import Foundation diff --git a/Sources/StreamVideoSwiftUI/StreamVideoSwiftUI.h b/Sources/StreamVideoSwiftUI/StreamVideoSwiftUI.h index 5995e9ef7..9d80923c8 100644 --- a/Sources/StreamVideoSwiftUI/StreamVideoSwiftUI.h +++ b/Sources/StreamVideoSwiftUI/StreamVideoSwiftUI.h @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // #import diff --git a/Sources/StreamVideoSwiftUI/StreamVideoUI.swift b/Sources/StreamVideoSwiftUI/StreamVideoUI.swift index b7cc063a9..3279ed242 100644 --- a/Sources/StreamVideoSwiftUI/StreamVideoUI.swift +++ b/Sources/StreamVideoSwiftUI/StreamVideoUI.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import StreamVideo diff --git a/Sources/StreamVideoSwiftUI/Utils.swift b/Sources/StreamVideoSwiftUI/Utils.swift index 6caa299c7..0d50f278a 100644 --- a/Sources/StreamVideoSwiftUI/Utils.swift +++ b/Sources/StreamVideoSwiftUI/Utils.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import Foundation diff --git a/Sources/StreamVideoSwiftUI/Utils/AsyncImage/LegacyAsyncImage.swift b/Sources/StreamVideoSwiftUI/Utils/AsyncImage/LegacyAsyncImage.swift index 2fe62264c..20ffac9e3 100644 --- a/Sources/StreamVideoSwiftUI/Utils/AsyncImage/LegacyAsyncImage.swift +++ b/Sources/StreamVideoSwiftUI/Utils/AsyncImage/LegacyAsyncImage.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import Combine diff --git a/Sources/StreamVideoSwiftUI/Utils/AsyncImage/StreamAsyncImage.swift b/Sources/StreamVideoSwiftUI/Utils/AsyncImage/StreamAsyncImage.swift index d64e408a3..10e298ed6 100644 --- a/Sources/StreamVideoSwiftUI/Utils/AsyncImage/StreamAsyncImage.swift +++ b/Sources/StreamVideoSwiftUI/Utils/AsyncImage/StreamAsyncImage.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import Foundation diff --git a/Sources/StreamVideoSwiftUI/Utils/AsyncImage/StreamLazyImage.swift b/Sources/StreamVideoSwiftUI/Utils/AsyncImage/StreamLazyImage.swift index 19cb2b92b..f335ebefc 100644 --- a/Sources/StreamVideoSwiftUI/Utils/AsyncImage/StreamLazyImage.swift +++ b/Sources/StreamVideoSwiftUI/Utils/AsyncImage/StreamLazyImage.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import SwiftUI diff --git a/Sources/StreamVideoSwiftUI/Utils/AudioValuePercentageNormaliser.swift b/Sources/StreamVideoSwiftUI/Utils/AudioValuePercentageNormaliser.swift index 7aee1d6d1..c45c69ea3 100644 --- a/Sources/StreamVideoSwiftUI/Utils/AudioValuePercentageNormaliser.swift +++ b/Sources/StreamVideoSwiftUI/Utils/AudioValuePercentageNormaliser.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import Foundation diff --git a/Sources/StreamVideoSwiftUI/Utils/Backports/OnChangeViewModifier_iOS13.swift b/Sources/StreamVideoSwiftUI/Utils/Backports/OnChangeViewModifier_iOS13.swift index ce9af7547..5aa93e816 100644 --- a/Sources/StreamVideoSwiftUI/Utils/Backports/OnChangeViewModifier_iOS13.swift +++ b/Sources/StreamVideoSwiftUI/Utils/Backports/OnChangeViewModifier_iOS13.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import Combine diff --git a/Sources/StreamVideoSwiftUI/Utils/BundleExtensions.swift b/Sources/StreamVideoSwiftUI/Utils/BundleExtensions.swift index 9afa6c50f..411fd8fd0 100644 --- a/Sources/StreamVideoSwiftUI/Utils/BundleExtensions.swift +++ b/Sources/StreamVideoSwiftUI/Utils/BundleExtensions.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import Foundation diff --git a/Sources/StreamVideoSwiftUI/Utils/CallSoundsPlayer.swift b/Sources/StreamVideoSwiftUI/Utils/CallSoundsPlayer.swift index c9661f4fe..db29c97ab 100644 --- a/Sources/StreamVideoSwiftUI/Utils/CallSoundsPlayer.swift +++ b/Sources/StreamVideoSwiftUI/Utils/CallSoundsPlayer.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import AVFoundation diff --git a/Sources/StreamVideoSwiftUI/Utils/Camera.swift b/Sources/StreamVideoSwiftUI/Utils/Camera.swift index 6c75cf9d8..b0cbdab78 100644 --- a/Sources/StreamVideoSwiftUI/Utils/Camera.swift +++ b/Sources/StreamVideoSwiftUI/Utils/Camera.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import AVFoundation diff --git a/Sources/StreamVideoSwiftUI/Utils/ClipCorners.swift b/Sources/StreamVideoSwiftUI/Utils/ClipCorners.swift index 6b475ab11..e25c7121e 100644 --- a/Sources/StreamVideoSwiftUI/Utils/ClipCorners.swift +++ b/Sources/StreamVideoSwiftUI/Utils/ClipCorners.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import Foundation diff --git a/Sources/StreamVideoSwiftUI/Utils/ColorExtensions.swift b/Sources/StreamVideoSwiftUI/Utils/ColorExtensions.swift index c6348e28f..a829710da 100644 --- a/Sources/StreamVideoSwiftUI/Utils/ColorExtensions.swift +++ b/Sources/StreamVideoSwiftUI/Utils/ColorExtensions.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import UIKit diff --git a/Sources/StreamVideoSwiftUI/Utils/ContainerHelpers.swift b/Sources/StreamVideoSwiftUI/Utils/ContainerHelpers.swift index d23a81b83..cc4cbeed0 100644 --- a/Sources/StreamVideoSwiftUI/Utils/ContainerHelpers.swift +++ b/Sources/StreamVideoSwiftUI/Utils/ContainerHelpers.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import SwiftUI diff --git a/Sources/StreamVideoSwiftUI/Utils/Extensions/RTCCVPixelBuffer+Convenience.swift b/Sources/StreamVideoSwiftUI/Utils/Extensions/RTCCVPixelBuffer+Convenience.swift index 9ae78b767..a75e9ed02 100644 --- a/Sources/StreamVideoSwiftUI/Utils/Extensions/RTCCVPixelBuffer+Convenience.swift +++ b/Sources/StreamVideoSwiftUI/Utils/Extensions/RTCCVPixelBuffer+Convenience.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import Foundation diff --git a/Sources/StreamVideoSwiftUI/Utils/Extensions/View+OptionalPublisher.swift b/Sources/StreamVideoSwiftUI/Utils/Extensions/View+OptionalPublisher.swift index 79159cbcd..43ae5272e 100644 --- a/Sources/StreamVideoSwiftUI/Utils/Extensions/View+OptionalPublisher.swift +++ b/Sources/StreamVideoSwiftUI/Utils/Extensions/View+OptionalPublisher.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import Combine diff --git a/Sources/StreamVideoSwiftUI/Utils/Formatters/Formatters.swift b/Sources/StreamVideoSwiftUI/Utils/Formatters/Formatters.swift index 0756adedb..2d7e2210c 100644 --- a/Sources/StreamVideoSwiftUI/Utils/Formatters/Formatters.swift +++ b/Sources/StreamVideoSwiftUI/Utils/Formatters/Formatters.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import Foundation diff --git a/Sources/StreamVideoSwiftUI/Utils/Formatters/MediaDurationFormatter.swift b/Sources/StreamVideoSwiftUI/Utils/Formatters/MediaDurationFormatter.swift index aa053d7bc..5f7ac261c 100644 --- a/Sources/StreamVideoSwiftUI/Utils/Formatters/MediaDurationFormatter.swift +++ b/Sources/StreamVideoSwiftUI/Utils/Formatters/MediaDurationFormatter.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import Foundation diff --git a/Sources/StreamVideoSwiftUI/Utils/HalfSheetView.swift b/Sources/StreamVideoSwiftUI/Utils/HalfSheetView.swift index dd10f3ca1..ef79e9180 100644 --- a/Sources/StreamVideoSwiftUI/Utils/HalfSheetView.swift +++ b/Sources/StreamVideoSwiftUI/Utils/HalfSheetView.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import Foundation diff --git a/Sources/StreamVideoSwiftUI/Utils/HelperViews.swift b/Sources/StreamVideoSwiftUI/Utils/HelperViews.swift index d9d3341c4..2cb581633 100644 --- a/Sources/StreamVideoSwiftUI/Utils/HelperViews.swift +++ b/Sources/StreamVideoSwiftUI/Utils/HelperViews.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import StreamVideo diff --git a/Sources/StreamVideoSwiftUI/Utils/ImageExtensions.swift b/Sources/StreamVideoSwiftUI/Utils/ImageExtensions.swift index 516383c49..ee07a8d55 100644 --- a/Sources/StreamVideoSwiftUI/Utils/ImageExtensions.swift +++ b/Sources/StreamVideoSwiftUI/Utils/ImageExtensions.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import SwiftUI diff --git a/Sources/StreamVideoSwiftUI/Utils/KeyboardReadable.swift b/Sources/StreamVideoSwiftUI/Utils/KeyboardReadable.swift index 972576281..0dfb67a20 100644 --- a/Sources/StreamVideoSwiftUI/Utils/KeyboardReadable.swift +++ b/Sources/StreamVideoSwiftUI/Utils/KeyboardReadable.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import Combine diff --git a/Sources/StreamVideoSwiftUI/Utils/ModifiedContent.swift b/Sources/StreamVideoSwiftUI/Utils/ModifiedContent.swift index e2472be72..289b03bfe 100644 --- a/Sources/StreamVideoSwiftUI/Utils/ModifiedContent.swift +++ b/Sources/StreamVideoSwiftUI/Utils/ModifiedContent.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import SwiftUI diff --git a/Sources/StreamVideoSwiftUI/Utils/Modifiers.swift b/Sources/StreamVideoSwiftUI/Utils/Modifiers.swift index 31f6db46b..92a95dddd 100644 --- a/Sources/StreamVideoSwiftUI/Utils/Modifiers.swift +++ b/Sources/StreamVideoSwiftUI/Utils/Modifiers.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import StreamVideo diff --git a/Sources/StreamVideoSwiftUI/Utils/PictureInPicture/StreamAVPictureInPictureVideoCallViewController.swift b/Sources/StreamVideoSwiftUI/Utils/PictureInPicture/StreamAVPictureInPictureVideoCallViewController.swift index 43a52e377..7dc3c8eb9 100644 --- a/Sources/StreamVideoSwiftUI/Utils/PictureInPicture/StreamAVPictureInPictureVideoCallViewController.swift +++ b/Sources/StreamVideoSwiftUI/Utils/PictureInPicture/StreamAVPictureInPictureVideoCallViewController.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import AVKit diff --git a/Sources/StreamVideoSwiftUI/Utils/PictureInPicture/StreamBufferTransformer.swift b/Sources/StreamVideoSwiftUI/Utils/PictureInPicture/StreamBufferTransformer.swift index f4528fc47..2d428e67b 100644 --- a/Sources/StreamVideoSwiftUI/Utils/PictureInPicture/StreamBufferTransformer.swift +++ b/Sources/StreamVideoSwiftUI/Utils/PictureInPicture/StreamBufferTransformer.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import Foundation diff --git a/Sources/StreamVideoSwiftUI/Utils/PictureInPicture/StreamPictureInPictureAdapter.swift b/Sources/StreamVideoSwiftUI/Utils/PictureInPicture/StreamPictureInPictureAdapter.swift index 7b4a62f25..c9f0fc529 100644 --- a/Sources/StreamVideoSwiftUI/Utils/PictureInPicture/StreamPictureInPictureAdapter.swift +++ b/Sources/StreamVideoSwiftUI/Utils/PictureInPicture/StreamPictureInPictureAdapter.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import Combine diff --git a/Sources/StreamVideoSwiftUI/Utils/PictureInPicture/StreamPictureInPictureView.swift b/Sources/StreamVideoSwiftUI/Utils/PictureInPicture/StreamPictureInPictureView.swift index 890a3e58a..ad7bb7fa9 100644 --- a/Sources/StreamVideoSwiftUI/Utils/PictureInPicture/StreamPictureInPictureView.swift +++ b/Sources/StreamVideoSwiftUI/Utils/PictureInPicture/StreamPictureInPictureView.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import Foundation diff --git a/Sources/StreamVideoSwiftUI/Utils/PictureInPicture/StreamYUVToARGBConversion.swift b/Sources/StreamVideoSwiftUI/Utils/PictureInPicture/StreamYUVToARGBConversion.swift index f1a1cd327..78069e487 100644 --- a/Sources/StreamVideoSwiftUI/Utils/PictureInPicture/StreamYUVToARGBConversion.swift +++ b/Sources/StreamVideoSwiftUI/Utils/PictureInPicture/StreamYUVToARGBConversion.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import Accelerate diff --git a/Sources/StreamVideoSwiftUI/Utils/PictureInPicture/WindowSizePolicy/StreamPictureInPictureAdaptiveWindowSizePolicy.swift b/Sources/StreamVideoSwiftUI/Utils/PictureInPicture/WindowSizePolicy/StreamPictureInPictureAdaptiveWindowSizePolicy.swift index 7e2d6a6f0..52e02cc8f 100644 --- a/Sources/StreamVideoSwiftUI/Utils/PictureInPicture/WindowSizePolicy/StreamPictureInPictureAdaptiveWindowSizePolicy.swift +++ b/Sources/StreamVideoSwiftUI/Utils/PictureInPicture/WindowSizePolicy/StreamPictureInPictureAdaptiveWindowSizePolicy.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import Foundation diff --git a/Sources/StreamVideoSwiftUI/Utils/PictureInPicture/WindowSizePolicy/StreamPictureInPictureFixedWindowSizePolicy.swift b/Sources/StreamVideoSwiftUI/Utils/PictureInPicture/WindowSizePolicy/StreamPictureInPictureFixedWindowSizePolicy.swift index 9a73e5fe0..52243e477 100644 --- a/Sources/StreamVideoSwiftUI/Utils/PictureInPicture/WindowSizePolicy/StreamPictureInPictureFixedWindowSizePolicy.swift +++ b/Sources/StreamVideoSwiftUI/Utils/PictureInPicture/WindowSizePolicy/StreamPictureInPictureFixedWindowSizePolicy.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import Foundation diff --git a/Sources/StreamVideoSwiftUI/Utils/PictureInPicture/WindowSizePolicy/StreamPictureInPictureWindowSizePolicy.swift b/Sources/StreamVideoSwiftUI/Utils/PictureInPicture/WindowSizePolicy/StreamPictureInPictureWindowSizePolicy.swift index 432efea88..477fb5983 100644 --- a/Sources/StreamVideoSwiftUI/Utils/PictureInPicture/WindowSizePolicy/StreamPictureInPictureWindowSizePolicy.swift +++ b/Sources/StreamVideoSwiftUI/Utils/PictureInPicture/WindowSizePolicy/StreamPictureInPictureWindowSizePolicy.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import Foundation diff --git a/Sources/StreamVideoSwiftUI/Utils/PictureInPicture/YpCbCrPixelRange+Default.swift b/Sources/StreamVideoSwiftUI/Utils/PictureInPicture/YpCbCrPixelRange+Default.swift index f27f77f07..d8eb82174 100644 --- a/Sources/StreamVideoSwiftUI/Utils/PictureInPicture/YpCbCrPixelRange+Default.swift +++ b/Sources/StreamVideoSwiftUI/Utils/PictureInPicture/YpCbCrPixelRange+Default.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import Accelerate diff --git a/Sources/StreamVideoSwiftUI/Utils/ReusePool.swift b/Sources/StreamVideoSwiftUI/Utils/ReusePool.swift index aefe659aa..24884793c 100644 --- a/Sources/StreamVideoSwiftUI/Utils/ReusePool.swift +++ b/Sources/StreamVideoSwiftUI/Utils/ReusePool.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import Foundation diff --git a/Sources/StreamVideoSwiftUI/Utils/SearchBar.swift b/Sources/StreamVideoSwiftUI/Utils/SearchBar.swift index e388d4ebd..07db69f20 100644 --- a/Sources/StreamVideoSwiftUI/Utils/SearchBar.swift +++ b/Sources/StreamVideoSwiftUI/Utils/SearchBar.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import StreamVideo diff --git a/Sources/StreamVideoSwiftUI/Utils/StreamPixelBufferRepository/StreamPixelBufferPool.swift b/Sources/StreamVideoSwiftUI/Utils/StreamPixelBufferRepository/StreamPixelBufferPool.swift index f6a98750a..c1cc0a6fd 100644 --- a/Sources/StreamVideoSwiftUI/Utils/StreamPixelBufferRepository/StreamPixelBufferPool.swift +++ b/Sources/StreamVideoSwiftUI/Utils/StreamPixelBufferRepository/StreamPixelBufferPool.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import CoreVideo diff --git a/Sources/StreamVideoSwiftUI/Utils/StreamPixelBufferRepository/StreamPixelBufferRepository.swift b/Sources/StreamVideoSwiftUI/Utils/StreamPixelBufferRepository/StreamPixelBufferRepository.swift index 56efd58bf..f6ffa0234 100644 --- a/Sources/StreamVideoSwiftUI/Utils/StreamPixelBufferRepository/StreamPixelBufferRepository.swift +++ b/Sources/StreamVideoSwiftUI/Utils/StreamPixelBufferRepository/StreamPixelBufferRepository.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import CoreVideo diff --git a/Sources/StreamVideoSwiftUI/Utils/ToastView.swift b/Sources/StreamVideoSwiftUI/Utils/ToastView.swift index aecece7ac..394e08c69 100644 --- a/Sources/StreamVideoSwiftUI/Utils/ToastView.swift +++ b/Sources/StreamVideoSwiftUI/Utils/ToastView.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import SwiftUI diff --git a/Sources/StreamVideoSwiftUI/Utils/UIDevice+Convenience.swift b/Sources/StreamVideoSwiftUI/Utils/UIDevice+Convenience.swift index 17c987bf7..0867f94be 100644 --- a/Sources/StreamVideoSwiftUI/Utils/UIDevice+Convenience.swift +++ b/Sources/StreamVideoSwiftUI/Utils/UIDevice+Convenience.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import UIKit diff --git a/Sources/StreamVideoSwiftUI/Utils/UserAvatar.swift b/Sources/StreamVideoSwiftUI/Utils/UserAvatar.swift index 9ab2f0f9c..26ca42ef7 100644 --- a/Sources/StreamVideoSwiftUI/Utils/UserAvatar.swift +++ b/Sources/StreamVideoSwiftUI/Utils/UserAvatar.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import SwiftUI diff --git a/Sources/StreamVideoSwiftUI/Utils/VideoRendererPool/VideoRendererPool.swift b/Sources/StreamVideoSwiftUI/Utils/VideoRendererPool/VideoRendererPool.swift index 3861c3dde..80231cc92 100644 --- a/Sources/StreamVideoSwiftUI/Utils/VideoRendererPool/VideoRendererPool.swift +++ b/Sources/StreamVideoSwiftUI/Utils/VideoRendererPool/VideoRendererPool.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import Combine diff --git a/Sources/StreamVideoSwiftUI/Utils/ViewExtensions.swift b/Sources/StreamVideoSwiftUI/Utils/ViewExtensions.swift index 4d1ad9861..203cae2e8 100644 --- a/Sources/StreamVideoSwiftUI/Utils/ViewExtensions.swift +++ b/Sources/StreamVideoSwiftUI/Utils/ViewExtensions.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import Combine diff --git a/Sources/StreamVideoSwiftUI/ViewFactory.swift b/Sources/StreamVideoSwiftUI/ViewFactory.swift index bc76c07f5..5511dfc6c 100644 --- a/Sources/StreamVideoSwiftUI/ViewFactory.swift +++ b/Sources/StreamVideoSwiftUI/ViewFactory.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import StreamVideo diff --git a/Sources/StreamVideoUIKit/CallViewController.swift b/Sources/StreamVideoUIKit/CallViewController.swift index 7c55c2517..bf02b9a1f 100644 --- a/Sources/StreamVideoUIKit/CallViewController.swift +++ b/Sources/StreamVideoUIKit/CallViewController.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import Combine diff --git a/Sources/StreamVideoUIKit/StreamVideoUIKit.h b/Sources/StreamVideoUIKit/StreamVideoUIKit.h index a480a7bdd..7f973546e 100644 --- a/Sources/StreamVideoUIKit/StreamVideoUIKit.h +++ b/Sources/StreamVideoUIKit/StreamVideoUIKit.h @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // #import diff --git a/Sources/StreamVideoUIKit/Utils/Animation.swift b/Sources/StreamVideoUIKit/Utils/Animation.swift index 2b25ed671..4a6887a34 100644 --- a/Sources/StreamVideoUIKit/Utils/Animation.swift +++ b/Sources/StreamVideoUIKit/Utils/Animation.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import UIKit diff --git a/Sources/StreamVideoUIKit/Utils/NSLayoutConstraint+Extensions.swift b/Sources/StreamVideoUIKit/Utils/NSLayoutConstraint+Extensions.swift index deb12f2d2..1658c2053 100644 --- a/Sources/StreamVideoUIKit/Utils/NSLayoutConstraint+Extensions.swift +++ b/Sources/StreamVideoUIKit/Utils/NSLayoutConstraint+Extensions.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import UIKit diff --git a/Sources/StreamVideoUIKit/Utils/UIView+Extensions.swift b/Sources/StreamVideoUIKit/Utils/UIView+Extensions.swift index c97dff9d5..848c7fb6e 100644 --- a/Sources/StreamVideoUIKit/Utils/UIView+Extensions.swift +++ b/Sources/StreamVideoUIKit/Utils/UIView+Extensions.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import UIKit diff --git a/StreamVideoSwiftUITests/CallView/CallControls/Stateful/CallControlsView_Tests.swift b/StreamVideoSwiftUITests/CallView/CallControls/Stateful/CallControlsView_Tests.swift index 371ad863a..420c45646 100644 --- a/StreamVideoSwiftUITests/CallView/CallControls/Stateful/CallControlsView_Tests.swift +++ b/StreamVideoSwiftUITests/CallView/CallControls/Stateful/CallControlsView_Tests.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import SnapshotTesting diff --git a/StreamVideoSwiftUITests/CallView/CallControls/Stateless/StatelessAudioOutputIconView_Tests.swift b/StreamVideoSwiftUITests/CallView/CallControls/Stateless/StatelessAudioOutputIconView_Tests.swift index 386490c44..2f0344101 100644 --- a/StreamVideoSwiftUITests/CallView/CallControls/Stateless/StatelessAudioOutputIconView_Tests.swift +++ b/StreamVideoSwiftUITests/CallView/CallControls/Stateless/StatelessAudioOutputIconView_Tests.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import SnapshotTesting diff --git a/StreamVideoSwiftUITests/CallView/CallControls/Stateless/StatelessHangUpIconView_Tests.swift b/StreamVideoSwiftUITests/CallView/CallControls/Stateless/StatelessHangUpIconView_Tests.swift index ab8f4d125..cfa79dce4 100644 --- a/StreamVideoSwiftUITests/CallView/CallControls/Stateless/StatelessHangUpIconView_Tests.swift +++ b/StreamVideoSwiftUITests/CallView/CallControls/Stateless/StatelessHangUpIconView_Tests.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import SnapshotTesting diff --git a/StreamVideoSwiftUITests/CallView/CallControls/Stateless/StatelessMicrophoneIconView_Tests.swift b/StreamVideoSwiftUITests/CallView/CallControls/Stateless/StatelessMicrophoneIconView_Tests.swift index d499a2310..f40f4ce8a 100644 --- a/StreamVideoSwiftUITests/CallView/CallControls/Stateless/StatelessMicrophoneIconView_Tests.swift +++ b/StreamVideoSwiftUITests/CallView/CallControls/Stateless/StatelessMicrophoneIconView_Tests.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import SnapshotTesting diff --git a/StreamVideoSwiftUITests/CallView/CallControls/Stateless/StatelessParticipantsListButton_Tests.swift b/StreamVideoSwiftUITests/CallView/CallControls/Stateless/StatelessParticipantsListButton_Tests.swift index a12da0183..5df51d6c7 100644 --- a/StreamVideoSwiftUITests/CallView/CallControls/Stateless/StatelessParticipantsListButton_Tests.swift +++ b/StreamVideoSwiftUITests/CallView/CallControls/Stateless/StatelessParticipantsListButton_Tests.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import SnapshotTesting diff --git a/StreamVideoSwiftUITests/CallView/CallControls/Stateless/StatelessSpeakerIconView_Tests.swift b/StreamVideoSwiftUITests/CallView/CallControls/Stateless/StatelessSpeakerIconView_Tests.swift index d1f321858..79debe112 100644 --- a/StreamVideoSwiftUITests/CallView/CallControls/Stateless/StatelessSpeakerIconView_Tests.swift +++ b/StreamVideoSwiftUITests/CallView/CallControls/Stateless/StatelessSpeakerIconView_Tests.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import SnapshotTesting diff --git a/StreamVideoSwiftUITests/CallView/CallControls/Stateless/StatelessToggleCameraIconView_Tests.swift b/StreamVideoSwiftUITests/CallView/CallControls/Stateless/StatelessToggleCameraIconView_Tests.swift index 6e472f1e5..d9386bc14 100644 --- a/StreamVideoSwiftUITests/CallView/CallControls/Stateless/StatelessToggleCameraIconView_Tests.swift +++ b/StreamVideoSwiftUITests/CallView/CallControls/Stateless/StatelessToggleCameraIconView_Tests.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import SnapshotTesting diff --git a/StreamVideoSwiftUITests/CallView/CallControls/Stateless/StatelessVideoIconView_Tests.swift b/StreamVideoSwiftUITests/CallView/CallControls/Stateless/StatelessVideoIconView_Tests.swift index 4c3cd7d01..61e9a0fd9 100644 --- a/StreamVideoSwiftUITests/CallView/CallControls/Stateless/StatelessVideoIconView_Tests.swift +++ b/StreamVideoSwiftUITests/CallView/CallControls/Stateless/StatelessVideoIconView_Tests.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import SnapshotTesting diff --git a/StreamVideoSwiftUITests/CallView/CallDurationView_Tests.swift b/StreamVideoSwiftUITests/CallView/CallDurationView_Tests.swift index 133c4f151..aef4eff50 100644 --- a/StreamVideoSwiftUITests/CallView/CallDurationView_Tests.swift +++ b/StreamVideoSwiftUITests/CallView/CallDurationView_Tests.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import SnapshotTesting diff --git a/StreamVideoSwiftUITests/CallView/ControlBadgeView_Tests.swift b/StreamVideoSwiftUITests/CallView/ControlBadgeView_Tests.swift index 00cdf6b8f..6f5050954 100644 --- a/StreamVideoSwiftUITests/CallView/ControlBadgeView_Tests.swift +++ b/StreamVideoSwiftUITests/CallView/ControlBadgeView_Tests.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import SnapshotTesting diff --git a/StreamVideoSwiftUITests/CallView/LayoutComponents/HorizontalParticipantsListView_Tests.swift b/StreamVideoSwiftUITests/CallView/LayoutComponents/HorizontalParticipantsListView_Tests.swift index 9d16685fe..7707dfba3 100644 --- a/StreamVideoSwiftUITests/CallView/LayoutComponents/HorizontalParticipantsListView_Tests.swift +++ b/StreamVideoSwiftUITests/CallView/LayoutComponents/HorizontalParticipantsListView_Tests.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import SnapshotTesting diff --git a/StreamVideoSwiftUITests/CallView/LayoutComponents/SpotlightSpeakerView_Tests.swift b/StreamVideoSwiftUITests/CallView/LayoutComponents/SpotlightSpeakerView_Tests.swift index 13de70095..452667f78 100644 --- a/StreamVideoSwiftUITests/CallView/LayoutComponents/SpotlightSpeakerView_Tests.swift +++ b/StreamVideoSwiftUITests/CallView/LayoutComponents/SpotlightSpeakerView_Tests.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import Foundation diff --git a/StreamVideoSwiftUITests/CallView/ParticipantListButton_Tests.swift b/StreamVideoSwiftUITests/CallView/ParticipantListButton_Tests.swift index 3b37040f7..1f4c50eb0 100644 --- a/StreamVideoSwiftUITests/CallView/ParticipantListButton_Tests.swift +++ b/StreamVideoSwiftUITests/CallView/ParticipantListButton_Tests.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import SnapshotTesting diff --git a/StreamVideoSwiftUITests/CallView/ParticipantsFullScreenLayout_Tests.swift b/StreamVideoSwiftUITests/CallView/ParticipantsFullScreenLayout_Tests.swift index 7e0475110..5927eb5ff 100644 --- a/StreamVideoSwiftUITests/CallView/ParticipantsFullScreenLayout_Tests.swift +++ b/StreamVideoSwiftUITests/CallView/ParticipantsFullScreenLayout_Tests.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import SnapshotTesting diff --git a/StreamVideoSwiftUITests/CallView/ParticipantsGridLayout_Tests.swift b/StreamVideoSwiftUITests/CallView/ParticipantsGridLayout_Tests.swift index 32b7fbe8c..72b4656d0 100644 --- a/StreamVideoSwiftUITests/CallView/ParticipantsGridLayout_Tests.swift +++ b/StreamVideoSwiftUITests/CallView/ParticipantsGridLayout_Tests.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import SnapshotTesting diff --git a/StreamVideoSwiftUITests/CallView/ParticipantsSpotlightLayout_Tests.swift b/StreamVideoSwiftUITests/CallView/ParticipantsSpotlightLayout_Tests.swift index 07ce4d3bb..9ae46d9cf 100644 --- a/StreamVideoSwiftUITests/CallView/ParticipantsSpotlightLayout_Tests.swift +++ b/StreamVideoSwiftUITests/CallView/ParticipantsSpotlightLayout_Tests.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import SnapshotTesting diff --git a/StreamVideoSwiftUITests/CallView/ReconnectionView_Tests.swift b/StreamVideoSwiftUITests/CallView/ReconnectionView_Tests.swift index 7fcdc10ae..b7f15bd41 100644 --- a/StreamVideoSwiftUITests/CallView/ReconnectionView_Tests.swift +++ b/StreamVideoSwiftUITests/CallView/ReconnectionView_Tests.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import SnapshotTesting diff --git a/StreamVideoSwiftUITests/CallView/RecordingView_Tests.swift b/StreamVideoSwiftUITests/CallView/RecordingView_Tests.swift index de3b69d7b..1bba75349 100644 --- a/StreamVideoSwiftUITests/CallView/RecordingView_Tests.swift +++ b/StreamVideoSwiftUITests/CallView/RecordingView_Tests.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import SnapshotTesting diff --git a/StreamVideoSwiftUITests/CallView/ScreenSharingView_Tests.swift b/StreamVideoSwiftUITests/CallView/ScreenSharingView_Tests.swift index 9400879aa..ae106927d 100644 --- a/StreamVideoSwiftUITests/CallView/ScreenSharingView_Tests.swift +++ b/StreamVideoSwiftUITests/CallView/ScreenSharingView_Tests.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import SnapshotTesting diff --git a/StreamVideoSwiftUITests/CallView/VideoRenderer_Tests.swift b/StreamVideoSwiftUITests/CallView/VideoRenderer_Tests.swift index 665af7b69..011d6781b 100644 --- a/StreamVideoSwiftUITests/CallView/VideoRenderer_Tests.swift +++ b/StreamVideoSwiftUITests/CallView/VideoRenderer_Tests.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import Combine diff --git a/StreamVideoSwiftUITests/CallView/VisibilityThresholdModifier_Tests.swift b/StreamVideoSwiftUITests/CallView/VisibilityThresholdModifier_Tests.swift index 87c681b8d..786fa4efa 100644 --- a/StreamVideoSwiftUITests/CallView/VisibilityThresholdModifier_Tests.swift +++ b/StreamVideoSwiftUITests/CallView/VisibilityThresholdModifier_Tests.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import SnapshotTesting diff --git a/StreamVideoSwiftUITests/CallingViews/CallConnectingView_Tests.swift b/StreamVideoSwiftUITests/CallingViews/CallConnectingView_Tests.swift index fe83795a4..3729326d6 100644 --- a/StreamVideoSwiftUITests/CallingViews/CallConnectingView_Tests.swift +++ b/StreamVideoSwiftUITests/CallingViews/CallConnectingView_Tests.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import SnapshotTesting diff --git a/StreamVideoSwiftUITests/CallingViews/CallingGroupView_Tests.swift b/StreamVideoSwiftUITests/CallingViews/CallingGroupView_Tests.swift index ae611f8e3..189a072c9 100644 --- a/StreamVideoSwiftUITests/CallingViews/CallingGroupView_Tests.swift +++ b/StreamVideoSwiftUITests/CallingViews/CallingGroupView_Tests.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import SnapshotTesting diff --git a/StreamVideoSwiftUITests/CallingViews/CallingParticipantView_Tests.swift b/StreamVideoSwiftUITests/CallingViews/CallingParticipantView_Tests.swift index 390f1cf9b..d9cf3c79f 100644 --- a/StreamVideoSwiftUITests/CallingViews/CallingParticipantView_Tests.swift +++ b/StreamVideoSwiftUITests/CallingViews/CallingParticipantView_Tests.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import SnapshotTesting diff --git a/StreamVideoSwiftUITests/CallingViews/IncomingCallView_Tests.swift b/StreamVideoSwiftUITests/CallingViews/IncomingCallView_Tests.swift index cd8822bd3..5eb492100 100644 --- a/StreamVideoSwiftUITests/CallingViews/IncomingCallView_Tests.swift +++ b/StreamVideoSwiftUITests/CallingViews/IncomingCallView_Tests.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import SnapshotTesting diff --git a/StreamVideoSwiftUITests/CallingViews/JoiningCallView_Tests.swift b/StreamVideoSwiftUITests/CallingViews/JoiningCallView_Tests.swift index 574b0c510..48c24823f 100644 --- a/StreamVideoSwiftUITests/CallingViews/JoiningCallView_Tests.swift +++ b/StreamVideoSwiftUITests/CallingViews/JoiningCallView_Tests.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import SnapshotTesting diff --git a/StreamVideoSwiftUITests/CallingViews/LobbyView_Tests.swift b/StreamVideoSwiftUITests/CallingViews/LobbyView_Tests.swift index ec634f4fa..d67dac327 100644 --- a/StreamVideoSwiftUITests/CallingViews/LobbyView_Tests.swift +++ b/StreamVideoSwiftUITests/CallingViews/LobbyView_Tests.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import SnapshotTesting diff --git a/StreamVideoSwiftUITests/CallingViews/MicrophoneCheckView_Tests.swift b/StreamVideoSwiftUITests/CallingViews/MicrophoneCheckView_Tests.swift index a643a9974..20b12dca4 100644 --- a/StreamVideoSwiftUITests/CallingViews/MicrophoneCheckView_Tests.swift +++ b/StreamVideoSwiftUITests/CallingViews/MicrophoneCheckView_Tests.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import SnapshotTesting diff --git a/StreamVideoSwiftUITests/CallingViews/MicrophoneChecker_Tests.swift b/StreamVideoSwiftUITests/CallingViews/MicrophoneChecker_Tests.swift index 199f8ee62..9dfa07a28 100644 --- a/StreamVideoSwiftUITests/CallingViews/MicrophoneChecker_Tests.swift +++ b/StreamVideoSwiftUITests/CallingViews/MicrophoneChecker_Tests.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import AVFoundation diff --git a/StreamVideoSwiftUITests/CallingViews/OutgoingCallView_Tests.swift b/StreamVideoSwiftUITests/CallingViews/OutgoingCallView_Tests.swift index 3dacdeee2..e7bc35901 100644 --- a/StreamVideoSwiftUITests/CallingViews/OutgoingCallView_Tests.swift +++ b/StreamVideoSwiftUITests/CallingViews/OutgoingCallView_Tests.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import SnapshotTesting diff --git a/StreamVideoSwiftUITests/Livestreaming/LivestreamPlayer_Tests.swift b/StreamVideoSwiftUITests/Livestreaming/LivestreamPlayer_Tests.swift index a87718707..1ec8fe0e2 100644 --- a/StreamVideoSwiftUITests/Livestreaming/LivestreamPlayer_Tests.swift +++ b/StreamVideoSwiftUITests/Livestreaming/LivestreamPlayer_Tests.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import SnapshotTesting diff --git a/StreamVideoSwiftUITests/StreamVideoUITestCase.swift b/StreamVideoSwiftUITests/StreamVideoUITestCase.swift index e2aab9a8e..7cf348620 100644 --- a/StreamVideoSwiftUITests/StreamVideoUITestCase.swift +++ b/StreamVideoSwiftUITests/StreamVideoUITestCase.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import StreamSwiftTestHelpers diff --git a/StreamVideoSwiftUITests/Utils/AudioValuePercentageNormaliser_Tests.swift b/StreamVideoSwiftUITests/Utils/AudioValuePercentageNormaliser_Tests.swift index 14a01b0dd..1bf95a659 100644 --- a/StreamVideoSwiftUITests/Utils/AudioValuePercentageNormaliser_Tests.swift +++ b/StreamVideoSwiftUITests/Utils/AudioValuePercentageNormaliser_Tests.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import Foundation diff --git a/StreamVideoSwiftUITests/Utils/CallEventsHandler_Tests.swift b/StreamVideoSwiftUITests/Utils/CallEventsHandler_Tests.swift index 8b645b182..15cf3552d 100644 --- a/StreamVideoSwiftUITests/Utils/CallEventsHandler_Tests.swift +++ b/StreamVideoSwiftUITests/Utils/CallEventsHandler_Tests.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import Foundation diff --git a/StreamVideoSwiftUITests/Utils/CornerClipper_Tests.swift b/StreamVideoSwiftUITests/Utils/CornerClipper_Tests.swift index 2891816ba..e2079dcf2 100644 --- a/StreamVideoSwiftUITests/Utils/CornerClipper_Tests.swift +++ b/StreamVideoSwiftUITests/Utils/CornerClipper_Tests.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import SnapshotTesting diff --git a/StreamVideoSwiftUITests/Utils/PictureInPicture/Mocks/MockStreamAVPictureInPictureViewControlling.swift b/StreamVideoSwiftUITests/Utils/PictureInPicture/Mocks/MockStreamAVPictureInPictureViewControlling.swift index 91e0a40c3..a78cd9cb3 100644 --- a/StreamVideoSwiftUITests/Utils/PictureInPicture/Mocks/MockStreamAVPictureInPictureViewControlling.swift +++ b/StreamVideoSwiftUITests/Utils/PictureInPicture/Mocks/MockStreamAVPictureInPictureViewControlling.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import Foundation diff --git a/StreamVideoSwiftUITests/Utils/PictureInPicture/StreamBufferTransformerTests.swift b/StreamVideoSwiftUITests/Utils/PictureInPicture/StreamBufferTransformerTests.swift index cb8dd88e4..9582034e0 100644 --- a/StreamVideoSwiftUITests/Utils/PictureInPicture/StreamBufferTransformerTests.swift +++ b/StreamVideoSwiftUITests/Utils/PictureInPicture/StreamBufferTransformerTests.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import CoreGraphics diff --git a/StreamVideoSwiftUITests/Utils/PictureInPicture/StreamPictureInPictureVideoRendererTests.swift b/StreamVideoSwiftUITests/Utils/PictureInPicture/StreamPictureInPictureVideoRendererTests.swift index 060f61548..bd4f5df09 100644 --- a/StreamVideoSwiftUITests/Utils/PictureInPicture/StreamPictureInPictureVideoRendererTests.swift +++ b/StreamVideoSwiftUITests/Utils/PictureInPicture/StreamPictureInPictureVideoRendererTests.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import Foundation diff --git a/StreamVideoSwiftUITests/Utils/PictureInPicture/WindowSizePolicy/StreamPictureInPictureAdaptiveWindowSizePolicy_Tests.swift b/StreamVideoSwiftUITests/Utils/PictureInPicture/WindowSizePolicy/StreamPictureInPictureAdaptiveWindowSizePolicy_Tests.swift index 7e530bede..15e2ae149 100644 --- a/StreamVideoSwiftUITests/Utils/PictureInPicture/WindowSizePolicy/StreamPictureInPictureAdaptiveWindowSizePolicy_Tests.swift +++ b/StreamVideoSwiftUITests/Utils/PictureInPicture/WindowSizePolicy/StreamPictureInPictureAdaptiveWindowSizePolicy_Tests.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import Foundation diff --git a/StreamVideoSwiftUITests/Utils/PictureInPicture/WindowSizePolicy/StreamPictureInPictureFixedWindowSizePolicy_Tests.swift b/StreamVideoSwiftUITests/Utils/PictureInPicture/WindowSizePolicy/StreamPictureInPictureFixedWindowSizePolicy_Tests.swift index 167f78dfc..4315483dc 100644 --- a/StreamVideoSwiftUITests/Utils/PictureInPicture/WindowSizePolicy/StreamPictureInPictureFixedWindowSizePolicy_Tests.swift +++ b/StreamVideoSwiftUITests/Utils/PictureInPicture/WindowSizePolicy/StreamPictureInPictureFixedWindowSizePolicy_Tests.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import Foundation diff --git a/StreamVideoSwiftUITests/Utils/ReusePool_Tests.swift b/StreamVideoSwiftUITests/Utils/ReusePool_Tests.swift index 5ac24c48b..3636577aa 100644 --- a/StreamVideoSwiftUITests/Utils/ReusePool_Tests.swift +++ b/StreamVideoSwiftUITests/Utils/ReusePool_Tests.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import Foundation diff --git a/StreamVideoSwiftUITests/Utils/StreamMediaDurationFormatter_Tests.swift b/StreamVideoSwiftUITests/Utils/StreamMediaDurationFormatter_Tests.swift index e5bbb9529..b097b34dc 100644 --- a/StreamVideoSwiftUITests/Utils/StreamMediaDurationFormatter_Tests.swift +++ b/StreamVideoSwiftUITests/Utils/StreamMediaDurationFormatter_Tests.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import Foundation diff --git a/StreamVideoSwiftUITests/Utils/ToastView_Tests.swift b/StreamVideoSwiftUITests/Utils/ToastView_Tests.swift index 9f0e5c396..1d02090e2 100644 --- a/StreamVideoSwiftUITests/Utils/ToastView_Tests.swift +++ b/StreamVideoSwiftUITests/Utils/ToastView_Tests.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import SnapshotTesting diff --git a/StreamVideoTests/Call/Call_Tests.swift b/StreamVideoTests/Call/Call_Tests.swift index eba6d6b36..699d0b819 100644 --- a/StreamVideoTests/Call/Call_Tests.swift +++ b/StreamVideoTests/Call/Call_Tests.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // @testable import StreamVideo diff --git a/StreamVideoTests/CallKit/AvailabilityPolicy/CallKitRegionBasedAvailabilityPolicy.swift b/StreamVideoTests/CallKit/AvailabilityPolicy/CallKitRegionBasedAvailabilityPolicy.swift index 3d73182f8..89939efe9 100644 --- a/StreamVideoTests/CallKit/AvailabilityPolicy/CallKitRegionBasedAvailabilityPolicy.swift +++ b/StreamVideoTests/CallKit/AvailabilityPolicy/CallKitRegionBasedAvailabilityPolicy.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // @testable import StreamVideo diff --git a/StreamVideoTests/CallKit/CallKitAdapterTests.swift b/StreamVideoTests/CallKit/CallKitAdapterTests.swift index 5e9c6cd26..8a4f4b43c 100644 --- a/StreamVideoTests/CallKit/CallKitAdapterTests.swift +++ b/StreamVideoTests/CallKit/CallKitAdapterTests.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // @testable import StreamVideo diff --git a/StreamVideoTests/CallKit/CallKitPushNotificationAdapterTests.swift b/StreamVideoTests/CallKit/CallKitPushNotificationAdapterTests.swift index d317cc8e4..9b9571885 100644 --- a/StreamVideoTests/CallKit/CallKitPushNotificationAdapterTests.swift +++ b/StreamVideoTests/CallKit/CallKitPushNotificationAdapterTests.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import PushKit diff --git a/StreamVideoTests/CallSettings/CameraManager_Tests.swift b/StreamVideoTests/CallSettings/CameraManager_Tests.swift index cc26566a0..4ba0ceec4 100644 --- a/StreamVideoTests/CallSettings/CameraManager_Tests.swift +++ b/StreamVideoTests/CallSettings/CameraManager_Tests.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // @testable import StreamVideo diff --git a/StreamVideoTests/CallSettings/MicrophoneManager_Tests.swift b/StreamVideoTests/CallSettings/MicrophoneManager_Tests.swift index 82a4483b0..6ca2eb515 100644 --- a/StreamVideoTests/CallSettings/MicrophoneManager_Tests.swift +++ b/StreamVideoTests/CallSettings/MicrophoneManager_Tests.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // @testable import StreamVideo diff --git a/StreamVideoTests/CallSettings/SpeakerManager_Tests.swift b/StreamVideoTests/CallSettings/SpeakerManager_Tests.swift index 8252988f2..3d4208e97 100644 --- a/StreamVideoTests/CallSettings/SpeakerManager_Tests.swift +++ b/StreamVideoTests/CallSettings/SpeakerManager_Tests.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // @testable import StreamVideo diff --git a/StreamVideoTests/CallState/CallState_Tests.swift b/StreamVideoTests/CallState/CallState_Tests.swift index a43a0bd62..2a63477e2 100644 --- a/StreamVideoTests/CallState/CallState_Tests.swift +++ b/StreamVideoTests/CallState/CallState_Tests.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import Foundation diff --git a/StreamVideoTests/Controllers/CallsController_Tests.swift b/StreamVideoTests/Controllers/CallsController_Tests.swift index 8ce56a0c3..29b7004be 100644 --- a/StreamVideoTests/Controllers/CallsController_Tests.swift +++ b/StreamVideoTests/Controllers/CallsController_Tests.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // @testable import StreamVideo diff --git a/StreamVideoTests/Controllers/ControllerTestCase.swift b/StreamVideoTests/Controllers/ControllerTestCase.swift index dd370a994..c9205527e 100644 --- a/StreamVideoTests/Controllers/ControllerTestCase.swift +++ b/StreamVideoTests/Controllers/ControllerTestCase.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // @testable import StreamVideo diff --git a/StreamVideoTests/Errors/ClientError_Tests.swift b/StreamVideoTests/Errors/ClientError_Tests.swift index 07bc21b24..e7084bf9e 100644 --- a/StreamVideoTests/Errors/ClientError_Tests.swift +++ b/StreamVideoTests/Errors/ClientError_Tests.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // @testable import StreamVideo diff --git a/StreamVideoTests/Errors/ErrorPayload_Tests.swift b/StreamVideoTests/Errors/ErrorPayload_Tests.swift index d2f7a4221..ff13dca8f 100644 --- a/StreamVideoTests/Errors/ErrorPayload_Tests.swift +++ b/StreamVideoTests/Errors/ErrorPayload_Tests.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // @testable import StreamVideo diff --git a/StreamVideoTests/HTTPClient/InternetConnection_Tests.swift b/StreamVideoTests/HTTPClient/InternetConnection_Tests.swift index 695068e0c..d313b37ed 100644 --- a/StreamVideoTests/HTTPClient/InternetConnection_Tests.swift +++ b/StreamVideoTests/HTTPClient/InternetConnection_Tests.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // @testable import StreamVideo diff --git a/StreamVideoTests/IntegrationTests/CallCRUDTests.swift b/StreamVideoTests/IntegrationTests/CallCRUDTests.swift index 45ea90efc..90773a345 100644 --- a/StreamVideoTests/IntegrationTests/CallCRUDTests.swift +++ b/StreamVideoTests/IntegrationTests/CallCRUDTests.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // @preconcurrency import Combine diff --git a/StreamVideoTests/IntegrationTests/IntegrationTest.swift b/StreamVideoTests/IntegrationTests/IntegrationTest.swift index 29d738e50..4c413db97 100644 --- a/StreamVideoTests/IntegrationTests/IntegrationTest.swift +++ b/StreamVideoTests/IntegrationTests/IntegrationTest.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import Combine diff --git a/StreamVideoTests/Mock/CallController_Mock.swift b/StreamVideoTests/Mock/CallController_Mock.swift index cd3a56dbc..0fcfacc89 100644 --- a/StreamVideoTests/Mock/CallController_Mock.swift +++ b/StreamVideoTests/Mock/CallController_Mock.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // @testable import StreamVideo diff --git a/StreamVideoTests/Mock/CallCoordinatorController_Mock.swift b/StreamVideoTests/Mock/CallCoordinatorController_Mock.swift index 684a25b79..1bc4e7dd7 100644 --- a/StreamVideoTests/Mock/CallCoordinatorController_Mock.swift +++ b/StreamVideoTests/Mock/CallCoordinatorController_Mock.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // @testable import StreamVideo diff --git a/StreamVideoTests/Mock/CallParticipant_Mock.swift b/StreamVideoTests/Mock/CallParticipant_Mock.swift index 9366f5c5a..c86de53b6 100644 --- a/StreamVideoTests/Mock/CallParticipant_Mock.swift +++ b/StreamVideoTests/Mock/CallParticipant_Mock.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import Foundation diff --git a/StreamVideoTests/Mock/EventBatcher_Mock.swift b/StreamVideoTests/Mock/EventBatcher_Mock.swift index 21b1ec3ee..a4363da4b 100644 --- a/StreamVideoTests/Mock/EventBatcher_Mock.swift +++ b/StreamVideoTests/Mock/EventBatcher_Mock.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import Foundation diff --git a/StreamVideoTests/Mock/EventDecoder_Mock.swift b/StreamVideoTests/Mock/EventDecoder_Mock.swift index a94072f05..c6458e1d3 100644 --- a/StreamVideoTests/Mock/EventDecoder_Mock.swift +++ b/StreamVideoTests/Mock/EventDecoder_Mock.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import Foundation diff --git a/StreamVideoTests/Mock/EventMiddleware_Mock.swift b/StreamVideoTests/Mock/EventMiddleware_Mock.swift index 72b705a2f..02799128c 100644 --- a/StreamVideoTests/Mock/EventMiddleware_Mock.swift +++ b/StreamVideoTests/Mock/EventMiddleware_Mock.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import Foundation diff --git a/StreamVideoTests/Mock/EventNotificationCenter_Mock.swift b/StreamVideoTests/Mock/EventNotificationCenter_Mock.swift index 5e2cbbc33..84a222591 100644 --- a/StreamVideoTests/Mock/EventNotificationCenter_Mock.swift +++ b/StreamVideoTests/Mock/EventNotificationCenter_Mock.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import Foundation diff --git a/StreamVideoTests/Mock/HTTPClient_Mock.swift b/StreamVideoTests/Mock/HTTPClient_Mock.swift index 70db9aa32..4785eace4 100644 --- a/StreamVideoTests/Mock/HTTPClient_Mock.swift +++ b/StreamVideoTests/Mock/HTTPClient_Mock.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // @testable import StreamVideo diff --git a/StreamVideoTests/Mock/InternetConnection_Mock.swift b/StreamVideoTests/Mock/InternetConnection_Mock.swift index 57ecbe448..173f07075 100644 --- a/StreamVideoTests/Mock/InternetConnection_Mock.swift +++ b/StreamVideoTests/Mock/InternetConnection_Mock.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import Foundation diff --git a/StreamVideoTests/Mock/MockActiveCallProvider.swift b/StreamVideoTests/Mock/MockActiveCallProvider.swift index 456c26e42..6a0aa28cd 100644 --- a/StreamVideoTests/Mock/MockActiveCallProvider.swift +++ b/StreamVideoTests/Mock/MockActiveCallProvider.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import Combine diff --git a/StreamVideoTests/Mock/MockAudioSession.swift b/StreamVideoTests/Mock/MockAudioSession.swift index bdaea5f4d..9b764d37c 100644 --- a/StreamVideoTests/Mock/MockAudioSession.swift +++ b/StreamVideoTests/Mock/MockAudioSession.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import AVFoundation diff --git a/StreamVideoTests/Mock/MockCXCallController.swift b/StreamVideoTests/Mock/MockCXCallController.swift index b135c850a..5f7d56161 100644 --- a/StreamVideoTests/Mock/MockCXCallController.swift +++ b/StreamVideoTests/Mock/MockCXCallController.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import CallKit diff --git a/StreamVideoTests/Mock/MockCall.swift b/StreamVideoTests/Mock/MockCall.swift index 154c8e6e3..e7f7cfe7a 100644 --- a/StreamVideoTests/Mock/MockCall.swift +++ b/StreamVideoTests/Mock/MockCall.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import Foundation diff --git a/StreamVideoTests/Mock/MockCallAuthenticator.swift b/StreamVideoTests/Mock/MockCallAuthenticator.swift index 465f8d595..a97e27c5b 100644 --- a/StreamVideoTests/Mock/MockCallAuthenticator.swift +++ b/StreamVideoTests/Mock/MockCallAuthenticator.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // @testable import StreamVideo diff --git a/StreamVideoTests/Mock/MockCallController.swift b/StreamVideoTests/Mock/MockCallController.swift index 09adc348e..2b375a995 100644 --- a/StreamVideoTests/Mock/MockCallController.swift +++ b/StreamVideoTests/Mock/MockCallController.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // @testable import StreamVideo diff --git a/StreamVideoTests/Mock/MockFunc.swift b/StreamVideoTests/Mock/MockFunc.swift index 6abac4663..cfc33c24b 100644 --- a/StreamVideoTests/Mock/MockFunc.swift +++ b/StreamVideoTests/Mock/MockFunc.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import Foundation diff --git a/StreamVideoTests/Mock/MockInternetConnection.swift b/StreamVideoTests/Mock/MockInternetConnection.swift index c65f67369..74ef447e8 100644 --- a/StreamVideoTests/Mock/MockInternetConnection.swift +++ b/StreamVideoTests/Mock/MockInternetConnection.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import Combine diff --git a/StreamVideoTests/Mock/MockResponseBuilder.swift b/StreamVideoTests/Mock/MockResponseBuilder.swift index e29095310..b0143d6bd 100644 --- a/StreamVideoTests/Mock/MockResponseBuilder.swift +++ b/StreamVideoTests/Mock/MockResponseBuilder.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // @testable import StreamVideo diff --git a/StreamVideoTests/Mock/MockSFUStack.swift b/StreamVideoTests/Mock/MockSFUStack.swift index c6005b783..2f355714f 100644 --- a/StreamVideoTests/Mock/MockSFUStack.swift +++ b/StreamVideoTests/Mock/MockSFUStack.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // @testable import StreamVideo diff --git a/StreamVideoTests/Mock/MockStreamCallAudioRecorder.swift b/StreamVideoTests/Mock/MockStreamCallAudioRecorder.swift index 8750dcc46..5f2993920 100644 --- a/StreamVideoTests/Mock/MockStreamCallAudioRecorder.swift +++ b/StreamVideoTests/Mock/MockStreamCallAudioRecorder.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import Combine diff --git a/StreamVideoTests/Mock/MockStreamVideo.swift b/StreamVideoTests/Mock/MockStreamVideo.swift index f7e8b9dd5..62acefaf8 100644 --- a/StreamVideoTests/Mock/MockStreamVideo.swift +++ b/StreamVideoTests/Mock/MockStreamVideo.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import Foundation diff --git a/StreamVideoTests/Mock/MockThermalStateObserver.swift b/StreamVideoTests/Mock/MockThermalStateObserver.swift index 0efb6cc55..de15b5fd0 100644 --- a/StreamVideoTests/Mock/MockThermalStateObserver.swift +++ b/StreamVideoTests/Mock/MockThermalStateObserver.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import Combine diff --git a/StreamVideoTests/Mock/MockWebRTCAuthenticator.swift b/StreamVideoTests/Mock/MockWebRTCAuthenticator.swift index 5b1a3b6b8..5295f32c0 100644 --- a/StreamVideoTests/Mock/MockWebRTCAuthenticator.swift +++ b/StreamVideoTests/Mock/MockWebRTCAuthenticator.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // @testable import StreamVideo diff --git a/StreamVideoTests/Mock/MockWebRTCCoordinatorFactory.swift b/StreamVideoTests/Mock/MockWebRTCCoordinatorFactory.swift index f159f4c1b..45e04dfc6 100644 --- a/StreamVideoTests/Mock/MockWebRTCCoordinatorFactory.swift +++ b/StreamVideoTests/Mock/MockWebRTCCoordinatorFactory.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // @testable import StreamVideo diff --git a/StreamVideoTests/Mock/MockWebRTCCoordinatorStack.swift b/StreamVideoTests/Mock/MockWebRTCCoordinatorStack.swift index a55d9c087..c8ca89b70 100644 --- a/StreamVideoTests/Mock/MockWebRTCCoordinatorStack.swift +++ b/StreamVideoTests/Mock/MockWebRTCCoordinatorStack.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import Combine diff --git a/StreamVideoTests/Mock/MockWebSocketClientFactory.swift b/StreamVideoTests/Mock/MockWebSocketClientFactory.swift index bd53a6e8c..54ac495c0 100644 --- a/StreamVideoTests/Mock/MockWebSocketClientFactory.swift +++ b/StreamVideoTests/Mock/MockWebSocketClientFactory.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // @testable import StreamVideo diff --git a/StreamVideoTests/Mock/StreamVideo_Mock.swift b/StreamVideoTests/Mock/StreamVideo_Mock.swift index 862fb750a..f27fc0c01 100644 --- a/StreamVideoTests/Mock/StreamVideo_Mock.swift +++ b/StreamVideoTests/Mock/StreamVideo_Mock.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // @testable import StreamVideo diff --git a/StreamVideoTests/Mock/WebSocketClientEnvironment_Mock.swift b/StreamVideoTests/Mock/WebSocketClientEnvironment_Mock.swift index 1fbc80f29..b125f9715 100644 --- a/StreamVideoTests/Mock/WebSocketClientEnvironment_Mock.swift +++ b/StreamVideoTests/Mock/WebSocketClientEnvironment_Mock.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import Foundation diff --git a/StreamVideoTests/Mock/WebSocketEngine_Mock.swift b/StreamVideoTests/Mock/WebSocketEngine_Mock.swift index d3a96a2d2..b21b169fd 100644 --- a/StreamVideoTests/Mock/WebSocketEngine_Mock.swift +++ b/StreamVideoTests/Mock/WebSocketEngine_Mock.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import Foundation diff --git a/StreamVideoTests/Mock/WebSocketPingController_Mock.swift b/StreamVideoTests/Mock/WebSocketPingController_Mock.swift index cbd57b55c..23c01ef9a 100644 --- a/StreamVideoTests/Mock/WebSocketPingController_Mock.swift +++ b/StreamVideoTests/Mock/WebSocketPingController_Mock.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import Foundation diff --git a/StreamVideoTests/Models/CallParticipants_Tests.swift b/StreamVideoTests/Models/CallParticipants_Tests.swift index 76b96fe66..e95447027 100644 --- a/StreamVideoTests/Models/CallParticipants_Tests.swift +++ b/StreamVideoTests/Models/CallParticipants_Tests.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import Foundation diff --git a/StreamVideoTests/Models/CallSettings_Tests.swift b/StreamVideoTests/Models/CallSettings_Tests.swift index 5a1db9e32..8d786a4d6 100644 --- a/StreamVideoTests/Models/CallSettings_Tests.swift +++ b/StreamVideoTests/Models/CallSettings_Tests.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import Foundation diff --git a/StreamVideoTests/Models/IncomingVideoQualitySettings_Tests.swift b/StreamVideoTests/Models/IncomingVideoQualitySettings_Tests.swift index 209981840..a514e2bd9 100644 --- a/StreamVideoTests/Models/IncomingVideoQualitySettings_Tests.swift +++ b/StreamVideoTests/Models/IncomingVideoQualitySettings_Tests.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // @testable import StreamVideo diff --git a/StreamVideoTests/Models/JSONDecoder_Tests.swift b/StreamVideoTests/Models/JSONDecoder_Tests.swift index f569cfea7..838efd9d4 100644 --- a/StreamVideoTests/Models/JSONDecoder_Tests.swift +++ b/StreamVideoTests/Models/JSONDecoder_Tests.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import Foundation diff --git a/StreamVideoTests/StreamVideoTestCase.swift b/StreamVideoTests/StreamVideoTestCase.swift index 537a1299b..5d416a3a2 100644 --- a/StreamVideoTests/StreamVideoTestCase.swift +++ b/StreamVideoTests/StreamVideoTestCase.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // @testable import StreamVideo diff --git a/StreamVideoTests/StreamVideo_Tests.swift b/StreamVideoTests/StreamVideo_Tests.swift index ea7104b17..f87a100f0 100644 --- a/StreamVideoTests/StreamVideo_Tests.swift +++ b/StreamVideoTests/StreamVideo_Tests.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // @testable import StreamVideo diff --git a/StreamVideoTests/TestUtils/AssertAsync.swift b/StreamVideoTests/TestUtils/AssertAsync.swift index f6103575d..93c29fcf9 100644 --- a/StreamVideoTests/TestUtils/AssertAsync.swift +++ b/StreamVideoTests/TestUtils/AssertAsync.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import XCTest diff --git a/StreamVideoTests/TestUtils/AssertDelay.swift b/StreamVideoTests/TestUtils/AssertDelay.swift index 3438bfd34..db26cd180 100644 --- a/StreamVideoTests/TestUtils/AssertDelay.swift +++ b/StreamVideoTests/TestUtils/AssertDelay.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import Foundation diff --git a/StreamVideoTests/TestUtils/AssertJSONEqual.swift b/StreamVideoTests/TestUtils/AssertJSONEqual.swift index 26922f739..31c4120e0 100644 --- a/StreamVideoTests/TestUtils/AssertJSONEqual.swift +++ b/StreamVideoTests/TestUtils/AssertJSONEqual.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import Foundation diff --git a/StreamVideoTests/TestUtils/AssertTestQueue.swift b/StreamVideoTests/TestUtils/AssertTestQueue.swift index e55554594..00d389cdc 100644 --- a/StreamVideoTests/TestUtils/AssertTestQueue.swift +++ b/StreamVideoTests/TestUtils/AssertTestQueue.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import Foundation diff --git a/StreamVideoTests/TestUtils/Calendar+GMT.swift b/StreamVideoTests/TestUtils/Calendar+GMT.swift index c0f662124..2f08d6cbf 100644 --- a/StreamVideoTests/TestUtils/Calendar+GMT.swift +++ b/StreamVideoTests/TestUtils/Calendar+GMT.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import Foundation diff --git a/StreamVideoTests/TestUtils/EquatableEvent.swift b/StreamVideoTests/TestUtils/EquatableEvent.swift index 96f0f024b..919425180 100644 --- a/StreamVideoTests/TestUtils/EquatableEvent.swift +++ b/StreamVideoTests/TestUtils/EquatableEvent.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import Foundation diff --git a/StreamVideoTests/TestUtils/EventLogger.swift b/StreamVideoTests/TestUtils/EventLogger.swift index 385847f49..683b107d5 100644 --- a/StreamVideoTests/TestUtils/EventLogger.swift +++ b/StreamVideoTests/TestUtils/EventLogger.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import Foundation diff --git a/StreamVideoTests/TestUtils/Mockable.swift b/StreamVideoTests/TestUtils/Mockable.swift index 6a196c013..781f5d5d0 100644 --- a/StreamVideoTests/TestUtils/Mockable.swift +++ b/StreamVideoTests/TestUtils/Mockable.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import Foundation diff --git a/StreamVideoTests/TestUtils/TestError.swift b/StreamVideoTests/TestUtils/TestError.swift index e7acc509e..138281c6b 100644 --- a/StreamVideoTests/TestUtils/TestError.swift +++ b/StreamVideoTests/TestUtils/TestError.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import Foundation diff --git a/StreamVideoTests/TestUtils/UniqueValues.swift b/StreamVideoTests/TestUtils/UniqueValues.swift index b83d57904..250e559bd 100644 --- a/StreamVideoTests/TestUtils/UniqueValues.swift +++ b/StreamVideoTests/TestUtils/UniqueValues.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import Foundation diff --git a/StreamVideoTests/TestUtils/VirtualTime/VirtualTime.swift b/StreamVideoTests/TestUtils/VirtualTime/VirtualTime.swift index bee6fa139..5a208bd2c 100644 --- a/StreamVideoTests/TestUtils/VirtualTime/VirtualTime.swift +++ b/StreamVideoTests/TestUtils/VirtualTime/VirtualTime.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import Foundation diff --git a/StreamVideoTests/TestUtils/VirtualTime/VirtualTimer.swift b/StreamVideoTests/TestUtils/VirtualTime/VirtualTimer.swift index 19199393e..a74a1bec6 100644 --- a/StreamVideoTests/TestUtils/VirtualTime/VirtualTimer.swift +++ b/StreamVideoTests/TestUtils/VirtualTime/VirtualTimer.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import Foundation diff --git a/StreamVideoTests/TestUtils/WebSocketPingController_Delegate.swift b/StreamVideoTests/TestUtils/WebSocketPingController_Delegate.swift index 2adaf544c..aaf43a60d 100644 --- a/StreamVideoTests/TestUtils/WebSocketPingController_Delegate.swift +++ b/StreamVideoTests/TestUtils/WebSocketPingController_Delegate.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import Foundation diff --git a/StreamVideoTests/Utilities/Dummy/AggregatedStatsReport+Dummy.swift b/StreamVideoTests/Utilities/Dummy/AggregatedStatsReport+Dummy.swift index fa2fd02d8..55ea631d7 100644 --- a/StreamVideoTests/Utilities/Dummy/AggregatedStatsReport+Dummy.swift +++ b/StreamVideoTests/Utilities/Dummy/AggregatedStatsReport+Dummy.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import Foundation diff --git a/StreamVideoTests/Utilities/Dummy/AudioSettings+Dummy.swift b/StreamVideoTests/Utilities/Dummy/AudioSettings+Dummy.swift index 05232b103..1c880dd3f 100644 --- a/StreamVideoTests/Utilities/Dummy/AudioSettings+Dummy.swift +++ b/StreamVideoTests/Utilities/Dummy/AudioSettings+Dummy.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import Foundation diff --git a/StreamVideoTests/Utilities/Dummy/BackstageSettings+Dummy.swift b/StreamVideoTests/Utilities/Dummy/BackstageSettings+Dummy.swift index af2e83625..6f81f43e1 100644 --- a/StreamVideoTests/Utilities/Dummy/BackstageSettings+Dummy.swift +++ b/StreamVideoTests/Utilities/Dummy/BackstageSettings+Dummy.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import Foundation diff --git a/StreamVideoTests/Utilities/Dummy/BaseStats+Dummy.swift b/StreamVideoTests/Utilities/Dummy/BaseStats+Dummy.swift index 4bd04a58e..7e2288050 100644 --- a/StreamVideoTests/Utilities/Dummy/BaseStats+Dummy.swift +++ b/StreamVideoTests/Utilities/Dummy/BaseStats+Dummy.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import Foundation diff --git a/StreamVideoTests/Utilities/Dummy/BroadcastSettingsResponse+Dummy.swift b/StreamVideoTests/Utilities/Dummy/BroadcastSettingsResponse+Dummy.swift index c37069557..a6d680d97 100644 --- a/StreamVideoTests/Utilities/Dummy/BroadcastSettingsResponse+Dummy.swift +++ b/StreamVideoTests/Utilities/Dummy/BroadcastSettingsResponse+Dummy.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import Foundation diff --git a/StreamVideoTests/Utilities/Dummy/CallAcceptedEvent+Dummy.swift b/StreamVideoTests/Utilities/Dummy/CallAcceptedEvent+Dummy.swift index 3ec0c04a2..c7de02041 100644 --- a/StreamVideoTests/Utilities/Dummy/CallAcceptedEvent+Dummy.swift +++ b/StreamVideoTests/Utilities/Dummy/CallAcceptedEvent+Dummy.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import Foundation diff --git a/StreamVideoTests/Utilities/Dummy/CallIngressResponse+Dummy.swift b/StreamVideoTests/Utilities/Dummy/CallIngressResponse+Dummy.swift index 6730acaab..71ba460f8 100644 --- a/StreamVideoTests/Utilities/Dummy/CallIngressResponse+Dummy.swift +++ b/StreamVideoTests/Utilities/Dummy/CallIngressResponse+Dummy.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import Foundation diff --git a/StreamVideoTests/Utilities/Dummy/CallParticipantResponse+Dummy.swift b/StreamVideoTests/Utilities/Dummy/CallParticipantResponse+Dummy.swift index c3c2f4c4c..45afb9a44 100644 --- a/StreamVideoTests/Utilities/Dummy/CallParticipantResponse+Dummy.swift +++ b/StreamVideoTests/Utilities/Dummy/CallParticipantResponse+Dummy.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import Foundation diff --git a/StreamVideoTests/Utilities/Dummy/CallRejectedEvent+Dummy.swift b/StreamVideoTests/Utilities/Dummy/CallRejectedEvent+Dummy.swift index 9e25ef8fa..eb43e19f2 100644 --- a/StreamVideoTests/Utilities/Dummy/CallRejectedEvent+Dummy.swift +++ b/StreamVideoTests/Utilities/Dummy/CallRejectedEvent+Dummy.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import Foundation diff --git a/StreamVideoTests/Utilities/Dummy/CallResponse+Dummy.swift b/StreamVideoTests/Utilities/Dummy/CallResponse+Dummy.swift index 9d594925a..36c72be89 100644 --- a/StreamVideoTests/Utilities/Dummy/CallResponse+Dummy.swift +++ b/StreamVideoTests/Utilities/Dummy/CallResponse+Dummy.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import Foundation diff --git a/StreamVideoTests/Utilities/Dummy/CallSessionParticipantLeftEvent+Dummy.swift b/StreamVideoTests/Utilities/Dummy/CallSessionParticipantLeftEvent+Dummy.swift index bc803a36e..3cb59e9ec 100644 --- a/StreamVideoTests/Utilities/Dummy/CallSessionParticipantLeftEvent+Dummy.swift +++ b/StreamVideoTests/Utilities/Dummy/CallSessionParticipantLeftEvent+Dummy.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import Foundation diff --git a/StreamVideoTests/Utilities/Dummy/CallSessionResponse+Dummy.swift b/StreamVideoTests/Utilities/Dummy/CallSessionResponse+Dummy.swift index 91490d7f8..ae6249c7a 100644 --- a/StreamVideoTests/Utilities/Dummy/CallSessionResponse+Dummy.swift +++ b/StreamVideoTests/Utilities/Dummy/CallSessionResponse+Dummy.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import Foundation diff --git a/StreamVideoTests/Utilities/Dummy/CallSettingsResponse+Dummy.swift b/StreamVideoTests/Utilities/Dummy/CallSettingsResponse+Dummy.swift index 70cec8500..3a4fac145 100644 --- a/StreamVideoTests/Utilities/Dummy/CallSettingsResponse+Dummy.swift +++ b/StreamVideoTests/Utilities/Dummy/CallSettingsResponse+Dummy.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import Foundation diff --git a/StreamVideoTests/Utilities/Dummy/CallStatsReport+Dummy.swift b/StreamVideoTests/Utilities/Dummy/CallStatsReport+Dummy.swift index 35d75c68d..da4a3a5ce 100644 --- a/StreamVideoTests/Utilities/Dummy/CallStatsReport+Dummy.swift +++ b/StreamVideoTests/Utilities/Dummy/CallStatsReport+Dummy.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import Foundation diff --git a/StreamVideoTests/Utilities/Dummy/Credentials+Dummy.swift b/StreamVideoTests/Utilities/Dummy/Credentials+Dummy.swift index 1ec82a94b..363caa2d6 100644 --- a/StreamVideoTests/Utilities/Dummy/Credentials+Dummy.swift +++ b/StreamVideoTests/Utilities/Dummy/Credentials+Dummy.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import Foundation diff --git a/StreamVideoTests/Utilities/Dummy/EgressHLSResponse+Dummy.swift b/StreamVideoTests/Utilities/Dummy/EgressHLSResponse+Dummy.swift index 13368392e..6b1c35c96 100644 --- a/StreamVideoTests/Utilities/Dummy/EgressHLSResponse+Dummy.swift +++ b/StreamVideoTests/Utilities/Dummy/EgressHLSResponse+Dummy.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import Foundation diff --git a/StreamVideoTests/Utilities/Dummy/EgressRTMPResponse+Dummy.swift b/StreamVideoTests/Utilities/Dummy/EgressRTMPResponse+Dummy.swift index 6ddd5023a..209f688ff 100644 --- a/StreamVideoTests/Utilities/Dummy/EgressRTMPResponse+Dummy.swift +++ b/StreamVideoTests/Utilities/Dummy/EgressRTMPResponse+Dummy.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import Foundation diff --git a/StreamVideoTests/Utilities/Dummy/EgressResponse+Dummy.swift b/StreamVideoTests/Utilities/Dummy/EgressResponse+Dummy.swift index bf6289ab5..3ba964664 100644 --- a/StreamVideoTests/Utilities/Dummy/EgressResponse+Dummy.swift +++ b/StreamVideoTests/Utilities/Dummy/EgressResponse+Dummy.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import Foundation diff --git a/StreamVideoTests/Utilities/Dummy/GeofenceSettings+Dummy.swift b/StreamVideoTests/Utilities/Dummy/GeofenceSettings+Dummy.swift index bfe9cff78..ffec7dd75 100644 --- a/StreamVideoTests/Utilities/Dummy/GeofenceSettings+Dummy.swift +++ b/StreamVideoTests/Utilities/Dummy/GeofenceSettings+Dummy.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import Foundation diff --git a/StreamVideoTests/Utilities/Dummy/GetCallResponse+Dummy.swift b/StreamVideoTests/Utilities/Dummy/GetCallResponse+Dummy.swift index c39918421..3b037fe71 100644 --- a/StreamVideoTests/Utilities/Dummy/GetCallResponse+Dummy.swift +++ b/StreamVideoTests/Utilities/Dummy/GetCallResponse+Dummy.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import Foundation diff --git a/StreamVideoTests/Utilities/Dummy/HLSSettingsResponse+Dummy.swift b/StreamVideoTests/Utilities/Dummy/HLSSettingsResponse+Dummy.swift index 1cfc3a7a2..432efe691 100644 --- a/StreamVideoTests/Utilities/Dummy/HLSSettingsResponse+Dummy.swift +++ b/StreamVideoTests/Utilities/Dummy/HLSSettingsResponse+Dummy.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import Foundation diff --git a/StreamVideoTests/Utilities/Dummy/JoinCallResponse+Dummy.swift b/StreamVideoTests/Utilities/Dummy/JoinCallResponse+Dummy.swift index 0a49f580e..d073f0fbe 100644 --- a/StreamVideoTests/Utilities/Dummy/JoinCallResponse+Dummy.swift +++ b/StreamVideoTests/Utilities/Dummy/JoinCallResponse+Dummy.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import Foundation diff --git a/StreamVideoTests/Utilities/Dummy/LimitsSettingsResponse+Dummy.swift b/StreamVideoTests/Utilities/Dummy/LimitsSettingsResponse+Dummy.swift index 13752d7e6..9d9ff373a 100644 --- a/StreamVideoTests/Utilities/Dummy/LimitsSettingsResponse+Dummy.swift +++ b/StreamVideoTests/Utilities/Dummy/LimitsSettingsResponse+Dummy.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import Foundation diff --git a/StreamVideoTests/Utilities/Dummy/MemberResponse+Dummy.swift b/StreamVideoTests/Utilities/Dummy/MemberResponse+Dummy.swift index 5b91b4980..da9c1052a 100644 --- a/StreamVideoTests/Utilities/Dummy/MemberResponse+Dummy.swift +++ b/StreamVideoTests/Utilities/Dummy/MemberResponse+Dummy.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import Foundation diff --git a/StreamVideoTests/Utilities/Dummy/ParticipantsStats+Dummy.swift b/StreamVideoTests/Utilities/Dummy/ParticipantsStats+Dummy.swift index a56b79c48..510418254 100644 --- a/StreamVideoTests/Utilities/Dummy/ParticipantsStats+Dummy.swift +++ b/StreamVideoTests/Utilities/Dummy/ParticipantsStats+Dummy.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import Foundation diff --git a/StreamVideoTests/Utilities/Dummy/RTCMediaStreamTrack+dummy.swift b/StreamVideoTests/Utilities/Dummy/RTCMediaStreamTrack+dummy.swift index 61d960bb0..3b3bf4cd9 100644 --- a/StreamVideoTests/Utilities/Dummy/RTCMediaStreamTrack+dummy.swift +++ b/StreamVideoTests/Utilities/Dummy/RTCMediaStreamTrack+dummy.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // @testable import StreamVideo diff --git a/StreamVideoTests/Utilities/Dummy/RTMPIngress+Dummy.swift b/StreamVideoTests/Utilities/Dummy/RTMPIngress+Dummy.swift index 7406a50bc..857e567c5 100644 --- a/StreamVideoTests/Utilities/Dummy/RTMPIngress+Dummy.swift +++ b/StreamVideoTests/Utilities/Dummy/RTMPIngress+Dummy.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import Foundation diff --git a/StreamVideoTests/Utilities/Dummy/RecordSettingsResponse+Dummy.swift b/StreamVideoTests/Utilities/Dummy/RecordSettingsResponse+Dummy.swift index defdb918d..bc87b915f 100644 --- a/StreamVideoTests/Utilities/Dummy/RecordSettingsResponse+Dummy.swift +++ b/StreamVideoTests/Utilities/Dummy/RecordSettingsResponse+Dummy.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import Foundation diff --git a/StreamVideoTests/Utilities/Dummy/RingSettings+Dummy.swift b/StreamVideoTests/Utilities/Dummy/RingSettings+Dummy.swift index 018454386..7dc21459f 100644 --- a/StreamVideoTests/Utilities/Dummy/RingSettings+Dummy.swift +++ b/StreamVideoTests/Utilities/Dummy/RingSettings+Dummy.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import Foundation diff --git a/StreamVideoTests/Utilities/Dummy/SFUResponse+Dummy.swift b/StreamVideoTests/Utilities/Dummy/SFUResponse+Dummy.swift index fca5fa0c3..ca24bccb9 100644 --- a/StreamVideoTests/Utilities/Dummy/SFUResponse+Dummy.swift +++ b/StreamVideoTests/Utilities/Dummy/SFUResponse+Dummy.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import Foundation diff --git a/StreamVideoTests/Utilities/Dummy/ScreensharingSettings+Dummy.swift b/StreamVideoTests/Utilities/Dummy/ScreensharingSettings+Dummy.swift index 8043cb6fd..708a86c71 100644 --- a/StreamVideoTests/Utilities/Dummy/ScreensharingSettings+Dummy.swift +++ b/StreamVideoTests/Utilities/Dummy/ScreensharingSettings+Dummy.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import Foundation diff --git a/StreamVideoTests/Utilities/Dummy/Stream_Video_Sfu_Event_VideoLayerSetting+Dummy.swift b/StreamVideoTests/Utilities/Dummy/Stream_Video_Sfu_Event_VideoLayerSetting+Dummy.swift index ba9a586da..4369e6a1c 100644 --- a/StreamVideoTests/Utilities/Dummy/Stream_Video_Sfu_Event_VideoLayerSetting+Dummy.swift +++ b/StreamVideoTests/Utilities/Dummy/Stream_Video_Sfu_Event_VideoLayerSetting+Dummy.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import Foundation diff --git a/StreamVideoTests/Utilities/Dummy/Stream_Video_Sfu_Models_Codec+Dummy.swift b/StreamVideoTests/Utilities/Dummy/Stream_Video_Sfu_Models_Codec+Dummy.swift index a668c1260..9e83d192a 100644 --- a/StreamVideoTests/Utilities/Dummy/Stream_Video_Sfu_Models_Codec+Dummy.swift +++ b/StreamVideoTests/Utilities/Dummy/Stream_Video_Sfu_Models_Codec+Dummy.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import Foundation diff --git a/StreamVideoTests/Utilities/Dummy/TargetResolution+Dummy.swift b/StreamVideoTests/Utilities/Dummy/TargetResolution+Dummy.swift index 119672a11..0e7eb3acc 100644 --- a/StreamVideoTests/Utilities/Dummy/TargetResolution+Dummy.swift +++ b/StreamVideoTests/Utilities/Dummy/TargetResolution+Dummy.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import Foundation diff --git a/StreamVideoTests/Utilities/Dummy/ThumbnailResponse+Dummy.swift b/StreamVideoTests/Utilities/Dummy/ThumbnailResponse+Dummy.swift index 9ddd285fc..46dc9499c 100644 --- a/StreamVideoTests/Utilities/Dummy/ThumbnailResponse+Dummy.swift +++ b/StreamVideoTests/Utilities/Dummy/ThumbnailResponse+Dummy.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import Foundation diff --git a/StreamVideoTests/Utilities/Dummy/ThumbnailsSettings+Dummy.swift b/StreamVideoTests/Utilities/Dummy/ThumbnailsSettings+Dummy.swift index 98dd61866..d7c6e9279 100644 --- a/StreamVideoTests/Utilities/Dummy/ThumbnailsSettings+Dummy.swift +++ b/StreamVideoTests/Utilities/Dummy/ThumbnailsSettings+Dummy.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import Foundation diff --git a/StreamVideoTests/Utilities/Dummy/TranscriptionSettings+Dummy.swift b/StreamVideoTests/Utilities/Dummy/TranscriptionSettings+Dummy.swift index cd5068094..bbf144cec 100644 --- a/StreamVideoTests/Utilities/Dummy/TranscriptionSettings+Dummy.swift +++ b/StreamVideoTests/Utilities/Dummy/TranscriptionSettings+Dummy.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import Foundation diff --git a/StreamVideoTests/Utilities/Dummy/UserResponse+Dummy.swift b/StreamVideoTests/Utilities/Dummy/UserResponse+Dummy.swift index 3e9053e8b..7d6409b91 100644 --- a/StreamVideoTests/Utilities/Dummy/UserResponse+Dummy.swift +++ b/StreamVideoTests/Utilities/Dummy/UserResponse+Dummy.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import Foundation diff --git a/StreamVideoTests/Utilities/Dummy/VideoSettings+Dummy.swift b/StreamVideoTests/Utilities/Dummy/VideoSettings+Dummy.swift index 241214398..24bbae6ad 100644 --- a/StreamVideoTests/Utilities/Dummy/VideoSettings+Dummy.swift +++ b/StreamVideoTests/Utilities/Dummy/VideoSettings+Dummy.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import Foundation diff --git a/StreamVideoTests/Utilities/Extensions/CVPixelBuffer+Convenience.swift b/StreamVideoTests/Utilities/Extensions/CVPixelBuffer+Convenience.swift index 493e16eda..f4094cc52 100644 --- a/StreamVideoTests/Utilities/Extensions/CVPixelBuffer+Convenience.swift +++ b/StreamVideoTests/Utilities/Extensions/CVPixelBuffer+Convenience.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import CoreVideo diff --git a/StreamVideoTests/Utilities/Extensions/Stream_Video_Sfu_Models_ConnectionQuality+Convenience.swift b/StreamVideoTests/Utilities/Extensions/Stream_Video_Sfu_Models_ConnectionQuality+Convenience.swift index acb8af793..ed85d1bcb 100644 --- a/StreamVideoTests/Utilities/Extensions/Stream_Video_Sfu_Models_ConnectionQuality+Convenience.swift +++ b/StreamVideoTests/Utilities/Extensions/Stream_Video_Sfu_Models_ConnectionQuality+Convenience.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // @testable import StreamVideo diff --git a/StreamVideoTests/Utilities/Extensions/Stream_Video_Sfu_Models_Participant+Convenience.swift b/StreamVideoTests/Utilities/Extensions/Stream_Video_Sfu_Models_Participant+Convenience.swift index e76dc30c4..96981d890 100644 --- a/StreamVideoTests/Utilities/Extensions/Stream_Video_Sfu_Models_Participant+Convenience.swift +++ b/StreamVideoTests/Utilities/Extensions/Stream_Video_Sfu_Models_Participant+Convenience.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // @testable import StreamVideo diff --git a/StreamVideoTests/Utilities/Extensions/XCTestCase+PredicateFulfillment.swift b/StreamVideoTests/Utilities/Extensions/XCTestCase+PredicateFulfillment.swift index d121ff911..9771ec354 100644 --- a/StreamVideoTests/Utilities/Extensions/XCTestCase+PredicateFulfillment.swift +++ b/StreamVideoTests/Utilities/Extensions/XCTestCase+PredicateFulfillment.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import Combine diff --git a/StreamVideoTests/Utilities/Mocks/MockCXProvider.swift b/StreamVideoTests/Utilities/Mocks/MockCXProvider.swift index 01e266f59..121d45af3 100644 --- a/StreamVideoTests/Utilities/Mocks/MockCXProvider.swift +++ b/StreamVideoTests/Utilities/Mocks/MockCXProvider.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import CallKit diff --git a/StreamVideoTests/Utilities/Mocks/MockCallKitPushNotificationAdapter.swift b/StreamVideoTests/Utilities/Mocks/MockCallKitPushNotificationAdapter.swift index 844e1152a..5ef9cf034 100644 --- a/StreamVideoTests/Utilities/Mocks/MockCallKitPushNotificationAdapter.swift +++ b/StreamVideoTests/Utilities/Mocks/MockCallKitPushNotificationAdapter.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import Foundation diff --git a/StreamVideoTests/Utilities/Mocks/MockCallKitService.swift b/StreamVideoTests/Utilities/Mocks/MockCallKitService.swift index 56b37b6b1..b27afe44c 100644 --- a/StreamVideoTests/Utilities/Mocks/MockCallKitService.swift +++ b/StreamVideoTests/Utilities/Mocks/MockCallKitService.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import Foundation diff --git a/StreamVideoTests/Utilities/TestsAuthenticationProvider.swift b/StreamVideoTests/Utilities/TestsAuthenticationProvider.swift index db624cdd1..3c9f1f6df 100644 --- a/StreamVideoTests/Utilities/TestsAuthenticationProvider.swift +++ b/StreamVideoTests/Utilities/TestsAuthenticationProvider.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import Foundation diff --git a/StreamVideoTests/Utils/AsyncAssert.swift b/StreamVideoTests/Utils/AsyncAssert.swift index 0c82ac1dd..4cfe94c77 100644 --- a/StreamVideoTests/Utils/AsyncAssert.swift +++ b/StreamVideoTests/Utils/AsyncAssert.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import Foundation diff --git a/StreamVideoTests/Utils/AudioSession/StreamAudioSessionAdapter_Tests.swift b/StreamVideoTests/Utils/AudioSession/StreamAudioSessionAdapter_Tests.swift index 81f3955ac..982f4d6ea 100644 --- a/StreamVideoTests/Utils/AudioSession/StreamAudioSessionAdapter_Tests.swift +++ b/StreamVideoTests/Utils/AudioSession/StreamAudioSessionAdapter_Tests.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import AVFoundation diff --git a/StreamVideoTests/Utils/AudioSession/StreamRTCAudioSession_Tests.swift b/StreamVideoTests/Utils/AudioSession/StreamRTCAudioSession_Tests.swift index 3b9574597..65cb9988b 100644 --- a/StreamVideoTests/Utils/AudioSession/StreamRTCAudioSession_Tests.swift +++ b/StreamVideoTests/Utils/AudioSession/StreamRTCAudioSession_Tests.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // @testable import StreamVideo diff --git a/StreamVideoTests/Utils/CallCache_Tests.swift b/StreamVideoTests/Utils/CallCache_Tests.swift index 97e1d523b..8599d4fc2 100644 --- a/StreamVideoTests/Utils/CallCache_Tests.swift +++ b/StreamVideoTests/Utils/CallCache_Tests.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import Foundation diff --git a/StreamVideoTests/Utils/CollectionDelayedUpdateObserver_Tests.swift b/StreamVideoTests/Utils/CollectionDelayedUpdateObserver_Tests.swift index f50d04913..c6ab4038a 100644 --- a/StreamVideoTests/Utils/CollectionDelayedUpdateObserver_Tests.swift +++ b/StreamVideoTests/Utils/CollectionDelayedUpdateObserver_Tests.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import Combine diff --git a/StreamVideoTests/Utils/EventBatcher_Tests.swift b/StreamVideoTests/Utils/EventBatcher_Tests.swift index 334313cce..056145a2b 100644 --- a/StreamVideoTests/Utils/EventBatcher_Tests.swift +++ b/StreamVideoTests/Utils/EventBatcher_Tests.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // @testable import StreamVideo diff --git a/StreamVideoTests/Utils/Mapping_Tests.swift b/StreamVideoTests/Utils/Mapping_Tests.swift index 58cea3d66..f6c4de866 100644 --- a/StreamVideoTests/Utils/Mapping_Tests.swift +++ b/StreamVideoTests/Utils/Mapping_Tests.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // @testable import StreamVideo diff --git a/StreamVideoTests/Utils/Queues/RecursiveQueueTests.swift b/StreamVideoTests/Utils/Queues/RecursiveQueueTests.swift index a84b4e828..b1042cc82 100644 --- a/StreamVideoTests/Utils/Queues/RecursiveQueueTests.swift +++ b/StreamVideoTests/Utils/Queues/RecursiveQueueTests.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // @testable import StreamVideo diff --git a/StreamVideoTests/Utils/Queues/UnfairQueueTests.swift b/StreamVideoTests/Utils/Queues/UnfairQueueTests.swift index 223109f44..b52a3ee08 100644 --- a/StreamVideoTests/Utils/Queues/UnfairQueueTests.swift +++ b/StreamVideoTests/Utils/Queues/UnfairQueueTests.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // @testable import StreamVideo diff --git a/StreamVideoTests/Utils/RawJSON_Tests.swift b/StreamVideoTests/Utils/RawJSON_Tests.swift index 1c07e6d59..1f3c1a20a 100644 --- a/StreamVideoTests/Utils/RawJSON_Tests.swift +++ b/StreamVideoTests/Utils/RawJSON_Tests.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // @testable import StreamVideo diff --git a/StreamVideoTests/Utils/RejectionReasonProvider/RejectionReasonProvider_Tests.swift b/StreamVideoTests/Utils/RejectionReasonProvider/RejectionReasonProvider_Tests.swift index ab158d420..ca578e09a 100644 --- a/StreamVideoTests/Utils/RejectionReasonProvider/RejectionReasonProvider_Tests.swift +++ b/StreamVideoTests/Utils/RejectionReasonProvider/RejectionReasonProvider_Tests.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import Foundation diff --git a/StreamVideoTests/Utils/RepeatingTimer_Tests.swift b/StreamVideoTests/Utils/RepeatingTimer_Tests.swift index b88e85f06..f76dbe587 100644 --- a/StreamVideoTests/Utils/RepeatingTimer_Tests.swift +++ b/StreamVideoTests/Utils/RepeatingTimer_Tests.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // @testable import StreamVideo diff --git a/StreamVideoTests/Utils/SerialActor_Tests.swift b/StreamVideoTests/Utils/SerialActor_Tests.swift index 09f94b239..b3bb0fc1a 100644 --- a/StreamVideoTests/Utils/SerialActor_Tests.swift +++ b/StreamVideoTests/Utils/SerialActor_Tests.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import Foundation diff --git a/StreamVideoTests/Utils/Sorting_Tests.swift b/StreamVideoTests/Utils/Sorting_Tests.swift index 763c872a0..3f91785c0 100644 --- a/StreamVideoTests/Utils/Sorting_Tests.swift +++ b/StreamVideoTests/Utils/Sorting_Tests.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // @testable import StreamVideo diff --git a/StreamVideoTests/Utils/StateMachine/CallStateMachine/Stages/StreamCallStateMachineStageAcceptedStage_Tests.swift b/StreamVideoTests/Utils/StateMachine/CallStateMachine/Stages/StreamCallStateMachineStageAcceptedStage_Tests.swift index 0f0de63b3..f84d975bc 100644 --- a/StreamVideoTests/Utils/StateMachine/CallStateMachine/Stages/StreamCallStateMachineStageAcceptedStage_Tests.swift +++ b/StreamVideoTests/Utils/StateMachine/CallStateMachine/Stages/StreamCallStateMachineStageAcceptedStage_Tests.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // @testable import StreamVideo diff --git a/StreamVideoTests/Utils/StateMachine/CallStateMachine/Stages/StreamCallStateMachineStageAcceptingStage_Tests.swift b/StreamVideoTests/Utils/StateMachine/CallStateMachine/Stages/StreamCallStateMachineStageAcceptingStage_Tests.swift index 7400f076d..dfa7c3830 100644 --- a/StreamVideoTests/Utils/StateMachine/CallStateMachine/Stages/StreamCallStateMachineStageAcceptingStage_Tests.swift +++ b/StreamVideoTests/Utils/StateMachine/CallStateMachine/Stages/StreamCallStateMachineStageAcceptingStage_Tests.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // @testable import StreamVideo diff --git a/StreamVideoTests/Utils/StateMachine/CallStateMachine/Stages/StreamCallStateMachineStageErrorStage_Tests.swift b/StreamVideoTests/Utils/StateMachine/CallStateMachine/Stages/StreamCallStateMachineStageErrorStage_Tests.swift index 729e62c11..f14dc397a 100644 --- a/StreamVideoTests/Utils/StateMachine/CallStateMachine/Stages/StreamCallStateMachineStageErrorStage_Tests.swift +++ b/StreamVideoTests/Utils/StateMachine/CallStateMachine/Stages/StreamCallStateMachineStageErrorStage_Tests.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // @testable import StreamVideo diff --git a/StreamVideoTests/Utils/StateMachine/CallStateMachine/Stages/StreamCallStateMachineStageIdleStage_Tests.swift b/StreamVideoTests/Utils/StateMachine/CallStateMachine/Stages/StreamCallStateMachineStageIdleStage_Tests.swift index e4e347529..733858a17 100644 --- a/StreamVideoTests/Utils/StateMachine/CallStateMachine/Stages/StreamCallStateMachineStageIdleStage_Tests.swift +++ b/StreamVideoTests/Utils/StateMachine/CallStateMachine/Stages/StreamCallStateMachineStageIdleStage_Tests.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // @testable import StreamVideo diff --git a/StreamVideoTests/Utils/StateMachine/CallStateMachine/Stages/StreamCallStateMachineStageJoinedStage_Tests.swift b/StreamVideoTests/Utils/StateMachine/CallStateMachine/Stages/StreamCallStateMachineStageJoinedStage_Tests.swift index c066d991d..2e7062965 100644 --- a/StreamVideoTests/Utils/StateMachine/CallStateMachine/Stages/StreamCallStateMachineStageJoinedStage_Tests.swift +++ b/StreamVideoTests/Utils/StateMachine/CallStateMachine/Stages/StreamCallStateMachineStageJoinedStage_Tests.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // @testable import StreamVideo diff --git a/StreamVideoTests/Utils/StateMachine/CallStateMachine/Stages/StreamCallStateMachineStageJoiningStage_Tests.swift b/StreamVideoTests/Utils/StateMachine/CallStateMachine/Stages/StreamCallStateMachineStageJoiningStage_Tests.swift index 432ddd70b..b48f4f28a 100644 --- a/StreamVideoTests/Utils/StateMachine/CallStateMachine/Stages/StreamCallStateMachineStageJoiningStage_Tests.swift +++ b/StreamVideoTests/Utils/StateMachine/CallStateMachine/Stages/StreamCallStateMachineStageJoiningStage_Tests.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // @testable import StreamVideo diff --git a/StreamVideoTests/Utils/StateMachine/CallStateMachine/Stages/StreamCallStateMachineStageRejectedStage_Tests.swift b/StreamVideoTests/Utils/StateMachine/CallStateMachine/Stages/StreamCallStateMachineStageRejectedStage_Tests.swift index 6248fd3d0..7de2526bf 100644 --- a/StreamVideoTests/Utils/StateMachine/CallStateMachine/Stages/StreamCallStateMachineStageRejectedStage_Tests.swift +++ b/StreamVideoTests/Utils/StateMachine/CallStateMachine/Stages/StreamCallStateMachineStageRejectedStage_Tests.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // @testable import StreamVideo diff --git a/StreamVideoTests/Utils/StateMachine/CallStateMachine/Stages/StreamCallStateMachineStageRejectingStage_Tests.swift b/StreamVideoTests/Utils/StateMachine/CallStateMachine/Stages/StreamCallStateMachineStageRejectingStage_Tests.swift index f8dbb1e50..a0e6ab222 100644 --- a/StreamVideoTests/Utils/StateMachine/CallStateMachine/Stages/StreamCallStateMachineStageRejectingStage_Tests.swift +++ b/StreamVideoTests/Utils/StateMachine/CallStateMachine/Stages/StreamCallStateMachineStageRejectingStage_Tests.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // @testable import StreamVideo diff --git a/StreamVideoTests/Utils/StateMachine/CallStateMachine/StreamCallStateMachine_Tests.swift b/StreamVideoTests/Utils/StateMachine/CallStateMachine/StreamCallStateMachine_Tests.swift index 41e815846..356dd5c45 100644 --- a/StreamVideoTests/Utils/StateMachine/CallStateMachine/StreamCallStateMachine_Tests.swift +++ b/StreamVideoTests/Utils/StateMachine/CallStateMachine/StreamCallStateMachine_Tests.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // @testable import StreamVideo diff --git a/StreamVideoTests/Utils/StateMachine/Publisher_NextTests.swift b/StreamVideoTests/Utils/StateMachine/Publisher_NextTests.swift index 4a6d2d3ff..fcbd958cd 100644 --- a/StreamVideoTests/Utils/StateMachine/Publisher_NextTests.swift +++ b/StreamVideoTests/Utils/StateMachine/Publisher_NextTests.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import Combine diff --git a/StreamVideoTests/Utils/StateMachine/StreamStateMachine_Tests.swift b/StreamVideoTests/Utils/StateMachine/StreamStateMachine_Tests.swift index df80d81b2..079641368 100644 --- a/StreamVideoTests/Utils/StateMachine/StreamStateMachine_Tests.swift +++ b/StreamVideoTests/Utils/StateMachine/StreamStateMachine_Tests.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import Combine diff --git a/StreamVideoTests/Utils/StreamCallAudioRecorderTests.swift b/StreamVideoTests/Utils/StreamCallAudioRecorderTests.swift index 2476287fe..51c257f8e 100644 --- a/StreamVideoTests/Utils/StreamCallAudioRecorderTests.swift +++ b/StreamVideoTests/Utils/StreamCallAudioRecorderTests.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import AVFoundation diff --git a/StreamVideoTests/WebRTC/AudioSession_Tests.swift b/StreamVideoTests/WebRTC/AudioSession_Tests.swift index f38509805..96a27fa30 100644 --- a/StreamVideoTests/WebRTC/AudioSession_Tests.swift +++ b/StreamVideoTests/WebRTC/AudioSession_Tests.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // @testable import StreamVideo diff --git a/StreamVideoTests/WebRTC/Extensions/Foundation/Task_TimeoutTests.swift b/StreamVideoTests/WebRTC/Extensions/Foundation/Task_TimeoutTests.swift index acf3594b2..92f1acef3 100644 --- a/StreamVideoTests/WebRTC/Extensions/Foundation/Task_TimeoutTests.swift +++ b/StreamVideoTests/WebRTC/Extensions/Foundation/Task_TimeoutTests.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // @testable import StreamVideo diff --git a/StreamVideoTests/WebRTC/Extensions/Foundation/URLSessionConfiguration_WaitsForConnectivityTests.swift b/StreamVideoTests/WebRTC/Extensions/Foundation/URLSessionConfiguration_WaitsForConnectivityTests.swift index 2ffffdb9a..ba9b753ba 100644 --- a/StreamVideoTests/WebRTC/Extensions/Foundation/URLSessionConfiguration_WaitsForConnectivityTests.swift +++ b/StreamVideoTests/WebRTC/Extensions/Foundation/URLSessionConfiguration_WaitsForConnectivityTests.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // @testable import StreamVideo diff --git a/StreamVideoTests/WebRTC/RTCConfiguration_Tests.swift b/StreamVideoTests/WebRTC/RTCConfiguration_Tests.swift index e806ba4e5..3b4b7dcbf 100644 --- a/StreamVideoTests/WebRTC/RTCConfiguration_Tests.swift +++ b/StreamVideoTests/WebRTC/RTCConfiguration_Tests.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // @testable import StreamVideo diff --git a/StreamVideoTests/WebRTC/Retries_Tests.swift b/StreamVideoTests/WebRTC/Retries_Tests.swift index d3050b8d9..9848429dd 100644 --- a/StreamVideoTests/WebRTC/Retries_Tests.swift +++ b/StreamVideoTests/WebRTC/Retries_Tests.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // @testable import StreamVideo diff --git a/StreamVideoTests/WebRTC/SFU/Mocks/MockSignalServer.swift b/StreamVideoTests/WebRTC/SFU/Mocks/MockSignalServer.swift index 7d407f1e4..fe0a5e2e8 100644 --- a/StreamVideoTests/WebRTC/SFU/Mocks/MockSignalServer.swift +++ b/StreamVideoTests/WebRTC/SFU/Mocks/MockSignalServer.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import Foundation diff --git a/StreamVideoTests/WebRTC/SFU/Mocks/MockWebSocketClient.swift b/StreamVideoTests/WebRTC/SFU/Mocks/MockWebSocketClient.swift index e7be16dda..6cab23c77 100644 --- a/StreamVideoTests/WebRTC/SFU/Mocks/MockWebSocketClient.swift +++ b/StreamVideoTests/WebRTC/SFU/Mocks/MockWebSocketClient.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import Foundation diff --git a/StreamVideoTests/WebRTC/SFU/Mocks/MockWebSocketEngine.swift b/StreamVideoTests/WebRTC/SFU/Mocks/MockWebSocketEngine.swift index 4734c3131..df508f123 100644 --- a/StreamVideoTests/WebRTC/SFU/Mocks/MockWebSocketEngine.swift +++ b/StreamVideoTests/WebRTC/SFU/Mocks/MockWebSocketEngine.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import Foundation diff --git a/StreamVideoTests/WebRTC/SFU/SFUAdapter_Tests.swift b/StreamVideoTests/WebRTC/SFU/SFUAdapter_Tests.swift index 8f41b6cb0..f53ad0ba6 100644 --- a/StreamVideoTests/WebRTC/SFU/SFUAdapter_Tests.swift +++ b/StreamVideoTests/WebRTC/SFU/SFUAdapter_Tests.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // @testable import StreamVideo diff --git a/StreamVideoTests/WebRTC/Screensharing/BroadcastObserver_Tests.swift b/StreamVideoTests/WebRTC/Screensharing/BroadcastObserver_Tests.swift index 7f4e00748..3b2babae6 100644 --- a/StreamVideoTests/WebRTC/Screensharing/BroadcastObserver_Tests.swift +++ b/StreamVideoTests/WebRTC/Screensharing/BroadcastObserver_Tests.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // @testable import StreamVideo diff --git a/StreamVideoTests/WebRTC/Statistics/CallStatsReporting_Tests.swift b/StreamVideoTests/WebRTC/Statistics/CallStatsReporting_Tests.swift index a63d11035..2d26283b0 100644 --- a/StreamVideoTests/WebRTC/Statistics/CallStatsReporting_Tests.swift +++ b/StreamVideoTests/WebRTC/Statistics/CallStatsReporting_Tests.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import Foundation diff --git a/StreamVideoTests/WebRTC/Statistics/Mocks/MockStreamStatistics.swift b/StreamVideoTests/WebRTC/Statistics/Mocks/MockStreamStatistics.swift index 6fc8f1b60..a93de609a 100644 --- a/StreamVideoTests/WebRTC/Statistics/Mocks/MockStreamStatistics.swift +++ b/StreamVideoTests/WebRTC/Statistics/Mocks/MockStreamStatistics.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import Foundation diff --git a/StreamVideoTests/WebRTC/Statistics/StreamCallStatisticsFormatter_Tests.swift b/StreamVideoTests/WebRTC/Statistics/StreamCallStatisticsFormatter_Tests.swift index e8bf01899..1293c85a8 100644 --- a/StreamVideoTests/WebRTC/Statistics/StreamCallStatisticsFormatter_Tests.swift +++ b/StreamVideoTests/WebRTC/Statistics/StreamCallStatisticsFormatter_Tests.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import Foundation diff --git a/StreamVideoTests/WebRTC/VideoFilters/Extensions/CIImage_Resize_Tests.swift b/StreamVideoTests/WebRTC/VideoFilters/Extensions/CIImage_Resize_Tests.swift index 0eb8d916a..8efc560a8 100644 --- a/StreamVideoTests/WebRTC/VideoFilters/Extensions/CIImage_Resize_Tests.swift +++ b/StreamVideoTests/WebRTC/VideoFilters/Extensions/CIImage_Resize_Tests.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import Foundation diff --git a/StreamVideoTests/WebRTC/v2/Extensions/CallParticipant_TrackSubscriptionTests.swift b/StreamVideoTests/WebRTC/v2/Extensions/CallParticipant_TrackSubscriptionTests.swift index d51edb10d..b93aab1a6 100644 --- a/StreamVideoTests/WebRTC/v2/Extensions/CallParticipant_TrackSubscriptionTests.swift +++ b/StreamVideoTests/WebRTC/v2/Extensions/CallParticipant_TrackSubscriptionTests.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // @testable import StreamVideo diff --git a/StreamVideoTests/WebRTC/v2/PeerConnection/Adapters/ICEAdapter_Tests.swift b/StreamVideoTests/WebRTC/v2/PeerConnection/Adapters/ICEAdapter_Tests.swift index fea8e4764..0498c4ceb 100644 --- a/StreamVideoTests/WebRTC/v2/PeerConnection/Adapters/ICEAdapter_Tests.swift +++ b/StreamVideoTests/WebRTC/v2/PeerConnection/Adapters/ICEAdapter_Tests.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import Combine diff --git a/StreamVideoTests/WebRTC/v2/PeerConnection/MediaAdapters/AudioMediaAdapter_Tests.swift b/StreamVideoTests/WebRTC/v2/PeerConnection/MediaAdapters/AudioMediaAdapter_Tests.swift index 9407a4f9f..5b92d2f4d 100644 --- a/StreamVideoTests/WebRTC/v2/PeerConnection/MediaAdapters/AudioMediaAdapter_Tests.swift +++ b/StreamVideoTests/WebRTC/v2/PeerConnection/MediaAdapters/AudioMediaAdapter_Tests.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import Combine diff --git a/StreamVideoTests/WebRTC/v2/PeerConnection/MediaAdapters/ScreenShareMediaAdapter_Tests.swift b/StreamVideoTests/WebRTC/v2/PeerConnection/MediaAdapters/ScreenShareMediaAdapter_Tests.swift index 01b137cd6..8f8149d5d 100644 --- a/StreamVideoTests/WebRTC/v2/PeerConnection/MediaAdapters/ScreenShareMediaAdapter_Tests.swift +++ b/StreamVideoTests/WebRTC/v2/PeerConnection/MediaAdapters/ScreenShareMediaAdapter_Tests.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import Combine diff --git a/StreamVideoTests/WebRTC/v2/PeerConnection/MediaAdapters/VideoMediaAdapter_Tests.swift b/StreamVideoTests/WebRTC/v2/PeerConnection/MediaAdapters/VideoMediaAdapter_Tests.swift index f95544ae1..09c5899fa 100644 --- a/StreamVideoTests/WebRTC/v2/PeerConnection/MediaAdapters/VideoMediaAdapter_Tests.swift +++ b/StreamVideoTests/WebRTC/v2/PeerConnection/MediaAdapters/VideoMediaAdapter_Tests.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import Combine diff --git a/StreamVideoTests/WebRTC/v2/StateMachine/Stages/WebRTCCoordinatorStateMachine_CleanUpStageTests.swift b/StreamVideoTests/WebRTC/v2/StateMachine/Stages/WebRTCCoordinatorStateMachine_CleanUpStageTests.swift index 5905b65be..ef61542f5 100644 --- a/StreamVideoTests/WebRTC/v2/StateMachine/Stages/WebRTCCoordinatorStateMachine_CleanUpStageTests.swift +++ b/StreamVideoTests/WebRTC/v2/StateMachine/Stages/WebRTCCoordinatorStateMachine_CleanUpStageTests.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // @testable import StreamVideo diff --git a/StreamVideoTests/WebRTC/v2/StateMachine/Stages/WebRTCCoordinatorStateMachine_ConnectedStageTests.swift b/StreamVideoTests/WebRTC/v2/StateMachine/Stages/WebRTCCoordinatorStateMachine_ConnectedStageTests.swift index d3a17b959..de5cb3aee 100644 --- a/StreamVideoTests/WebRTC/v2/StateMachine/Stages/WebRTCCoordinatorStateMachine_ConnectedStageTests.swift +++ b/StreamVideoTests/WebRTC/v2/StateMachine/Stages/WebRTCCoordinatorStateMachine_ConnectedStageTests.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // @testable import StreamVideo diff --git a/StreamVideoTests/WebRTC/v2/StateMachine/Stages/WebRTCCoordinatorStateMachine_ConnectingStageTests.swift b/StreamVideoTests/WebRTC/v2/StateMachine/Stages/WebRTCCoordinatorStateMachine_ConnectingStageTests.swift index 73aca950e..00ec8d498 100644 --- a/StreamVideoTests/WebRTC/v2/StateMachine/Stages/WebRTCCoordinatorStateMachine_ConnectingStageTests.swift +++ b/StreamVideoTests/WebRTC/v2/StateMachine/Stages/WebRTCCoordinatorStateMachine_ConnectingStageTests.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // @testable import StreamVideo diff --git a/StreamVideoTests/WebRTC/v2/StateMachine/Stages/WebRTCCoordinatorStateMachine_DisconnectedStageTests.swift b/StreamVideoTests/WebRTC/v2/StateMachine/Stages/WebRTCCoordinatorStateMachine_DisconnectedStageTests.swift index 42c31fc82..0836ed91e 100644 --- a/StreamVideoTests/WebRTC/v2/StateMachine/Stages/WebRTCCoordinatorStateMachine_DisconnectedStageTests.swift +++ b/StreamVideoTests/WebRTC/v2/StateMachine/Stages/WebRTCCoordinatorStateMachine_DisconnectedStageTests.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // @testable import StreamVideo diff --git a/StreamVideoTests/WebRTC/v2/StateMachine/Stages/WebRTCCoordinatorStateMachine_ErrorStageTests.swift b/StreamVideoTests/WebRTC/v2/StateMachine/Stages/WebRTCCoordinatorStateMachine_ErrorStageTests.swift index 6aba522c4..e912b0f3a 100644 --- a/StreamVideoTests/WebRTC/v2/StateMachine/Stages/WebRTCCoordinatorStateMachine_ErrorStageTests.swift +++ b/StreamVideoTests/WebRTC/v2/StateMachine/Stages/WebRTCCoordinatorStateMachine_ErrorStageTests.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // @testable import StreamVideo diff --git a/StreamVideoTests/WebRTC/v2/StateMachine/Stages/WebRTCCoordinatorStateMachine_FastReconnectedStageTests.swift b/StreamVideoTests/WebRTC/v2/StateMachine/Stages/WebRTCCoordinatorStateMachine_FastReconnectedStageTests.swift index 034631c04..013151966 100644 --- a/StreamVideoTests/WebRTC/v2/StateMachine/Stages/WebRTCCoordinatorStateMachine_FastReconnectedStageTests.swift +++ b/StreamVideoTests/WebRTC/v2/StateMachine/Stages/WebRTCCoordinatorStateMachine_FastReconnectedStageTests.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // @testable import StreamVideo diff --git a/StreamVideoTests/WebRTC/v2/StateMachine/Stages/WebRTCCoordinatorStateMachine_FastReconnectingStageTests.swift b/StreamVideoTests/WebRTC/v2/StateMachine/Stages/WebRTCCoordinatorStateMachine_FastReconnectingStageTests.swift index 023fdb808..9ef3ec179 100644 --- a/StreamVideoTests/WebRTC/v2/StateMachine/Stages/WebRTCCoordinatorStateMachine_FastReconnectingStageTests.swift +++ b/StreamVideoTests/WebRTC/v2/StateMachine/Stages/WebRTCCoordinatorStateMachine_FastReconnectingStageTests.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // @testable import StreamVideo diff --git a/StreamVideoTests/WebRTC/v2/StateMachine/Stages/WebRTCCoordinatorStateMachine_IdleStageTests.swift b/StreamVideoTests/WebRTC/v2/StateMachine/Stages/WebRTCCoordinatorStateMachine_IdleStageTests.swift index 6521e5e3d..5f125c3c6 100644 --- a/StreamVideoTests/WebRTC/v2/StateMachine/Stages/WebRTCCoordinatorStateMachine_IdleStageTests.swift +++ b/StreamVideoTests/WebRTC/v2/StateMachine/Stages/WebRTCCoordinatorStateMachine_IdleStageTests.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // @testable import StreamVideo diff --git a/StreamVideoTests/WebRTC/v2/StateMachine/Stages/WebRTCCoordinatorStateMachine_JoinedStageTests.swift b/StreamVideoTests/WebRTC/v2/StateMachine/Stages/WebRTCCoordinatorStateMachine_JoinedStageTests.swift index 1a0742239..1e555c1b6 100644 --- a/StreamVideoTests/WebRTC/v2/StateMachine/Stages/WebRTCCoordinatorStateMachine_JoinedStageTests.swift +++ b/StreamVideoTests/WebRTC/v2/StateMachine/Stages/WebRTCCoordinatorStateMachine_JoinedStageTests.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import Combine diff --git a/StreamVideoTests/WebRTC/v2/StateMachine/Stages/WebRTCCoordinatorStateMachine_LeavingStageTests.swift b/StreamVideoTests/WebRTC/v2/StateMachine/Stages/WebRTCCoordinatorStateMachine_LeavingStageTests.swift index 5b79cd286..a7dd568a0 100644 --- a/StreamVideoTests/WebRTC/v2/StateMachine/Stages/WebRTCCoordinatorStateMachine_LeavingStageTests.swift +++ b/StreamVideoTests/WebRTC/v2/StateMachine/Stages/WebRTCCoordinatorStateMachine_LeavingStageTests.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // @testable import StreamVideo diff --git a/StreamVideoTests/WebRTC/v2/StateMachine/Stages/WebRTCCoordinatorStateMachine_MigratedStageTests.swift b/StreamVideoTests/WebRTC/v2/StateMachine/Stages/WebRTCCoordinatorStateMachine_MigratedStageTests.swift index 151511eac..893be25e5 100644 --- a/StreamVideoTests/WebRTC/v2/StateMachine/Stages/WebRTCCoordinatorStateMachine_MigratedStageTests.swift +++ b/StreamVideoTests/WebRTC/v2/StateMachine/Stages/WebRTCCoordinatorStateMachine_MigratedStageTests.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // @testable import StreamVideo diff --git a/StreamVideoTests/WebRTC/v2/StateMachine/Stages/WebRTCCoordinatorStateMachine_MigratingStageTests.swift b/StreamVideoTests/WebRTC/v2/StateMachine/Stages/WebRTCCoordinatorStateMachine_MigratingStageTests.swift index 8e5452473..88b244e51 100644 --- a/StreamVideoTests/WebRTC/v2/StateMachine/Stages/WebRTCCoordinatorStateMachine_MigratingStageTests.swift +++ b/StreamVideoTests/WebRTC/v2/StateMachine/Stages/WebRTCCoordinatorStateMachine_MigratingStageTests.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // @testable import StreamVideo diff --git a/StreamVideoTests/WebRTC/v2/StateMachine/Stages/WebRTCCoordinatorStateMachine_RejoiningStageTests.swift b/StreamVideoTests/WebRTC/v2/StateMachine/Stages/WebRTCCoordinatorStateMachine_RejoiningStageTests.swift index ef7988f1f..6e5fe282d 100644 --- a/StreamVideoTests/WebRTC/v2/StateMachine/Stages/WebRTCCoordinatorStateMachine_RejoiningStageTests.swift +++ b/StreamVideoTests/WebRTC/v2/StateMachine/Stages/WebRTCCoordinatorStateMachine_RejoiningStageTests.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // @testable import StreamVideo diff --git a/StreamVideoTests/WebRTC/v2/StateMachine/WebRTCCoordinator_StateMachineTests.swift b/StreamVideoTests/WebRTC/v2/StateMachine/WebRTCCoordinator_StateMachineTests.swift index ce5e11cb6..1fbeaee10 100644 --- a/StreamVideoTests/WebRTC/v2/StateMachine/WebRTCCoordinator_StateMachineTests.swift +++ b/StreamVideoTests/WebRTC/v2/StateMachine/WebRTCCoordinator_StateMachineTests.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // @testable import StreamVideo diff --git a/StreamVideoTests/WebRTC/v2/WebRTCConfiguration_Tests.swift b/StreamVideoTests/WebRTC/v2/WebRTCConfiguration_Tests.swift index c2d1e2c11..96f387d7d 100644 --- a/StreamVideoTests/WebRTC/v2/WebRTCConfiguration_Tests.swift +++ b/StreamVideoTests/WebRTC/v2/WebRTCConfiguration_Tests.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // @testable import StreamVideo diff --git a/StreamVideoTests/WebRTC/v2/WebRTCMigrationStatusObserver_Tests.swift b/StreamVideoTests/WebRTC/v2/WebRTCMigrationStatusObserver_Tests.swift index 7f74ffbe5..0748f638a 100644 --- a/StreamVideoTests/WebRTC/v2/WebRTCMigrationStatusObserver_Tests.swift +++ b/StreamVideoTests/WebRTC/v2/WebRTCMigrationStatusObserver_Tests.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import Foundation diff --git a/StreamVideoTests/WebRTC/v2/WebRTCStatsReporter_Tests.swift b/StreamVideoTests/WebRTC/v2/WebRTCStatsReporter_Tests.swift index f3b2de18b..f2f80b8de 100644 --- a/StreamVideoTests/WebRTC/v2/WebRTCStatsReporter_Tests.swift +++ b/StreamVideoTests/WebRTC/v2/WebRTCStatsReporter_Tests.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import Foundation diff --git a/StreamVideoTests/WebSocketClient/BackgroundTaskScheduler_Tests.swift b/StreamVideoTests/WebSocketClient/BackgroundTaskScheduler_Tests.swift index 22915b129..8517377b0 100644 --- a/StreamVideoTests/WebSocketClient/BackgroundTaskScheduler_Tests.swift +++ b/StreamVideoTests/WebSocketClient/BackgroundTaskScheduler_Tests.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // @testable import StreamVideo diff --git a/StreamVideoTests/WebSocketClient/EventNotificationCenter_Tests.swift b/StreamVideoTests/WebSocketClient/EventNotificationCenter_Tests.swift index 129d99d5f..683d6e224 100644 --- a/StreamVideoTests/WebSocketClient/EventNotificationCenter_Tests.swift +++ b/StreamVideoTests/WebSocketClient/EventNotificationCenter_Tests.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import CoreData diff --git a/StreamVideoTests/WebSocketClient/WebSocketClient_Tests.swift b/StreamVideoTests/WebSocketClient/WebSocketClient_Tests.swift index bf483b62f..7b2b2b56c 100644 --- a/StreamVideoTests/WebSocketClient/WebSocketClient_Tests.swift +++ b/StreamVideoTests/WebSocketClient/WebSocketClient_Tests.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // @testable import StreamVideo diff --git a/StreamVideoTests/WebSocketClient/WebSocketConnectionState_Tests.swift b/StreamVideoTests/WebSocketClient/WebSocketConnectionState_Tests.swift index 100b5c1c3..d801fce99 100644 --- a/StreamVideoTests/WebSocketClient/WebSocketConnectionState_Tests.swift +++ b/StreamVideoTests/WebSocketClient/WebSocketConnectionState_Tests.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // @testable import StreamVideo diff --git a/StreamVideoTests/WebSocketClient/WebSocketPingController_Tests.swift b/StreamVideoTests/WebSocketClient/WebSocketPingController_Tests.swift index efaf32508..67395eedb 100644 --- a/StreamVideoTests/WebSocketClient/WebSocketPingController_Tests.swift +++ b/StreamVideoTests/WebSocketClient/WebSocketPingController_Tests.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // @testable import StreamVideo diff --git a/StreamVideoTests/WebSockets/Client/DefaultRetryStrategyTests.swift b/StreamVideoTests/WebSockets/Client/DefaultRetryStrategyTests.swift index c326df368..137e3bb42 100644 --- a/StreamVideoTests/WebSockets/Client/DefaultRetryStrategyTests.swift +++ b/StreamVideoTests/WebSockets/Client/DefaultRetryStrategyTests.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // @testable import StreamVideo diff --git a/StreamVideoTests/WebSockets/Events/EventTests.swift b/StreamVideoTests/WebSockets/Events/EventTests.swift index df4cc3d41..d39f23206 100644 --- a/StreamVideoTests/WebSockets/Events/EventTests.swift +++ b/StreamVideoTests/WebSockets/Events/EventTests.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import Foundation diff --git a/StreamVideoTests/protobuf/SignalServer_Tests.swift b/StreamVideoTests/protobuf/SignalServer_Tests.swift index 1d115b857..48a673efd 100644 --- a/StreamVideoTests/protobuf/SignalServer_Tests.swift +++ b/StreamVideoTests/protobuf/SignalServer_Tests.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // @testable import StreamVideo diff --git a/StreamVideoUIKitTests/CallViewController_Tests.swift b/StreamVideoUIKitTests/CallViewController_Tests.swift index 97c9ed354..1a1966849 100644 --- a/StreamVideoUIKitTests/CallViewController_Tests.swift +++ b/StreamVideoUIKitTests/CallViewController_Tests.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import SnapshotTesting diff --git a/SwiftUIDemoAppUITests/Pages/CallDetailsPage.swift b/SwiftUIDemoAppUITests/Pages/CallDetailsPage.swift index 0785923dd..be6119750 100644 --- a/SwiftUIDemoAppUITests/Pages/CallDetailsPage.swift +++ b/SwiftUIDemoAppUITests/Pages/CallDetailsPage.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import XCTest diff --git a/SwiftUIDemoAppUITests/Pages/CallPage.swift b/SwiftUIDemoAppUITests/Pages/CallPage.swift index 8067885c5..a350e4037 100644 --- a/SwiftUIDemoAppUITests/Pages/CallPage.swift +++ b/SwiftUIDemoAppUITests/Pages/CallPage.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import XCTest diff --git a/SwiftUIDemoAppUITests/Pages/LobbyPage.swift b/SwiftUIDemoAppUITests/Pages/LobbyPage.swift index 3f4319be4..492aee5b4 100644 --- a/SwiftUIDemoAppUITests/Pages/LobbyPage.swift +++ b/SwiftUIDemoAppUITests/Pages/LobbyPage.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import XCTest diff --git a/SwiftUIDemoAppUITests/Pages/LoginPage.swift b/SwiftUIDemoAppUITests/Pages/LoginPage.swift index 64a7e107c..6fc88bf57 100644 --- a/SwiftUIDemoAppUITests/Pages/LoginPage.swift +++ b/SwiftUIDemoAppUITests/Pages/LoginPage.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import XCTest diff --git a/SwiftUIDemoAppUITests/Robots/UserRobot+Asserts.swift b/SwiftUIDemoAppUITests/Robots/UserRobot+Asserts.swift index 132a83fe5..ee732069c 100644 --- a/SwiftUIDemoAppUITests/Robots/UserRobot+Asserts.swift +++ b/SwiftUIDemoAppUITests/Robots/UserRobot+Asserts.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import XCTest diff --git a/SwiftUIDemoAppUITests/Robots/UserRobot.swift b/SwiftUIDemoAppUITests/Robots/UserRobot.swift index f29340ca3..dd6ed5a66 100644 --- a/SwiftUIDemoAppUITests/Robots/UserRobot.swift +++ b/SwiftUIDemoAppUITests/Robots/UserRobot.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import XCTest diff --git a/SwiftUIDemoAppUITests/StreamVideoUITests.swift b/SwiftUIDemoAppUITests/StreamVideoUITests.swift index c149cb11b..15be132f7 100644 --- a/SwiftUIDemoAppUITests/StreamVideoUITests.swift +++ b/SwiftUIDemoAppUITests/StreamVideoUITests.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // @_exported import StreamSwiftTestHelpers diff --git a/SwiftUIDemoAppUITests/Tests/Authentication_Tests.swift b/SwiftUIDemoAppUITests/Tests/Authentication_Tests.swift index cadb27a03..fd9f4f367 100644 --- a/SwiftUIDemoAppUITests/Tests/Authentication_Tests.swift +++ b/SwiftUIDemoAppUITests/Tests/Authentication_Tests.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import XCTest diff --git a/SwiftUIDemoAppUITests/Tests/CallLifecycleTests.swift b/SwiftUIDemoAppUITests/Tests/CallLifecycleTests.swift index 59e13d6d8..e9bd20be5 100644 --- a/SwiftUIDemoAppUITests/Tests/CallLifecycleTests.swift +++ b/SwiftUIDemoAppUITests/Tests/CallLifecycleTests.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import XCTest diff --git a/SwiftUIDemoAppUITests/Tests/CallViewsTests.swift b/SwiftUIDemoAppUITests/Tests/CallViewsTests.swift index 2735b01ab..ca0f8f515 100644 --- a/SwiftUIDemoAppUITests/Tests/CallViewsTests.swift +++ b/SwiftUIDemoAppUITests/Tests/CallViewsTests.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import XCTest diff --git a/SwiftUIDemoAppUITests/Tests/DeeplinkTests.swift b/SwiftUIDemoAppUITests/Tests/DeeplinkTests.swift index 3a57bdd03..48d7cdde8 100644 --- a/SwiftUIDemoAppUITests/Tests/DeeplinkTests.swift +++ b/SwiftUIDemoAppUITests/Tests/DeeplinkTests.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import XCTest diff --git a/SwiftUIDemoAppUITests/Tests/LobbyTests.swift b/SwiftUIDemoAppUITests/Tests/LobbyTests.swift index c987ef23b..d36eb17db 100644 --- a/SwiftUIDemoAppUITests/Tests/LobbyTests.swift +++ b/SwiftUIDemoAppUITests/Tests/LobbyTests.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import XCTest diff --git a/SwiftUIDemoAppUITests/Tests/ParticipantActionsTests.swift b/SwiftUIDemoAppUITests/Tests/ParticipantActionsTests.swift index 93bd5d732..37e052ab1 100644 --- a/SwiftUIDemoAppUITests/Tests/ParticipantActionsTests.swift +++ b/SwiftUIDemoAppUITests/Tests/ParticipantActionsTests.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import XCTest diff --git a/SwiftUIDemoAppUITests/Tests/ReconnectionTests.swift b/SwiftUIDemoAppUITests/Tests/ReconnectionTests.swift index 1390a2bbb..504579d39 100644 --- a/SwiftUIDemoAppUITests/Tests/ReconnectionTests.swift +++ b/SwiftUIDemoAppUITests/Tests/ReconnectionTests.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import XCTest diff --git a/SwiftUIDemoAppUITests/Tests/RingProcessTests.swift b/SwiftUIDemoAppUITests/Tests/RingProcessTests.swift index 8ed459e2c..12c7e7a21 100644 --- a/SwiftUIDemoAppUITests/Tests/RingProcessTests.swift +++ b/SwiftUIDemoAppUITests/Tests/RingProcessTests.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import XCTest diff --git a/SwiftUIDemoAppUITests/Tests/StreamTestCase.swift b/SwiftUIDemoAppUITests/Tests/StreamTestCase.swift index ffae99617..2b3cf3e2a 100644 --- a/SwiftUIDemoAppUITests/Tests/StreamTestCase.swift +++ b/SwiftUIDemoAppUITests/Tests/StreamTestCase.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import XCTest diff --git a/TestTools/Robots/ParticipantRobot.swift b/TestTools/Robots/ParticipantRobot.swift index 6f18daa3f..7193d5cc2 100644 --- a/TestTools/Robots/ParticipantRobot.swift +++ b/TestTools/Robots/ParticipantRobot.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import XCTest diff --git a/TestTools/Robots/Sinatra.swift b/TestTools/Robots/Sinatra.swift index da0f72c6a..87aa4aab4 100644 --- a/TestTools/Robots/Sinatra.swift +++ b/TestTools/Robots/Sinatra.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import Foundation diff --git a/TestTools/TestData/ImageFactory.swift b/TestTools/TestData/ImageFactory.swift index c02d5af8b..4c32cc696 100644 --- a/TestTools/TestData/ImageFactory.swift +++ b/TestTools/TestData/ImageFactory.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import Foundation diff --git a/TestTools/TestData/LaunchArgument.swift b/TestTools/TestData/LaunchArgument.swift index 4ee2c817f..89f80dee0 100644 --- a/TestTools/TestData/LaunchArgument.swift +++ b/TestTools/TestData/LaunchArgument.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import Foundation diff --git a/TestTools/TestData/StreamVideoTestResources.swift b/TestTools/TestData/StreamVideoTestResources.swift index 49b380358..506105f29 100644 --- a/TestTools/TestData/StreamVideoTestResources.swift +++ b/TestTools/TestData/StreamVideoTestResources.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import Foundation diff --git a/TestTools/TestData/ViewFactory.swift b/TestTools/TestData/ViewFactory.swift index 6f5aac51c..93d25b93a 100644 --- a/TestTools/TestData/ViewFactory.swift +++ b/TestTools/TestData/ViewFactory.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import SwiftUI diff --git a/TestTools/UITests/Safari.swift b/TestTools/UITests/Safari.swift index 446cecf15..9465c5ce0 100644 --- a/TestTools/UITests/Safari.swift +++ b/TestTools/UITests/Safari.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import Foundation diff --git a/TestTools/UITests/XCUIApplication+KeyboardIntroduction.swift b/TestTools/UITests/XCUIApplication+KeyboardIntroduction.swift index 25c9f8298..622dbd58b 100644 --- a/TestTools/UITests/XCUIApplication+KeyboardIntroduction.swift +++ b/TestTools/UITests/XCUIApplication+KeyboardIntroduction.swift @@ -1,5 +1,5 @@ // -// Copyright © 2024 Stream.io Inc. All rights reserved. +// Copyright © 2025 Stream.io Inc. All rights reserved. // import Foundation From b36079f4e770a5c2012ba6042d9e571e26939c08 Mon Sep 17 00:00:00 2001 From: Martin Mitrevski Date: Fri, 3 Jan 2025 09:00:23 +0100 Subject: [PATCH 3/4] Removed unused files --- .../CallButtonView/CallButtonView.swift | 25 ------ .../Controls/DemoAppCallControlsView.swift | 76 ------------------- 2 files changed, 101 deletions(-) delete mode 100644 DemoApp/Sources/Controls/CallButtonView/CallButtonView.swift delete mode 100644 DemoApp/Sources/Controls/DemoAppCallControlsView.swift diff --git a/DemoApp/Sources/Controls/CallButtonView/CallButtonView.swift b/DemoApp/Sources/Controls/CallButtonView/CallButtonView.swift deleted file mode 100644 index 471d16b99..000000000 --- a/DemoApp/Sources/Controls/CallButtonView/CallButtonView.swift +++ /dev/null @@ -1,25 +0,0 @@ -// -// Copyright © 2024 Stream.io Inc. All rights reserved. -// - -import StreamVideo -import StreamVideoSwiftUI -import SwiftUI - -struct CallButtonView: View { - @Injected(\.appearance) var appearance - - var title: String - var maxWidth: CGFloat? - var isDisabled: Bool - - var body: some View { - Text(title) - .bold() - .foregroundColor(.white) - .padding(.all, 12) - .frame(maxWidth: maxWidth ?? .infinity) - .background(isDisabled ? appearance.colors.lightGray : appearance.colors.primaryButtonBackground) - .cornerRadius(8) - } -} diff --git a/DemoApp/Sources/Controls/DemoAppCallControlsView.swift b/DemoApp/Sources/Controls/DemoAppCallControlsView.swift deleted file mode 100644 index 3996e044d..000000000 --- a/DemoApp/Sources/Controls/DemoAppCallControlsView.swift +++ /dev/null @@ -1,76 +0,0 @@ -// -// Copyright © 2024 Stream.io Inc. All rights reserved. -// - -import ReplayKit -import StreamVideo -import StreamVideoSwiftUI -import SwiftUI - -struct DemoAppCallControlsView: View { - - @Injected(\.streamVideo) var streamVideo - - private let size: CGFloat = 50 - - @ObservedObject var viewModel: CallViewModel - - @Injected(\.images) var images - @Injected(\.colors) var colors - - public init(viewModel: CallViewModel) { - self.viewModel = viewModel - } - - public var body: some View { - EqualSpacingHStack { - [ - VideoIconView(viewModel: viewModel).asAnyView, - MicrophoneIconView(viewModel: viewModel).asAnyView, - ToggleCameraIconView(viewModel: viewModel).asAnyView, - BroadcastIconView( - viewModel: viewModel, - preferredExtension: "io.getstream.iOS.VideoDemoApp.ScreenSharing" - ).asAnyView, - HangUpIconView(viewModel: viewModel).asAnyView - ] - } - .frame(maxWidth: .infinity) - .frame(height: 85) - .background( - colors.callControlsBackground - .edgesIgnoringSafeArea(.all) - ) - .overlay( - VStack { - colors.callControlsBackground - .frame(height: 30) - .cornerRadius(24) - Spacer() - } - .offset(y: -15) - ) - } -} - -struct EqualSpacingHStack: View { - - var views: () -> [AnyView] - - var body: some View { - HStack(alignment: .top) { - ForEach(0.. Date: Fri, 3 Jan 2025 10:13:07 +0100 Subject: [PATCH 4/4] Reverted the proto change --- .../protobuf/sfu/models/models.pb.swift | 29 ------------------- 1 file changed, 29 deletions(-) diff --git a/Sources/StreamVideo/protobuf/sfu/models/models.pb.swift b/Sources/StreamVideo/protobuf/sfu/models/models.pb.swift index 8397de0b5..669f407d0 100644 --- a/Sources/StreamVideo/protobuf/sfu/models/models.pb.swift +++ b/Sources/StreamVideo/protobuf/sfu/models/models.pb.swift @@ -1081,22 +1081,9 @@ struct Stream_Video_Sfu_Models_TrackInfo { var muted: Bool = false - var codec: Stream_Video_Sfu_Models_Codec { - get {return _codec ?? Stream_Video_Sfu_Models_Codec()} - set {_codec = newValue} - } - /// Returns true if `codec` has been explicitly set. - var hasCodec: Bool {return self._codec != nil} - /// Clears the value of `codec`. Subsequent reads from it will return its default value. - mutating func clearCodec() {self._codec = nil} - - var publishOptionID: Int32 = 0 - var unknownFields = SwiftProtobuf.UnknownStorage() init() {} - - fileprivate var _codec: Stream_Video_Sfu_Models_Codec? = nil } struct Stream_Video_Sfu_Models_Error { @@ -2122,8 +2109,6 @@ extension Stream_Video_Sfu_Models_TrackInfo: SwiftProtobuf.Message, SwiftProtobu 8: .same(proto: "stereo"), 9: .same(proto: "red"), 10: .same(proto: "muted"), - 11: .same(proto: "codec"), - 12: .standard(proto: "publish_option_id"), ] mutating func decodeMessage(decoder: inout D) throws { @@ -2140,18 +2125,12 @@ extension Stream_Video_Sfu_Models_TrackInfo: SwiftProtobuf.Message, SwiftProtobu case 8: try { try decoder.decodeSingularBoolField(value: &self.stereo) }() case 9: try { try decoder.decodeSingularBoolField(value: &self.red) }() case 10: try { try decoder.decodeSingularBoolField(value: &self.muted) }() - case 11: try { try decoder.decodeSingularMessageField(value: &self._codec) }() - case 12: try { try decoder.decodeSingularInt32Field(value: &self.publishOptionID) }() default: break } } } func traverse(visitor: inout V) throws { - // The use of inline closures is to circumvent an issue where the compiler - // allocates stack space for every if/case branch local when no optimizations - // are enabled. https://github.com/apple/swift-protobuf/issues/1034 and - // https://github.com/apple/swift-protobuf/issues/1182 if !self.trackID.isEmpty { try visitor.visitSingularStringField(value: self.trackID, fieldNumber: 1) } @@ -2176,12 +2155,6 @@ extension Stream_Video_Sfu_Models_TrackInfo: SwiftProtobuf.Message, SwiftProtobu if self.muted != false { try visitor.visitSingularBoolField(value: self.muted, fieldNumber: 10) } - try { if let v = self._codec { - try visitor.visitSingularMessageField(value: v, fieldNumber: 11) - } }() - if self.publishOptionID != 0 { - try visitor.visitSingularInt32Field(value: self.publishOptionID, fieldNumber: 12) - } try unknownFields.traverse(visitor: &visitor) } @@ -2194,8 +2167,6 @@ extension Stream_Video_Sfu_Models_TrackInfo: SwiftProtobuf.Message, SwiftProtobu if lhs.stereo != rhs.stereo {return false} if lhs.red != rhs.red {return false} if lhs.muted != rhs.muted {return false} - if lhs._codec != rhs._codec {return false} - if lhs.publishOptionID != rhs.publishOptionID {return false} if lhs.unknownFields != rhs.unknownFields {return false} return true }