v1.1.0
What's Changed
- New endpoints:
GET /v1/delegation/revokeDelegation/:accountId/:providerId
- returns a payload that can be signed by a user to revoke an existing delegationPOST /v1/delegation/revokeDelegation
- post the payload returned by the aboveGET
with a signature for execution on the Frequency chainGET /v1/accounts/retireMsa/:accountId
- returns a payload that can be signed by a user to retire an existing MSAPOST /v1/accounts/retireMsa
- post the payload returned by the aboveGET
with a signature for execution on the Frequency chainGET /v1/handles/change/:newHandle
- returns a payload for a change handle request that can be signed by a userPOST /v1/handles/change
- submit a request to change a user's handle, using the signed payload from the aboveGET
GET /v2/delegations/:msaId
- returns all delegations for a given MSAGET /v2/delegations/:msaId/:providerId
- returns the delegation to a specific provider for a given MSA, if one exists
- Documentation updates
- Bug fixes and other refactoring
NOTE
Note, the delegation
route has been renamed in the v2 API as delegations
, to more accurately reflect the structure of the requested resources
Changelog
- chore(deps): bump the npm_and_yarn group across 2 directories with 5 updates by @dependabot in #484
- Update Docs Theme by @wilwade in #486
- account-service: added graph key endpoints by @aramikm in #488
- Update Diagrams by @wilwade in #512
- chore: various fixes to get e2e tests working for account service by @mattheworris in #502
- 412 retiremsa by @claireolmstead in #472
- Implement revokeDelegation(ByDelegator|ByProvider) by @mattheworris in #514
- Refactor const, enum, interface & dto definitions to a common component by @JoeCap08055 in #510
- feat: add new 'v2' /delegations endpoints and e2e tests by @JoeCap08055 in #521
- content-watcher-api: added validation by @aramikm in #516
- Chore add validation tests by @mattheworris in #519
New Contributors
Full Changelog: v1.0.3...v1.1