jacquard-api 0.11.1

Generated AT Protocol API bindings for Jacquard
Documentation
// @generated by jacquard-lexicon. DO NOT EDIT.
//
// Lexicon: app.bsky.contact.importContacts
//
// This file was automatically generated from Lexicon schemas.
// Any manual changes will be overwritten on the next regeneration.

#[allow(unused_imports)]
use alloc::collections::BTreeMap;

#[allow(unused_imports)]
use core::marker::PhantomData;
use jacquard_common::CowStr;
use jacquard_derive::{IntoStatic, lexicon, open_union};
use serde::{Serialize, Deserialize};
use crate::app_bsky::contact::MatchAndContactIndex;

#[lexicon]
#[derive(Serialize, Deserialize, Debug, Clone, PartialEq, Eq, IntoStatic)]
#[serde(rename_all = "camelCase")]
pub struct ImportContacts<'a> {
    ///List of phone numbers in global E.164 format (e.g., '+12125550123'). Phone numbers that cannot be normalized into a valid phone number will be discarded. Should not repeat the 'phone' input used in `app.bsky.contact.verifyPhone`.
    #[serde(borrow)]
    pub contacts: Vec<CowStr<'a>>,
    ///JWT to authenticate the call. Use the JWT received as a response to the call to `app.bsky.contact.verifyPhone`.
    #[serde(borrow)]
    pub token: CowStr<'a>,
}


#[lexicon]
#[derive(Serialize, Deserialize, Debug, Clone, PartialEq, Eq, IntoStatic)]
#[serde(rename_all = "camelCase")]
pub struct ImportContactsOutput<'a> {
    ///The users that matched during import and their indexes on the input contacts, so the client can correlate with its local list.
    #[serde(borrow)]
    pub matches_and_contact_indexes: Vec<MatchAndContactIndex<'a>>,
}


#[open_union]
#[derive(
    Serialize,
    Deserialize,
    Debug,
    Clone,
    PartialEq,
    Eq,
    thiserror::Error,
    miette::Diagnostic,
    IntoStatic
)]

#[serde(tag = "error", content = "message")]
#[serde(bound(deserialize = "'de: 'a"))]
pub enum ImportContactsError<'a> {
    #[serde(rename = "InvalidDid")]
    InvalidDid(Option<CowStr<'a>>),
    #[serde(rename = "InvalidContacts")]
    InvalidContacts(Option<CowStr<'a>>),
    #[serde(rename = "TooManyContacts")]
    TooManyContacts(Option<CowStr<'a>>),
    #[serde(rename = "InvalidToken")]
    InvalidToken(Option<CowStr<'a>>),
    #[serde(rename = "InternalError")]
    InternalError(Option<CowStr<'a>>),
}

impl core::fmt::Display for ImportContactsError<'_> {
    fn fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result {
        match self {
            Self::InvalidDid(msg) => {
                write!(f, "InvalidDid")?;
                if let Some(msg) = msg {
                    write!(f, ": {}", msg)?;
                }
                Ok(())
            }
            Self::InvalidContacts(msg) => {
                write!(f, "InvalidContacts")?;
                if let Some(msg) = msg {
                    write!(f, ": {}", msg)?;
                }
                Ok(())
            }
            Self::TooManyContacts(msg) => {
                write!(f, "TooManyContacts")?;
                if let Some(msg) = msg {
                    write!(f, ": {}", msg)?;
                }
                Ok(())
            }
            Self::InvalidToken(msg) => {
                write!(f, "InvalidToken")?;
                if let Some(msg) = msg {
                    write!(f, ": {}", msg)?;
                }
                Ok(())
            }
            Self::InternalError(msg) => {
                write!(f, "InternalError")?;
                if let Some(msg) = msg {
                    write!(f, ": {}", msg)?;
                }
                Ok(())
            }
            Self::Unknown(err) => write!(f, "Unknown error: {:?}", err),
        }
    }
}

/// Response type for app.bsky.contact.importContacts
pub struct ImportContactsResponse;
impl jacquard_common::xrpc::XrpcResp for ImportContactsResponse {
    const NSID: &'static str = "app.bsky.contact.importContacts";
    const ENCODING: &'static str = "application/json";
    type Output<'de> = ImportContactsOutput<'de>;
    type Err<'de> = ImportContactsError<'de>;
}

impl<'a> jacquard_common::xrpc::XrpcRequest for ImportContacts<'a> {
    const NSID: &'static str = "app.bsky.contact.importContacts";
    const METHOD: jacquard_common::xrpc::XrpcMethod = jacquard_common::xrpc::XrpcMethod::Procedure(
        "application/json",
    );
    type Response = ImportContactsResponse;
}

/// Endpoint type for app.bsky.contact.importContacts
pub struct ImportContactsRequest;
impl jacquard_common::xrpc::XrpcEndpoint for ImportContactsRequest {
    const PATH: &'static str = "/xrpc/app.bsky.contact.importContacts";
    const METHOD: jacquard_common::xrpc::XrpcMethod = jacquard_common::xrpc::XrpcMethod::Procedure(
        "application/json",
    );
    type Request<'de> = ImportContacts<'de>;
    type Response = ImportContactsResponse;
}

pub mod import_contacts_state {

    pub use crate::builder_types::{Set, Unset, IsSet, IsUnset};
    #[allow(unused)]
    use ::core::marker::PhantomData;
    mod sealed {
        pub trait Sealed {}
    }
    /// State trait tracking which required fields have been set
    pub trait State: sealed::Sealed {
        type Token;
        type Contacts;
    }
    /// Empty state - all required fields are unset
    pub struct Empty(());
    impl sealed::Sealed for Empty {}
    impl State for Empty {
        type Token = Unset;
        type Contacts = Unset;
    }
    ///State transition - sets the `token` field to Set
    pub struct SetToken<S: State = Empty>(PhantomData<fn() -> S>);
    impl<S: State> sealed::Sealed for SetToken<S> {}
    impl<S: State> State for SetToken<S> {
        type Token = Set<members::token>;
        type Contacts = S::Contacts;
    }
    ///State transition - sets the `contacts` field to Set
    pub struct SetContacts<S: State = Empty>(PhantomData<fn() -> S>);
    impl<S: State> sealed::Sealed for SetContacts<S> {}
    impl<S: State> State for SetContacts<S> {
        type Token = S::Token;
        type Contacts = Set<members::contacts>;
    }
    /// Marker types for field names
    #[allow(non_camel_case_types)]
    pub mod members {
        ///Marker type for the `token` field
        pub struct token(());
        ///Marker type for the `contacts` field
        pub struct contacts(());
    }
}

/// Builder for constructing an instance of this type
pub struct ImportContactsBuilder<'a, S: import_contacts_state::State> {
    _state: PhantomData<fn() -> S>,
    _fields: (Option<Vec<CowStr<'a>>>, Option<CowStr<'a>>),
    _lifetime: PhantomData<&'a ()>,
}

impl<'a> ImportContacts<'a> {
    /// Create a new builder for this type
    pub fn new() -> ImportContactsBuilder<'a, import_contacts_state::Empty> {
        ImportContactsBuilder::new()
    }
}

impl<'a> ImportContactsBuilder<'a, import_contacts_state::Empty> {
    /// Create a new builder with all fields unset
    pub fn new() -> Self {
        ImportContactsBuilder {
            _state: PhantomData,
            _fields: (None, None),
            _lifetime: PhantomData,
        }
    }
}

impl<'a, S> ImportContactsBuilder<'a, S>
where
    S: import_contacts_state::State,
    S::Contacts: import_contacts_state::IsUnset,
{
    /// Set the `contacts` field (required)
    pub fn contacts(
        mut self,
        value: impl Into<Vec<CowStr<'a>>>,
    ) -> ImportContactsBuilder<'a, import_contacts_state::SetContacts<S>> {
        self._fields.0 = Option::Some(value.into());
        ImportContactsBuilder {
            _state: PhantomData,
            _fields: self._fields,
            _lifetime: PhantomData,
        }
    }
}

impl<'a, S> ImportContactsBuilder<'a, S>
where
    S: import_contacts_state::State,
    S::Token: import_contacts_state::IsUnset,
{
    /// Set the `token` field (required)
    pub fn token(
        mut self,
        value: impl Into<CowStr<'a>>,
    ) -> ImportContactsBuilder<'a, import_contacts_state::SetToken<S>> {
        self._fields.1 = Option::Some(value.into());
        ImportContactsBuilder {
            _state: PhantomData,
            _fields: self._fields,
            _lifetime: PhantomData,
        }
    }
}

impl<'a, S> ImportContactsBuilder<'a, S>
where
    S: import_contacts_state::State,
    S::Token: import_contacts_state::IsSet,
    S::Contacts: import_contacts_state::IsSet,
{
    /// Build the final struct
    pub fn build(self) -> ImportContacts<'a> {
        ImportContacts {
            contacts: self._fields.0.unwrap(),
            token: self._fields.1.unwrap(),
            extra_data: Default::default(),
        }
    }
    /// Build the final struct with custom extra_data
    pub fn build_with_data(
        self,
        extra_data: BTreeMap<
            jacquard_common::deps::smol_str::SmolStr,
            jacquard_common::types::value::Data<'a>,
        >,
    ) -> ImportContacts<'a> {
        ImportContacts {
            contacts: self._fields.0.unwrap(),
            token: self._fields.1.unwrap(),
            extra_data: Some(extra_data),
        }
    }
}