proto_blue_api/generated/com/atproto/sync/notifyOfUpdate.rs
1// Generated by atproto-codegen. Do not edit.
2//! Lexicon: com.atproto.sync.notifyOfUpdate
3
4use serde::{Deserialize, Serialize};
5
6/// Notify a crawling service of a recent update, and that crawling should resume. Intended use is after a gap between repo stream events caused the crawling service to disconnect. Does not require auth; implemented by Relay. DEPRECATED: just use com.atproto.sync.requestCrawl
7/// XRPC Procedure: com.atproto.sync.notifyOfUpdate
8#[derive(Debug, Clone, Serialize, Deserialize)]
9#[serde(rename_all = "camelCase")]
10pub struct Input {
11 pub hostname: String,
12}