jacquard-api 0.12.0-beta.1

Generated AT Protocol API bindings for Jacquard
Documentation
// @generated by jacquard-lexicon. DO NOT EDIT.
//
// Lexicon: sh.tangled.repo.merge
//
// 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, BosStr, DefaultStr, FromStaticStr};
use jacquard_common::deps::smol_str::SmolStr;
use jacquard_common::types::string::Did;
use jacquard_common::types::value::Data;
use jacquard_derive::IntoStatic;
use serde::{Serialize, Deserialize};

#[derive(Serialize, Deserialize, Debug, Clone, PartialEq, Eq, IntoStatic)]
#[serde(rename_all = "camelCase", bound(deserialize = "S: Deserialize<'de> + BosStr"))]
pub struct Merge<S: BosStr = DefaultStr> {
    ///Author email for the merge commit
    #[serde(skip_serializing_if = "Option::is_none")]
    pub author_email: Option<S>,
    ///Author name for the merge commit
    #[serde(skip_serializing_if = "Option::is_none")]
    pub author_name: Option<S>,
    ///Target branch to merge into
    pub branch: S,
    ///Additional commit message body
    #[serde(skip_serializing_if = "Option::is_none")]
    pub commit_body: Option<S>,
    ///Merge commit message
    #[serde(skip_serializing_if = "Option::is_none")]
    pub commit_message: Option<S>,
    ///DID of the repository owner
    pub did: Did<S>,
    ///Name of the repository
    pub name: S,
    ///Patch content to merge
    pub patch: S,
    #[serde(flatten, default, skip_serializing_if = "Option::is_none")]
    pub extra_data: Option<BTreeMap<SmolStr, Data<S>>>,
}

/// Response type for sh.tangled.repo.merge
pub struct MergeResponse;
impl jacquard_common::xrpc::XrpcResp for MergeResponse {
    const NSID: &'static str = "sh.tangled.repo.merge";
    const ENCODING: &'static str = "application/json";
    type Output<S: BosStr> = ();
    type Err = jacquard_common::xrpc::GenericError;
}

impl<S: BosStr> jacquard_common::xrpc::XrpcRequest for Merge<S> {
    const NSID: &'static str = "sh.tangled.repo.merge";
    const METHOD: jacquard_common::xrpc::XrpcMethod = jacquard_common::xrpc::XrpcMethod::Procedure(
        "application/json",
    );
    type Response = MergeResponse;
}

/// Endpoint type for sh.tangled.repo.merge
pub struct MergeRequest;
impl jacquard_common::xrpc::XrpcEndpoint for MergeRequest {
    const PATH: &'static str = "/xrpc/sh.tangled.repo.merge";
    const METHOD: jacquard_common::xrpc::XrpcMethod = jacquard_common::xrpc::XrpcMethod::Procedure(
        "application/json",
    );
    type Request<S: BosStr> = Merge<S>;
    type Response = MergeResponse;
}

pub mod merge_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 Patch;
        type Did;
        type Branch;
        type Name;
    }
    /// Empty state - all required fields are unset
    pub struct Empty(());
    impl sealed::Sealed for Empty {}
    impl State for Empty {
        type Patch = Unset;
        type Did = Unset;
        type Branch = Unset;
        type Name = Unset;
    }
    ///State transition - sets the `patch` field to Set
    pub struct SetPatch<St: State = Empty>(PhantomData<fn() -> St>);
    impl<St: State> sealed::Sealed for SetPatch<St> {}
    impl<St: State> State for SetPatch<St> {
        type Patch = Set<members::patch>;
        type Did = St::Did;
        type Branch = St::Branch;
        type Name = St::Name;
    }
    ///State transition - sets the `did` field to Set
    pub struct SetDid<St: State = Empty>(PhantomData<fn() -> St>);
    impl<St: State> sealed::Sealed for SetDid<St> {}
    impl<St: State> State for SetDid<St> {
        type Patch = St::Patch;
        type Did = Set<members::did>;
        type Branch = St::Branch;
        type Name = St::Name;
    }
    ///State transition - sets the `branch` field to Set
    pub struct SetBranch<St: State = Empty>(PhantomData<fn() -> St>);
    impl<St: State> sealed::Sealed for SetBranch<St> {}
    impl<St: State> State for SetBranch<St> {
        type Patch = St::Patch;
        type Did = St::Did;
        type Branch = Set<members::branch>;
        type Name = St::Name;
    }
    ///State transition - sets the `name` field to Set
    pub struct SetName<St: State = Empty>(PhantomData<fn() -> St>);
    impl<St: State> sealed::Sealed for SetName<St> {}
    impl<St: State> State for SetName<St> {
        type Patch = St::Patch;
        type Did = St::Did;
        type Branch = St::Branch;
        type Name = Set<members::name>;
    }
    /// Marker types for field names
    #[allow(non_camel_case_types)]
    pub mod members {
        ///Marker type for the `patch` field
        pub struct patch(());
        ///Marker type for the `did` field
        pub struct did(());
        ///Marker type for the `branch` field
        pub struct branch(());
        ///Marker type for the `name` field
        pub struct name(());
    }
}

/// Builder for constructing an instance of this type.
pub struct MergeBuilder<S: BosStr, St: merge_state::State> {
    _state: PhantomData<fn() -> St>,
    _fields: (
        Option<S>,
        Option<S>,
        Option<S>,
        Option<S>,
        Option<S>,
        Option<Did<S>>,
        Option<S>,
        Option<S>,
    ),
    _type: PhantomData<fn() -> S>,
}

impl<S: BosStr> Merge<S> {
    /// Create a new builder for this type.
    pub fn new() -> MergeBuilder<S, merge_state::Empty> {
        MergeBuilder::new()
    }
}

impl<S: BosStr> MergeBuilder<S, merge_state::Empty> {
    /// Create a new builder with all fields unset.
    pub fn new() -> Self {
        MergeBuilder {
            _state: PhantomData,
            _fields: (None, None, None, None, None, None, None, None),
            _type: PhantomData,
        }
    }
}

impl<S: BosStr, St: merge_state::State> MergeBuilder<S, St> {
    /// Set the `authorEmail` field (optional)
    pub fn author_email(mut self, value: impl Into<Option<S>>) -> Self {
        self._fields.0 = value.into();
        self
    }
    /// Set the `authorEmail` field to an Option value (optional)
    pub fn maybe_author_email(mut self, value: Option<S>) -> Self {
        self._fields.0 = value;
        self
    }
}

impl<S: BosStr, St: merge_state::State> MergeBuilder<S, St> {
    /// Set the `authorName` field (optional)
    pub fn author_name(mut self, value: impl Into<Option<S>>) -> Self {
        self._fields.1 = value.into();
        self
    }
    /// Set the `authorName` field to an Option value (optional)
    pub fn maybe_author_name(mut self, value: Option<S>) -> Self {
        self._fields.1 = value;
        self
    }
}

impl<S: BosStr, St> MergeBuilder<S, St>
where
    St: merge_state::State,
    St::Branch: merge_state::IsUnset,
{
    /// Set the `branch` field (required)
    pub fn branch(
        mut self,
        value: impl Into<S>,
    ) -> MergeBuilder<S, merge_state::SetBranch<St>> {
        self._fields.2 = Option::Some(value.into());
        MergeBuilder {
            _state: PhantomData,
            _fields: self._fields,
            _type: PhantomData,
        }
    }
}

impl<S: BosStr, St: merge_state::State> MergeBuilder<S, St> {
    /// Set the `commitBody` field (optional)
    pub fn commit_body(mut self, value: impl Into<Option<S>>) -> Self {
        self._fields.3 = value.into();
        self
    }
    /// Set the `commitBody` field to an Option value (optional)
    pub fn maybe_commit_body(mut self, value: Option<S>) -> Self {
        self._fields.3 = value;
        self
    }
}

impl<S: BosStr, St: merge_state::State> MergeBuilder<S, St> {
    /// Set the `commitMessage` field (optional)
    pub fn commit_message(mut self, value: impl Into<Option<S>>) -> Self {
        self._fields.4 = value.into();
        self
    }
    /// Set the `commitMessage` field to an Option value (optional)
    pub fn maybe_commit_message(mut self, value: Option<S>) -> Self {
        self._fields.4 = value;
        self
    }
}

impl<S: BosStr, St> MergeBuilder<S, St>
where
    St: merge_state::State,
    St::Did: merge_state::IsUnset,
{
    /// Set the `did` field (required)
    pub fn did(
        mut self,
        value: impl Into<Did<S>>,
    ) -> MergeBuilder<S, merge_state::SetDid<St>> {
        self._fields.5 = Option::Some(value.into());
        MergeBuilder {
            _state: PhantomData,
            _fields: self._fields,
            _type: PhantomData,
        }
    }
}

impl<S: BosStr, St> MergeBuilder<S, St>
where
    St: merge_state::State,
    St::Name: merge_state::IsUnset,
{
    /// Set the `name` field (required)
    pub fn name(
        mut self,
        value: impl Into<S>,
    ) -> MergeBuilder<S, merge_state::SetName<St>> {
        self._fields.6 = Option::Some(value.into());
        MergeBuilder {
            _state: PhantomData,
            _fields: self._fields,
            _type: PhantomData,
        }
    }
}

impl<S: BosStr, St> MergeBuilder<S, St>
where
    St: merge_state::State,
    St::Patch: merge_state::IsUnset,
{
    /// Set the `patch` field (required)
    pub fn patch(
        mut self,
        value: impl Into<S>,
    ) -> MergeBuilder<S, merge_state::SetPatch<St>> {
        self._fields.7 = Option::Some(value.into());
        MergeBuilder {
            _state: PhantomData,
            _fields: self._fields,
            _type: PhantomData,
        }
    }
}

impl<S: BosStr, St> MergeBuilder<S, St>
where
    St: merge_state::State,
    St::Patch: merge_state::IsSet,
    St::Did: merge_state::IsSet,
    St::Branch: merge_state::IsSet,
    St::Name: merge_state::IsSet,
{
    /// Build the final struct.
    pub fn build(self) -> Merge<S> {
        Merge {
            author_email: self._fields.0,
            author_name: self._fields.1,
            branch: self._fields.2.unwrap(),
            commit_body: self._fields.3,
            commit_message: self._fields.4,
            did: self._fields.5.unwrap(),
            name: self._fields.6.unwrap(),
            patch: self._fields.7.unwrap(),
            extra_data: Default::default(),
        }
    }
    /// Build the final struct with custom extra_data.
    pub fn build_with_data(self, extra_data: BTreeMap<SmolStr, Data<S>>) -> Merge<S> {
        Merge {
            author_email: self._fields.0,
            author_name: self._fields.1,
            branch: self._fields.2.unwrap(),
            commit_body: self._fields.3,
            commit_message: self._fields.4,
            did: self._fields.5.unwrap(),
            name: self._fields.6.unwrap(),
            patch: self._fields.7.unwrap(),
            extra_data: Some(extra_data),
        }
    }
}