-
-
Notifications
You must be signed in to change notification settings - Fork 55
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update lexicons fetched from e7a0d27 committed 2023-07-03T16:28:39Z (#85
- Loading branch information
Showing
11 changed files
with
142 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
30 changes: 30 additions & 0 deletions
30
atproto/xrpc_client/models/app/bsky/unspecced/get_timeline_skeleton.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
################################################################## | ||
# THIS IS THE AUTO-GENERATED CODE. DON'T EDIT IT BY HANDS! | ||
# Copyright (C) 2023 Ilya (Marshal) <https://github.com/MarshalX>. | ||
# This file is part of Python atproto SDK. Licenced under MIT. | ||
################################################################## | ||
|
||
|
||
import typing as t | ||
from dataclasses import dataclass | ||
|
||
from atproto.xrpc_client import models | ||
from atproto.xrpc_client.models import base | ||
|
||
|
||
@dataclass | ||
class Params(base.ParamsModelBase): | ||
|
||
"""Parameters model for :obj:`app.bsky.unspecced.getTimelineSkeleton`.""" | ||
|
||
cursor: t.Optional[str] = None #: Cursor. | ||
limit: t.Optional[int] = None #: Limit. | ||
|
||
|
||
@dataclass | ||
class Response(base.ResponseModelBase): | ||
|
||
"""Output data model for :obj:`app.bsky.unspecced.getTimelineSkeleton`.""" | ||
|
||
feed: t.List['models.AppBskyFeedDefs.SkeletonFeedPost'] #: Feed. | ||
cursor: t.Optional[str] = None #: Cursor. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
atproto.ws\_client | ||
================== | ||
|
||
.. automodule:: atproto.ws_client | ||
:members: | ||
:undoc-members: | ||
:show-inheritance: | ||
|
||
Submodules | ||
---------- | ||
|
||
.. toctree:: | ||
:maxdepth: 4 | ||
|
||
atproto.ws_client.transport |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
atproto.ws\_client.transport | ||
============================ | ||
|
||
.. automodule:: atproto.ws_client.transport | ||
:members: | ||
:undoc-members: | ||
:show-inheritance: |
7 changes: 7 additions & 0 deletions
7
...atproto/atproto.xrpc_client.models.app.bsky.unspecced.get_timeline_skeleton.rst
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
app.bsky.unspecced.get\_timeline\_skeleton | ||
====================================================================== | ||
|
||
.. automodule:: atproto.xrpc_client.models.app.bsky.unspecced.get_timeline_skeleton | ||
:members: | ||
:undoc-members: | ||
:show-inheritance: |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
{ | ||
"lexicon": 1, | ||
"id": "app.bsky.unspecced.getTimelineSkeleton", | ||
"defs": { | ||
"main": { | ||
"type": "query", | ||
"description": "A skeleton of a timeline - UNSPECCED & WILL GO AWAY SOON", | ||
"parameters": { | ||
"type": "params", | ||
"properties": { | ||
"limit": {"type": "integer", "minimum": 1, "maximum": 100, "default": 50}, | ||
"cursor": {"type": "string"} | ||
} | ||
}, | ||
"output": { | ||
"encoding": "application/json", | ||
"schema": { | ||
"type": "object", | ||
"required": ["feed"], | ||
"properties": { | ||
"cursor": {"type": "string"}, | ||
"feed": { | ||
"type": "array", | ||
"items": {"type": "ref", "ref": "app.bsky.feed.defs#skeletonFeedPost"} | ||
} | ||
} | ||
} | ||
}, | ||
"errors": [ | ||
{"name": "UnknownFeed"} | ||
] | ||
} | ||
} | ||
} |