48 lines
1.5 KiB
Rust
48 lines
1.5 KiB
Rust
use serde::{self, Serialize};
|
|
use ts_rs::TS;
|
|
|
|
use crate::app_state::database::models::{
|
|
DocumentVersion, DocumentVersionWithoutContent, VaultUpdateId,
|
|
};
|
|
|
|
/// Response to a ping request.
|
|
#[derive(TS, Debug, Clone, Serialize)]
|
|
#[serde(rename_all = "camelCase")]
|
|
#[ts(export)]
|
|
pub struct PingResponse {
|
|
/// Semantic version of the server.
|
|
pub server_version: String,
|
|
|
|
/// Whether the client is authenticated based on the sent Authorization
|
|
/// header.
|
|
pub is_authenticated: bool,
|
|
|
|
/// List of file extensions that are allowed to be merged.
|
|
pub mergeable_file_extensions: Vec<String>,
|
|
}
|
|
|
|
/// Response to a fetch latest documents request.
|
|
#[derive(TS, Debug, Clone, Serialize)]
|
|
#[serde(rename_all = "camelCase")]
|
|
#[ts(export)]
|
|
pub struct FetchLatestDocumentsResponse {
|
|
pub latest_documents: Vec<DocumentVersionWithoutContent>,
|
|
|
|
/// The update ID of the latest document in the response.
|
|
pub last_update_id: VaultUpdateId,
|
|
}
|
|
|
|
/// Response to an update document request.
|
|
#[derive(TS, Debug, Clone, Serialize)]
|
|
#[serde(tag = "type")]
|
|
#[ts(export)]
|
|
pub enum DocumentUpdateResponse {
|
|
/// Returned when the created/updated document's content is the same as was
|
|
/// sent in the create/update request and thus the response doesn't contain
|
|
/// the content because the client must already have it.
|
|
FastForwardUpdate(DocumentVersionWithoutContent),
|
|
|
|
/// Returned when the created/updated document's content is different from
|
|
/// what was sent in the create/update request.
|
|
MergingUpdate(DocumentVersion),
|
|
}
|