chore: bump client api (#4804)

* chore: bump client api

* chore: bump client api

* chore: bump client api
This commit is contained in:
Nathan.fooo
2024-03-04 14:05:04 +08:00
committed by GitHub
parent b236afd0c3
commit f8962edfd7
14 changed files with 104 additions and 123 deletions

View File

@ -3,7 +3,7 @@ use std::sync::Arc;
use std::time::Duration;
use anyhow::Error;
use client_api::collab_sync::collab_msg::CollabMessage;
use client_api::collab_sync::collab_msg::ServerCollabMessage;
use client_api::entity::UserMessage;
use client_api::notify::{TokenState, TokenStateReceiver};
use client_api::ws::{
@ -203,7 +203,7 @@ impl AppFlowyServer for AppFlowyCloudServer {
_object_id: &str,
) -> FutureResult<
Option<(
Arc<WebSocketChannel<CollabMessage>>,
Arc<WebSocketChannel<ServerCollabMessage>>,
WSConnectStateReceiver,
bool,
)>,

View File

@ -5,7 +5,7 @@ use flowy_storage::ObjectStorageService;
use std::sync::Arc;
use anyhow::Error;
use client_api::collab_sync::collab_msg::CollabMessage;
use client_api::collab_sync::collab_msg::ServerCollabMessage;
use parking_lot::RwLock;
use tokio_stream::wrappers::WatchStream;
#[cfg(feature = "enable_supabase")]
@ -125,7 +125,7 @@ pub trait AppFlowyServer: Send + Sync + 'static {
_object_id: &str,
) -> FutureResult<
Option<(
Arc<WebSocketChannel<CollabMessage>>,
Arc<WebSocketChannel<ServerCollabMessage>>,
WSConnectStateReceiver,
bool,
)>,