re-generate misskey-js
This commit is contained in:
parent
e4d7b2311f
commit
65aab07d28
3 changed files with 53 additions and 38 deletions
|
|
@ -85,7 +85,12 @@ export type AdminShowUserRequest = operations['admin___show-user']['requestBody'
|
|||
export type AdminShowUserResponse = operations['admin___show-user']['responses']['200']['content']['application/json'];
|
||||
export type AdminShowUsersRequest = operations['admin___show-users']['requestBody']['content']['application/json'];
|
||||
export type AdminShowUsersResponse = operations['admin___show-users']['responses']['200']['content']['application/json'];
|
||||
export type AdminNsfwUserRequest = operations['admin___nsfw-user']['requestBody']['content']['application/json'];
|
||||
export type AdminUnnsfwUserRequest = operations['admin___unnsfw-user']['requestBody']['content']['application/json'];
|
||||
export type AdminSilenceUserRequest = operations['admin___silence-user']['requestBody']['content']['application/json'];
|
||||
export type AdminUnsilenceUserRequest = operations['admin___unsilence-user']['requestBody']['content']['application/json'];
|
||||
export type AdminSuspendUserRequest = operations['admin___suspend-user']['requestBody']['content']['application/json'];
|
||||
export type AdminApproveUserRequest = operations['admin___approve-user']['requestBody']['content']['application/json'];
|
||||
export type AdminUnsuspendUserRequest = operations['admin___unsuspend-user']['requestBody']['content']['application/json'];
|
||||
export type AdminUpdateMetaRequest = operations['admin___update-meta']['requestBody']['content']['application/json'];
|
||||
export type AdminDeleteAccountRequest = operations['admin___delete-account']['requestBody']['content']['application/json'];
|
||||
|
|
@ -313,6 +318,7 @@ export type IGalleryPostsRequest = operations['i___gallery___posts']['requestBod
|
|||
export type IGalleryPostsResponse = operations['i___gallery___posts']['responses']['200']['content']['application/json'];
|
||||
export type IImportBlockingRequest = operations['i___import-blocking']['requestBody']['content']['application/json'];
|
||||
export type IImportFollowingRequest = operations['i___import-following']['requestBody']['content']['application/json'];
|
||||
export type IImportNotesRequest = operations['i___import-notes']['requestBody']['content']['application/json'];
|
||||
export type IImportMutingRequest = operations['i___import-muting']['requestBody']['content']['application/json'];
|
||||
export type IImportUserListsRequest = operations['i___import-user-lists']['requestBody']['content']['application/json'];
|
||||
export type IImportAntennasRequest = operations['i___import-antennas']['requestBody']['content']['application/json'];
|
||||
|
|
@ -330,6 +336,7 @@ export type IReadAnnouncementRequest = operations['i___read-announcement']['requ
|
|||
export type IRegenerateTokenRequest = operations['i___regenerate-token']['requestBody']['content']['application/json'];
|
||||
export type IRegistryGetAllRequest = operations['i___registry___get-all']['requestBody']['content']['application/json'];
|
||||
export type IRegistryGetAllResponse = operations['i___registry___get-all']['responses']['200']['content']['application/json'];
|
||||
export type IRegistryGetUnsecureRequest = operations['i___registry___get-unsecure']['requestBody']['content']['application/json'];
|
||||
export type IRegistryGetDetailRequest = operations['i___registry___get-detail']['requestBody']['content']['application/json'];
|
||||
export type IRegistryGetDetailResponse = operations['i___registry___get-detail']['responses']['200']['content']['application/json'];
|
||||
export type IRegistryGetRequest = operations['i___registry___get']['requestBody']['content']['application/json'];
|
||||
|
|
@ -398,6 +405,8 @@ export type NotesFeaturedRequest = operations['notes___featured']['requestBody']
|
|||
export type NotesFeaturedResponse = operations['notes___featured']['responses']['200']['content']['application/json'];
|
||||
export type NotesGlobalTimelineRequest = operations['notes___global-timeline']['requestBody']['content']['application/json'];
|
||||
export type NotesGlobalTimelineResponse = operations['notes___global-timeline']['responses']['200']['content']['application/json'];
|
||||
export type NotesBubbleTimelineRequest = operations['notes___bubble-timeline']['requestBody']['content']['application/json'];
|
||||
export type NotesBubbleTimelineResponse = operations['notes___bubble-timeline']['responses']['200']['content']['application/json'];
|
||||
export type NotesHybridTimelineRequest = operations['notes___hybrid-timeline']['requestBody']['content']['application/json'];
|
||||
export type NotesHybridTimelineResponse = operations['notes___hybrid-timeline']['responses']['200']['content']['application/json'];
|
||||
export type NotesLocalTimelineRequest = operations['notes___local-timeline']['requestBody']['content']['application/json'];
|
||||
|
|
@ -411,6 +420,7 @@ export type NotesReactionsRequest = operations['notes___reactions']['requestBody
|
|||
export type NotesReactionsResponse = operations['notes___reactions']['responses']['200']['content']['application/json'];
|
||||
export type NotesReactionsCreateRequest = operations['notes___reactions___create']['requestBody']['content']['application/json'];
|
||||
export type NotesReactionsDeleteRequest = operations['notes___reactions___delete']['requestBody']['content']['application/json'];
|
||||
export type NotesLikeRequest = operations['notes___like']['requestBody']['content']['application/json'];
|
||||
export type NotesRenotesRequest = operations['notes___renotes']['requestBody']['content']['application/json'];
|
||||
export type NotesRenotesResponse = operations['notes___renotes']['responses']['200']['content']['application/json'];
|
||||
export type NotesRepliesRequest = operations['notes___replies']['requestBody']['content']['application/json'];
|
||||
|
|
@ -432,6 +442,10 @@ export type NotesTranslateResponse = operations['notes___translate']['responses'
|
|||
export type NotesUnrenoteRequest = operations['notes___unrenote']['requestBody']['content']['application/json'];
|
||||
export type NotesUserListTimelineRequest = operations['notes___user-list-timeline']['requestBody']['content']['application/json'];
|
||||
export type NotesUserListTimelineResponse = operations['notes___user-list-timeline']['responses']['200']['content']['application/json'];
|
||||
export type NotesEditRequest = operations['notes___edit']['requestBody']['content']['application/json'];
|
||||
export type NotesEditResponse = operations['notes___edit']['responses']['200']['content']['application/json'];
|
||||
export type NotesVersionsRequest = operations['notes___versions']['requestBody']['content']['application/json'];
|
||||
export type NotesVersionsResponse = operations['notes___versions']['responses']['200']['content']['application/json'];
|
||||
export type NotificationsCreateRequest = operations['notifications___create']['requestBody']['content']['application/json'];
|
||||
export type PagePushRequest = operations['page-push']['requestBody']['content']['application/json'];
|
||||
export type PagesCreateRequest = operations['pages___create']['requestBody']['content']['application/json'];
|
||||
|
|
@ -540,6 +554,7 @@ export type FetchRssResponse = operations['fetch-rss']['responses']['200']['cont
|
|||
export type FetchExternalResourcesRequest = operations['fetch-external-resources']['requestBody']['content']['application/json'];
|
||||
export type FetchExternalResourcesResponse = operations['fetch-external-resources']['responses']['200']['content']['application/json'];
|
||||
export type RetentionResponse = operations['retention']['responses']['200']['content']['application/json'];
|
||||
export type SponsorsRequest = operations['sponsors']['requestBody']['content']['application/json'];
|
||||
export type BubbleGameRegisterRequest = operations['bubble-game___register']['requestBody']['content']['application/json'];
|
||||
export type BubbleGameRankingRequest = operations['bubble-game___ranking']['requestBody']['content']['application/json'];
|
||||
export type BubbleGameRankingResponse = operations['bubble-game___ranking']['responses']['200']['content']['application/json'];
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue