identity-service-api: Update changelog

This commit is contained in:
Jonas Platte 2021-05-17 01:13:21 +02:00
parent d2c81629ac
commit 51b638d7a9
No known key found for this signature in database
GPG Key ID: 7D261D771D915378

View File

@ -1,18 +1,39 @@
# [unreleased]
# 0.0.1
* Add authentication endpoints:
```rust
authentication::{get_account_information::v2, logout::v2, register::v2}
```
* Add email association endpoints:
* Add more endpoints:
```rust
association::{
email::{
create_email_validation_session::v2,
validate_email::v2,
validate_email_by_end_user::v2,
}
},
msisdn::{
create_msisdn_validation_session::v2,
validate_msisdn::v2,
validate_msisdn_by_phone_number::v2,
},
},
key::{
check_public_key_validity::v2,
get_public_key::v2,
validate_ephemeral_key::v2,
},
lookup::{
get_hash_parameters::v2,
lookup_3pid::v2,
},
status::v2,
tos::{
accept_terms_of_service::v2,
get_terms_of_service::v2,
}
```
# 0.0.1
Initial release with the following endpoints:
```rust
authentication::{get_account_information::v2, logout::v2, register::v2}
```