diff options
| author | かっこかり <67428053+kakkokari-gtyih@users.noreply.github.com> | 2024-11-15 17:30:54 +0900 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-11-15 17:30:54 +0900 |
| commit | c0d168260482caa974e3fc9e084b121fc32e8ec4 (patch) | |
| tree | addcc1432d1ba3097667ca3ba86d33cd87793615 /packages/misskey-js/src/autogen/apiClientJSDoc.ts | |
| parent | update deps (#14950) (diff) | |
| download | sharkey-c0d168260482caa974e3fc9e084b121fc32e8ec4.tar.gz sharkey-c0d168260482caa974e3fc9e084b121fc32e8ec4.tar.bz2 sharkey-c0d168260482caa974e3fc9e084b121fc32e8ec4.zip | |
feat: 送信したフォローリクエストを確認できるように (#14856)
* FEAT: Allow users to view pending follow requests they sent
This commit implements the `following/requests/sent` interface firstly
implemented on Firefish, and provides a UI interface to view the pending
follow requests users sent.
* ux: should not show follow requests tab when have no pending sent follow req
* fix default followreq tab
* fix default followreq tab
* restore missing hasPendingReceivedFollowRequest in navbar
* refactor
* use tabler icons
* tweak design
* Revert "ux: should not show follow requests tab when have no pending sent follow req"
This reverts commit e580b92c37f27c2849c6d27e22ca4c47086081bb.
* Update Changelog
* Update Changelog
* change tab titles
---------
Co-authored-by: Lhc_fl <lhcfl@outlook.com>
Co-authored-by: Hazelnoot <acomputerdog@gmail.com>
Diffstat (limited to 'packages/misskey-js/src/autogen/apiClientJSDoc.ts')
| -rw-r--r-- | packages/misskey-js/src/autogen/apiClientJSDoc.ts | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/packages/misskey-js/src/autogen/apiClientJSDoc.ts b/packages/misskey-js/src/autogen/apiClientJSDoc.ts index e2c7cbba52..1837f3db4f 100644 --- a/packages/misskey-js/src/autogen/apiClientJSDoc.ts +++ b/packages/misskey-js/src/autogen/apiClientJSDoc.ts @@ -2011,6 +2011,17 @@ declare module '../api.js' { /** * No description provided. * + * **Credential required**: *Yes* / **Permission**: *read:following* + */ + request<E extends 'following/requests/sent', P extends Endpoints[E]['req']>( + endpoint: E, + params: P, + credential?: string | null, + ): Promise<SwitchCaseResponseType<E, P>>; + + /** + * No description provided. + * * **Credential required**: *Yes* / **Permission**: *write:following* */ request<E extends 'following/requests/reject', P extends Endpoints[E]['req']>( |