Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Changelog

## 1.11.1 (unreleased)

* Fix `SyncStreamStatus` fields not being visible.

## 1.11.0

* Add support for [sync streams](https://docs.powersync.com/sync/streams/overview).
Expand Down
4 changes: 2 additions & 2 deletions Sources/PowerSync/Protocol/sync/SyncStatusData.swift
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ public protocol SyncStatus: SyncStatusData, Sendable {
/// Current information about a ``SyncStreamSubscription``.
public struct SyncStreamStatus {
/// If the sync status is currently downloading, information about download progress related to this stream.
let progress: ProgressWithOperations?
public let progress: ProgressWithOperations?
/// The ``SyncSubscriptionDescription`` providing information about the subscription.
let subscription: SyncSubscriptionDescription
public let subscription: SyncSubscriptionDescription
}