Skip to content

Commit 9bbaf9d

Browse files
authored
update schema based on current lexicon (#276)
1 parent 25a8082 commit 9bbaf9d

25 files changed

+269
-1
lines changed

Diff for: atrium-api/README.md

+1
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,7 @@ async fn main() -> Result<(), Box<dyn std::error::Error>> {
2929
auth_factor_token: None,
3030
identifier: "[email protected]".into(),
3131
password: "hunter2".into(),
32+
allow_takendown: None,
3233
}
3334
.into(),
3435
)

Diff for: atrium-api/src/agent.rs

+1
Original file line numberDiff line numberDiff line change
@@ -74,6 +74,7 @@ where
7474
auth_factor_token: None,
7575
identifier: identifier.as_ref().into(),
7676
password: password.as_ref().into(),
77+
allow_takendown: None,
7778
}
7879
.into(),
7980
)

Diff for: atrium-api/src/app/bsky/actor/get_suggestions.rs

+3
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Diff for: atrium-api/src/app/bsky/feed/defs.rs

+6
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Diff for: atrium-api/src/app/bsky/feed/generator.rs

+2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Diff for: atrium-api/src/app/bsky/graph/get_suggested_follows_by_actor.rs

+3
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Diff for: atrium-api/src/app/bsky/notification/list_notifications.rs

+3
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Diff for: atrium-api/src/app/bsky/unspecced.rs

+1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Diff for: atrium-api/src/app/bsky/unspecced/defs.rs

+11
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Diff for: atrium-api/src/app/bsky/unspecced/get_suggestions_skeleton.rs

+3
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Diff for: atrium-api/src/app/bsky/unspecced/get_trending_topics.rs

+28
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Diff for: atrium-api/src/client.rs

+60
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Diff for: atrium-api/src/com/atproto.rs

+1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Diff for: atrium-api/src/com/atproto/lexicon.rs

+9
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Diff for: atrium-api/src/com/atproto/lexicon/schema.rs

+9
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Diff for: atrium-api/src/com/atproto/server/create_session.rs

+3
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Diff for: atrium-api/src/com/atproto/temp.rs

+1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Diff for: atrium-api/src/com/atproto/temp/add_reserved_handle.rs

+21
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Diff for: atrium-api/src/record.rs

+12
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)