jacquard-api 0.12.0-beta.1

Generated AT Protocol API bindings for Jacquard
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
// @generated by jacquard-lexicon. DO NOT EDIT.
//
// Lexicon: app.bsky.unspecced.searchPostsSkeleton
//
// 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::ident::AtIdentifier;
use jacquard_common::types::string::{Did, Language, UriValue};
use jacquard_common::types::value::Data;
use jacquard_derive::{IntoStatic, open_union};
use serde::{Serialize, Deserialize};
use crate::app_bsky::unspecced::SkeletonSearchPost;

#[derive(Serialize, Deserialize, Debug, Clone, PartialEq, Eq, IntoStatic)]
#[serde(rename_all = "camelCase", bound(deserialize = "S: Deserialize<'de> + BosStr"))]
pub struct SearchPostsSkeleton<S: BosStr = DefaultStr> {
    #[serde(skip_serializing_if = "Option::is_none")]
    pub author: Option<AtIdentifier<S>>,
    #[serde(skip_serializing_if = "Option::is_none")]
    pub cursor: Option<S>,
    #[serde(skip_serializing_if = "Option::is_none")]
    pub domain: Option<S>,
    #[serde(skip_serializing_if = "Option::is_none")]
    pub lang: Option<Language>,
    ///Defaults to `25`. Min: 1. Max: 100.
    #[serde(default = "_default_limit")]
    #[serde(skip_serializing_if = "Option::is_none")]
    pub limit: Option<i64>,
    #[serde(skip_serializing_if = "Option::is_none")]
    pub mentions: Option<AtIdentifier<S>>,
    pub q: S,
    #[serde(skip_serializing_if = "Option::is_none")]
    pub since: Option<S>,
    ///Defaults to `"latest"`.
    #[serde(default = "_default_sort")]
    #[serde(skip_serializing_if = "Option::is_none")]
    pub sort: Option<S>,
    #[serde(skip_serializing_if = "Option::is_none")]
    pub tag: Option<Vec<S>>,
    #[serde(skip_serializing_if = "Option::is_none")]
    pub until: Option<S>,
    #[serde(skip_serializing_if = "Option::is_none")]
    pub url: Option<UriValue<S>>,
    #[serde(skip_serializing_if = "Option::is_none")]
    pub viewer: Option<Did<S>>,
}


#[derive(Serialize, Deserialize, Debug, Clone, PartialEq, Eq, IntoStatic)]
#[serde(rename_all = "camelCase", bound(deserialize = "S: Deserialize<'de> + BosStr"))]
pub struct SearchPostsSkeletonOutput<S: BosStr = DefaultStr> {
    #[serde(skip_serializing_if = "Option::is_none")]
    pub cursor: Option<S>,
    ///Count of search hits. Optional, may be rounded/truncated, and may not be possible to paginate through all hits.
    #[serde(skip_serializing_if = "Option::is_none")]
    pub hits_total: Option<i64>,
    pub posts: Vec<SkeletonSearchPost<S>>,
    #[serde(flatten, default, skip_serializing_if = "Option::is_none")]
    pub extra_data: Option<BTreeMap<SmolStr, Data<S>>>,
}


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

#[serde(tag = "error", content = "message")]
pub enum SearchPostsSkeletonError {
    #[serde(rename = "BadQueryString")]
    BadQueryString(Option<SmolStr>),
    /// Catch-all for unknown error codes.
    #[serde(untagged)]
    Other { error: SmolStr, message: Option<SmolStr> },
}

impl core::fmt::Display for SearchPostsSkeletonError {
    fn fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result {
        match self {
            Self::BadQueryString(msg) => {
                write!(f, "BadQueryString")?;
                if let Some(msg) = msg {
                    write!(f, ": {}", msg)?;
                }
                Ok(())
            }
            Self::Other { error, message } => {
                write!(f, "{}", error)?;
                if let Some(msg) = message {
                    write!(f, ": {}", msg)?;
                }
                Ok(())
            }
        }
    }
}

/// Response type for app.bsky.unspecced.searchPostsSkeleton
pub struct SearchPostsSkeletonResponse;
impl jacquard_common::xrpc::XrpcResp for SearchPostsSkeletonResponse {
    const NSID: &'static str = "app.bsky.unspecced.searchPostsSkeleton";
    const ENCODING: &'static str = "application/json";
    type Output<S: BosStr> = SearchPostsSkeletonOutput<S>;
    type Err = SearchPostsSkeletonError;
}

