chore(api): updated schema
This commit is contained in:
parent
793e7d8b51
commit
f15c44adb6
4 changed files with 2645 additions and 29 deletions
|
|
@ -872,6 +872,18 @@ pub(super) mod test {
|
|||
.list(|b| b.cat(UserListEnum::Friends))
|
||||
.await
|
||||
.unwrap();
|
||||
|
||||
client
|
||||
.user()
|
||||
.list(|b| b.cat(UserListEnum::Enemies))
|
||||
.await
|
||||
.unwrap();
|
||||
|
||||
client
|
||||
.user()
|
||||
.list(|b| b.cat(UserListEnum::Targets))
|
||||
.await
|
||||
.unwrap();
|
||||
}
|
||||
|
||||
#[tokio::test]
|
||||
|
|
@ -1127,6 +1139,13 @@ pub(super) mod test {
|
|||
client.user().reports(|b| b).await.unwrap();
|
||||
}
|
||||
|
||||
#[tokio::test]
|
||||
async fn user_profile() {
|
||||
let client = test_client().await;
|
||||
|
||||
client.user().profile(|b| b).await.unwrap();
|
||||
}
|
||||
|
||||
#[tokio::test]
|
||||
async fn key_info() {
|
||||
let client = test_client().await;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue