Skip to content

Commit

Permalink
Merge #97
Browse files Browse the repository at this point in the history
97: fix: fixed for the issue (#94) r=myConsciousness a=myConsciousness

# 1. Description

<!-- Provide a description of what this PR is doing.
If you're modifying existing behavior, describe the existing behavior, how this PR is changing it,
and what motivated the change. If this is a breaking change, specify explicitly which APIs have been
changed. -->

## 1.1. Checklist

<!-- Before you create this PR confirm that it meets all requirements listed below by checking the
relevant checkboxes (`[x]`). This will ensure a smooth and quick review process. -->

- [x] The title of my PR starts with a [Conventional Commit] prefix (`fix:`, `feat:`, `docs:` etc).
- [x] I have read the [Contributor Guide] and followed the process outlined for submitting PRs.
- [x] I have updated/added tests for ALL new/updated/fixed functionality.
- [x] I have updated/added relevant documentation in `docs` and added dartdoc comments with `///`.
- [x] I have updated/added relevant examples in `examples`.

## 1.2. Breaking Change

<!-- Does your PR require users to manually update their apps to accommodate your change?

If the PR is a breaking change this should be indicated with suffix "!"  (for example, `feat!:`, `fix!:`). See [Conventional Commit] for details.
-->

- [ ] Yes, this is a breaking change.
- [x] No, this is _not_ a breaking change.

## 1.3. Related Issues

<!-- Provide a list of issues related to this PR from the [issue database].
Indicate which of these issues are resolved or fixed by this PR, i.e. Fixes #xxxx* !-->

<!-- Links -->

[issue database]: https://github.com/mastodon-dart/mastodon-api/issues
[contributor guide]: https://github.com/mastodon-dart/mastodon-api/blob/main/CONTRIBUTING.md
[style guide]: https://github.com/mastodon-dart/mastodon-api/blob/main/STYLEGUIDE.md
[conventional commit]: https://conventionalcommits.org


Co-authored-by: alevinetx <adam.l.levine@gmail.com>
Co-authored-by: myConsciousness <contact@shinyakato.dev>
  • Loading branch information
3 people committed Dec 30, 2022
2 parents 7bc636f + c3832d8 commit ad2984b
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 0 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,10 @@
- `GET /api/v1/conversations`
- `DELETE /api/v1/conversations/:id`
- `POST /api/v1/conversations/:id/read`
- Exposed objects. ([#94](https://github.com/mastodon-dart/mastodon-api/issues/94))
- `package:mastodon_api/src/service/entities/rule.dart`
- `package:mastodon_api/src/service/v1/instance/instance_v1_service.dart`
- `package:mastodon_api/src/service/v2/instance/instance_v2_service.dart`

## v0.2.2

Expand Down
3 changes: 3 additions & 0 deletions lib/mastodon_api.dart
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,7 @@ export 'package:mastodon_api/src/service/entities/preview_card.dart';
export 'package:mastodon_api/src/service/entities/preview_card_type.dart';
export 'package:mastodon_api/src/service/entities/rate_limit.dart';
export 'package:mastodon_api/src/service/entities/registered_application.dart';
export 'package:mastodon_api/src/service/entities/rule.dart';
export 'package:mastodon_api/src/service/entities/status.dart';
export 'package:mastodon_api/src/service/entities/suggested_reason.dart';
export 'package:mastodon_api/src/service/entities/suggestion.dart';
Expand All @@ -66,12 +67,14 @@ export 'package:mastodon_api/src/service/v1/accounts/account_profile_meta_param.
export 'package:mastodon_api/src/service/v1/accounts/accounts_v1_service.dart';
export 'package:mastodon_api/src/service/v1/accounts/post_privacy.dart';
export 'package:mastodon_api/src/service/v1/apps/apps_v1_service.dart';
export 'package:mastodon_api/src/service/v1/instance/instance_v1_service.dart';
export 'package:mastodon_api/src/service/v1/statuses/status_poll_param.dart';
export 'package:mastodon_api/src/service/v1/statuses/statuses_v1_service.dart';
export 'package:mastodon_api/src/service/v1/timelines/timelines_v1_service.dart';
export 'package:mastodon_api/src/service/v2/accounts/accounts_v2_service.dart';
export 'package:mastodon_api/src/service/v2/entities/v2_instance.dart';
export 'package:mastodon_api/src/service/v2/entities/v2_instance_configuration.dart';
export 'package:mastodon_api/src/service/v2/entities/v2_search.dart';
export 'package:mastodon_api/src/service/v2/instance/instance_v2_service.dart';
export 'package:mastodon_api/src/service/v2/search/search_content_type.dart';
export 'package:mastodon_api/src/service/v2/search/search_v2_service.dart';

0 comments on commit ad2984b

Please sign in to comment.