impl<S: BosStr> jacquard_common::xrpc::XrpcRequest for SearchPostsSkeleton<S> {
    const NSID: &'static str = "app.bsky.unspecced.searchPostsSkeleton";
    const METHOD: jacquard_common::xrpc::XrpcMethod = jacquard_common::xrpc::XrpcMethod::Query;
    type Response = SearchPostsSkeletonResponse;
}

/// Endpoint type for app.bsky.unspecced.searchPostsSkeleton
pub struct SearchPostsSkeletonRequest;
impl jacquard_common::xrpc::XrpcEndpoint for SearchPostsSkeletonRequest {
    const PATH: &'static str = "/xrpc/app.bsky.unspecced.searchPostsSkeleton";
    const METHOD: jacquard_common::xrpc::XrpcMethod = jacquard_common::xrpc::XrpcMethod::Query;
    type Request<S: BosStr> = SearchPostsSkeleton<S>;
    type Response = SearchPostsSkeletonResponse;
}

fn _default_limit() -> Option<i64> {
    Some(25i64)
}

fn _default_sort<S: jacquard_common::FromStaticStr>() -> Option<S> {
    Some(S::from_static("latest"))
}

pub mod search_posts_skeleton_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 Q;
    }
    /// Empty state - all required fields are unset
    pub struct Empty(());
    impl sealed::Sealed for Empty {}
    impl State for Empty {
        type Q = Unset;
    }
    ///State transition - sets the `q` field to Set
    pub struct SetQ<St: State = Empty>(PhantomData<fn() -> St>);
    impl<St: State> sealed::Sealed for SetQ<St> {}
    impl<St: State> State for SetQ<St> {
        type Q = Set<members::q>;
    }
    /// Marker types for field names
    #[allow(non_camel_case_types)]
    pub mod members {
        ///Marker type for the `q` field
        pub struct q(());
    }
}

/// Builder for constructing an instance of this type.
pub struct SearchPostsSkeletonBuilder<
    S: BosStr,
    St: search_posts_skeleton_state::State,
> {
    _state: PhantomData<fn() -> St>,
    _fields: (
        Option<AtIdentifier<S>>,
        Option<S>,
        Option<S>,
        Option<Language>,
        Option<i64>,
        Option<AtIdentifier<S>>,
        Option<S>,
        Option<S>,
        Option<S>,
        Option<Vec<S>>,
        Option<S>,
        Option<UriValue<S>>,
        Option<Did<S>>,
    ),
    _type: PhantomData<fn() -> S>,
}

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

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

impl<
    S: BosStr,
    St: search_posts_skeleton_state::State,
> SearchPostsSkeletonBuilder<S, St> {
    /// Set the `author` field (optional)
    pub fn author(mut self, value: impl Into<Option<AtIdentifier<S>>>) -> Self {
        self._fields.0 = value.into();
        self
    }
    /// Set the `author` field to an Option value (optional)
    pub fn maybe_author(mut self, value: Option<AtIdentifier<S>>) -> Self {
        self._fields.0 = value;
        self
    }
}

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

impl<
    S: BosStr,
    St: search_posts_skeleton_state::State,
> SearchPostsSkeletonBuilder<S, St> {
    /// Set the `domain` field (optional)
    pub fn domain(mut self, value: impl Into<Option<S>>) -> Self {
        self._fields.2 = value.into();
        self
    }
    /// Set the `domain` field to an Option value (optional)
    pub fn maybe_domain(mut self, value: Option<S>) -> Self {
        self._fields.2 = value;
        self
    }
}

impl<
    S: BosStr,
    St: search_posts_skeleton_state::State,
> SearchPostsSkeletonBuilder<S, St> {
    /// Set the `lang` field (optional)
    pub fn lang(mut self, value: impl Into<Option<Language>>) -> Self {
        self._fields.3 = value.into();
        self
    }
    /// Set the `lang` field to an Option value (optional)
    pub fn maybe_lang(mut self, value: Option<Language>) -> Self {
        self._fields.3 = value;
        self
    }
}

impl<
    S: BosStr,
    St: search_posts_skeleton_state::State,
> SearchPostsSkeletonBuilder<S, St> {
    /// Set the `limit` field (optional)
    pub fn limit(mut self, value: impl Into<Option<i64>>) -> Self {
        self._fields.4 = value.into();
        self
    }
    /// Set the `limit` field to an Option value (optional)
    pub fn maybe_limit(mut self, value: Option<i64>) -> Self {
        self._fields.4 = value;
        self
    }
}

impl<
    S: BosStr,
    St: search_posts_skeleton_state::State,
> SearchPostsSkeletonBuilder<S, St> {
    /// Set the `mentions` field (optional)
    pub fn mentions(mut self, value: impl Into<Option<AtIdentifier<S>>>) -> Self {
        self._fields.5 = value.into();
        self
    }
    /// Set the `mentions` field to an Option value (optional)
    pub fn maybe_mentions(mut self, value: Option<AtIdentifier<S>>) -> Self {
        self._fields.5 = value;
        self
    }
}

impl<S: BosStr, St> SearchPostsSkeletonBuilder<S, St>
where
    St: search_posts_skeleton_state::State,
    St::Q: search_posts_skeleton_state::IsUnset,
{
    /// Set the `q` field (required)
    pub fn q(
        mut self,
        value: impl Into<S>,
    ) -> SearchPostsSkeletonBuilder<S, search_posts_skeleton_state::SetQ<St>> {
        self._fields.6 = Option::Some(value.into());
        SearchPostsSkeletonBuilder {
            _state: PhantomData,
            _fields: self._fields,
            _type: PhantomData,
        }
    }
}

impl<
    S: BosStr,
    St: search_posts_skeleton_state::State,
> SearchPostsSkeletonBuilder<S, St> {
    /// Set the `since` field (optional)
    pub fn since(mut self, value: impl Into<Option<S>>) -> Self {
        self._fields.7 = value.into();
        self
    }
    /// Set the `since` field to an Option value (optional)
    pub fn maybe_since(mut self, value: Option<S>) -> Self {
        self._fields.7 = value;
        self
    }
}

impl<
    S: BosStr,
    St: search_posts_skeleton_state::State,
> SearchPostsSkeletonBuilder<S, St> {
    /// Set the `sort` field (optional)
    pub fn sort(mut self, value: impl Into<Option<S>>) -> Self {
        self._fields.8 = value.into();
        self
    }
    /// Set the `sort` field to an Option value (optional)
    pub fn maybe_sort(mut self, value: Option<S>) -> Self {
        self._fields.8 = value;
        self
    }
}

impl<
    S: BosStr,
    St: search_posts_skeleton_state::State,
> SearchPostsSkeletonBuilder<S, St> {
    /// Set the `tag` field (optional)
    pub fn tag(mut self, value: impl Into<Option<Vec<S>>>) -> Self {
        self._fields.9 = value.into();
        self
    }
    /// Set the `tag` field to an Option value (optional)
    pub fn maybe_tag(mut self, value: Option<Vec<S>>) -> Self {
        self._fields.9 = value;
        self
    }
}

impl<
    S: BosStr,
    St: search_posts_skeleton_state::State,
> SearchPostsSkeletonBuilder<S, St> {
    /// Set the `until` field (optional)
    pub fn until(mut self, value: impl Into<Option<S>>) -> Self {
        self._fields.10 = value.into();
        self
    }
    /// Set the `until` field to an Option value (optional)
    pub fn maybe_until(mut self, value: Option<S>) -> Self {
        self._fields.10 = value;
        self
    }
}

impl<
    S: BosStr,
    St: search_posts_skeleton_state::State,
> SearchPostsSkeletonBuilder<S, St> {
    /// Set the `url` field (optional)
    pub fn url(mut self, value: impl Into<Option<UriValue<S>>>) -> Self {
        self._fields.11 = value.into();
        self
    }
    /// Set the `url` field to an Option value (optional)
    pub fn maybe_url(mut self, value: Option<UriValue<S>>) -> Self {
        self._fields.11 = value;
        self
    }
}

impl<
    S: BosStr,
    St: search_posts_skeleton_state::State,
> SearchPostsSkeletonBuilder<S, St> {
    /// Set the `viewer` field (optional)
    pub fn viewer(mut self, value: impl Into<Option<Did<S>>>) -> Self {
        self._fields.12 = value.into();
        self
    }
    /// Set the `viewer` field to an Option value (optional)
    pub fn maybe_viewer(mut self, value: Option<Did<S>>) -> Self {
        self._fields.12 = value;
        self
    }
}

impl<S: BosStr, St> SearchPostsSkeletonBuilder<S, St>
where
    St: search_posts_skeleton_state::State,
    St::Q: search_posts_skeleton_state::IsSet,
{
    /// Build the final struct.
    pub fn build(self) -> SearchPostsSkeleton<S> {
        SearchPostsSkeleton {
            author: self._fields.0,
            cursor: self._fields.1,
            domain: self._fields.2,
            lang: self._fields.3,
            limit: self._fields.4,
            mentions: self._fields.5,
            q: self._fields.6.unwrap(),
            since: self._fields.7,
            sort: self._fields.8,
            tag: self._fields.9,
            until: self._fields.10,
            url: self._fields.11,
            viewer: self._fields.12,
        }
    }
}