diff --git a/packages/frontend/src/components/MkUserSetupDialog.Profile.vue b/packages/frontend/src/components/MkUserSetupDialog.Profile.vue index 7cb48f6afb..40bf346955 100644 --- a/packages/frontend/src/components/MkUserSetupDialog.Profile.vue +++ b/packages/frontend/src/components/MkUserSetupDialog.Profile.vue @@ -52,7 +52,7 @@ watch(name, () => { // eslint-disable-next-line @typescript-eslint/prefer-nullish-coalescing name: name.value || null, }, undefined, { - '0b3f9f6a-2f4d-4b1f-9fb4-49d3a2fd7191': { + 'YOUR_NAME_CONTAINS_PROHIBITED_WORDS': { title: i18n.ts.yourNameContainsProhibitedWords, text: i18n.ts.yourNameContainsProhibitedWordsDescription, }, diff --git a/packages/frontend/src/os.ts b/packages/frontend/src/os.ts index 07d91a0644..073b82056b 100644 --- a/packages/frontend/src/os.ts +++ b/packages/frontend/src/os.ts @@ -31,12 +31,20 @@ import { focusParent } from '@/scripts/focus.js'; export const openingWindowsCount = ref(0); -export const apiWithDialog = (( +type CustomErrorDef = { + [key in T extends { code: infer C; } ? C extends string ? Exclude : string : string]?: { title?: string; text: string; }; +}; + +export function apiWithDialog< + E extends keyof Misskey.Endpoints = keyof Misskey.Endpoints, + P extends Misskey.Endpoints[E]['req'] = Misskey.Endpoints[E]['req'], + ER extends Misskey.Endpoints[E]['errors'] = Misskey.Endpoints[E]['errors'], +>( endpoint: E, data: P = {} as any, token?: string | null | undefined, - customErrors?: Record, -) => { + customErrors?: CustomErrorDef, +) { const promise = misskeyApi(endpoint, data, token); promiseDialog(promise, null, async (err) => { let title: string | undefined; @@ -90,12 +98,15 @@ export const apiWithDialog = (>( +export function promiseDialog< + T extends Promise, + R = T extends Promise ? R : never, +>( promise: T, - onSuccess?: ((res: any) => void) | null, - onFailure?: ((err: Misskey.api.APIError) => void) | null, + onSuccess?: ((res: R) => void) | null, + onFailure?: ((err: any) => void) | null, text?: string, ): T { const showing = ref(true); diff --git a/packages/frontend/src/pages/settings/profile.vue b/packages/frontend/src/pages/settings/profile.vue index 561894d2b7..717e65b54c 100644 --- a/packages/frontend/src/pages/settings/profile.vue +++ b/packages/frontend/src/pages/settings/profile.vue @@ -207,7 +207,7 @@ function save() { isBot: !!profile.isBot, isCat: !!profile.isCat, }, undefined, { - '0b3f9f6a-2f4d-4b1f-9fb4-49d3a2fd7191': { + 'YOUR_NAME_CONTAINS_PROHIBITED_WORDS': { title: i18n.ts.yourNameContainsProhibitedWords, text: i18n.ts.yourNameContainsProhibitedWordsDescription, }, diff --git a/packages/frontend/src/scripts/get-note-menu.ts b/packages/frontend/src/scripts/get-note-menu.ts index c1846b0589..d171f576e7 100644 --- a/packages/frontend/src/scripts/get-note-menu.ts +++ b/packages/frontend/src/scripts/get-note-menu.ts @@ -246,7 +246,7 @@ export function getNoteMenu(props: { os.apiWithDialog(pin ? 'i/pin' : 'i/unpin', { noteId: appearNote.id, }, undefined, { - '72dab508-c64d-498f-8740-a8eec1ba385a': { + 'PIN_LIMIT_EXCEEDED': { text: i18n.ts.pinLimitExceeded, }, }); diff --git a/packages/misskey-js/etc/misskey-js.api.md b/packages/misskey-js/etc/misskey-js.api.md index 72c236373d..03a6909b35 100644 --- a/packages/misskey-js/etc/misskey-js.api.md +++ b/packages/misskey-js/etc/misskey-js.api.md @@ -31,6 +31,11 @@ export { acct } // @public (undocumented) type Ad = components['schemas']['Ad']; +// Warning: (ae-forgotten-export) The symbol "EndpointsErrors" needs to be exported by the entry point index.d.ts +// +// @public (undocumented) +type AdminAbuseReportNotificationRecipientCreateErrors = EndpointsErrors['admin___abuse-report___notification-recipient___create'][keyof EndpointsErrors['admin___abuse-report___notification-recipient___create']]; + // Warning: (ae-forgotten-export) The symbol "operations" needs to be exported by the entry point index.d.ts // // @public (undocumented) @@ -39,141 +44,243 @@ type AdminAbuseReportNotificationRecipientCreateRequest = operations['admin___ab // @public (undocumented) type AdminAbuseReportNotificationRecipientCreateResponse = operations['admin___abuse-report___notification-recipient___create']['responses']['200']['content']['application/json']; +// @public (undocumented) +type AdminAbuseReportNotificationRecipientDeleteErrors = EndpointsErrors['admin___abuse-report___notification-recipient___delete'][keyof EndpointsErrors['admin___abuse-report___notification-recipient___delete']]; + // @public (undocumented) type AdminAbuseReportNotificationRecipientDeleteRequest = operations['admin___abuse-report___notification-recipient___delete']['requestBody']['content']['application/json']; +// @public (undocumented) +type AdminAbuseReportNotificationRecipientListErrors = EndpointsErrors['admin___abuse-report___notification-recipient___list'][keyof EndpointsErrors['admin___abuse-report___notification-recipient___list']]; + // @public (undocumented) type AdminAbuseReportNotificationRecipientListRequest = operations['admin___abuse-report___notification-recipient___list']['requestBody']['content']['application/json']; // @public (undocumented) type AdminAbuseReportNotificationRecipientListResponse = operations['admin___abuse-report___notification-recipient___list']['responses']['200']['content']['application/json']; +// @public (undocumented) +type AdminAbuseReportNotificationRecipientShowErrors = EndpointsErrors['admin___abuse-report___notification-recipient___show'][keyof EndpointsErrors['admin___abuse-report___notification-recipient___show']]; + // @public (undocumented) type AdminAbuseReportNotificationRecipientShowRequest = operations['admin___abuse-report___notification-recipient___show']['requestBody']['content']['application/json']; // @public (undocumented) type AdminAbuseReportNotificationRecipientShowResponse = operations['admin___abuse-report___notification-recipient___show']['responses']['200']['content']['application/json']; +// @public (undocumented) +type AdminAbuseReportNotificationRecipientUpdateErrors = EndpointsErrors['admin___abuse-report___notification-recipient___update'][keyof EndpointsErrors['admin___abuse-report___notification-recipient___update']]; + // @public (undocumented) type AdminAbuseReportNotificationRecipientUpdateRequest = operations['admin___abuse-report___notification-recipient___update']['requestBody']['content']['application/json']; // @public (undocumented) type AdminAbuseReportNotificationRecipientUpdateResponse = operations['admin___abuse-report___notification-recipient___update']['responses']['200']['content']['application/json']; +// @public (undocumented) +type AdminAbuseUserReportsErrors = EndpointsErrors['admin___abuse-user-reports'][keyof EndpointsErrors['admin___abuse-user-reports']]; + // @public (undocumented) type AdminAbuseUserReportsRequest = operations['admin___abuse-user-reports']['requestBody']['content']['application/json']; // @public (undocumented) type AdminAbuseUserReportsResponse = operations['admin___abuse-user-reports']['responses']['200']['content']['application/json']; +// @public (undocumented) +type AdminAccountsCreateErrors = EndpointsErrors['admin___accounts___create'][keyof EndpointsErrors['admin___accounts___create']]; + // @public (undocumented) type AdminAccountsCreateRequest = operations['admin___accounts___create']['requestBody']['content']['application/json']; // @public (undocumented) type AdminAccountsCreateResponse = operations['admin___accounts___create']['responses']['200']['content']['application/json']; +// @public (undocumented) +type AdminAccountsDeleteErrors = EndpointsErrors['admin___accounts___delete'][keyof EndpointsErrors['admin___accounts___delete']]; + // @public (undocumented) type AdminAccountsDeleteRequest = operations['admin___accounts___delete']['requestBody']['content']['application/json']; +// @public (undocumented) +type AdminAccountsFindByEmailErrors = EndpointsErrors['admin___accounts___find-by-email'][keyof EndpointsErrors['admin___accounts___find-by-email']]; + // @public (undocumented) type AdminAccountsFindByEmailRequest = operations['admin___accounts___find-by-email']['requestBody']['content']['application/json']; // @public (undocumented) type AdminAccountsFindByEmailResponse = operations['admin___accounts___find-by-email']['responses']['200']['content']['application/json']; +// @public (undocumented) +type AdminAdCreateErrors = EndpointsErrors['admin___ad___create'][keyof EndpointsErrors['admin___ad___create']]; + // @public (undocumented) type AdminAdCreateRequest = operations['admin___ad___create']['requestBody']['content']['application/json']; // @public (undocumented) type AdminAdCreateResponse = operations['admin___ad___create']['responses']['200']['content']['application/json']; +// @public (undocumented) +type AdminAdDeleteErrors = EndpointsErrors['admin___ad___delete'][keyof EndpointsErrors['admin___ad___delete']]; + // @public (undocumented) type AdminAdDeleteRequest = operations['admin___ad___delete']['requestBody']['content']['application/json']; +// @public (undocumented) +type AdminAdListErrors = EndpointsErrors['admin___ad___list'][keyof EndpointsErrors['admin___ad___list']]; + // @public (undocumented) type AdminAdListRequest = operations['admin___ad___list']['requestBody']['content']['application/json']; // @public (undocumented) type AdminAdListResponse = operations['admin___ad___list']['responses']['200']['content']['application/json']; +// @public (undocumented) +type AdminAdUpdateErrors = EndpointsErrors['admin___ad___update'][keyof EndpointsErrors['admin___ad___update']]; + // @public (undocumented) type AdminAdUpdateRequest = operations['admin___ad___update']['requestBody']['content']['application/json']; +// @public (undocumented) +type AdminAnnouncementsCreateErrors = EndpointsErrors['admin___announcements___create'][keyof EndpointsErrors['admin___announcements___create']]; + // @public (undocumented) type AdminAnnouncementsCreateRequest = operations['admin___announcements___create']['requestBody']['content']['application/json']; // @public (undocumented) type AdminAnnouncementsCreateResponse = operations['admin___announcements___create']['responses']['200']['content']['application/json']; +// @public (undocumented) +type AdminAnnouncementsDeleteErrors = EndpointsErrors['admin___announcements___delete'][keyof EndpointsErrors['admin___announcements___delete']]; + // @public (undocumented) type AdminAnnouncementsDeleteRequest = operations['admin___announcements___delete']['requestBody']['content']['application/json']; +// @public (undocumented) +type AdminAnnouncementsListErrors = EndpointsErrors['admin___announcements___list'][keyof EndpointsErrors['admin___announcements___list']]; + // @public (undocumented) type AdminAnnouncementsListRequest = operations['admin___announcements___list']['requestBody']['content']['application/json']; // @public (undocumented) type AdminAnnouncementsListResponse = operations['admin___announcements___list']['responses']['200']['content']['application/json']; +// @public (undocumented) +type AdminAnnouncementsUpdateErrors = EndpointsErrors['admin___announcements___update'][keyof EndpointsErrors['admin___announcements___update']]; + // @public (undocumented) type AdminAnnouncementsUpdateRequest = operations['admin___announcements___update']['requestBody']['content']['application/json']; +// @public (undocumented) +type AdminAvatarDecorationsCreateErrors = EndpointsErrors['admin___avatar-decorations___create'][keyof EndpointsErrors['admin___avatar-decorations___create']]; + // @public (undocumented) type AdminAvatarDecorationsCreateRequest = operations['admin___avatar-decorations___create']['requestBody']['content']['application/json']; +// @public (undocumented) +type AdminAvatarDecorationsDeleteErrors = EndpointsErrors['admin___avatar-decorations___delete'][keyof EndpointsErrors['admin___avatar-decorations___delete']]; + // @public (undocumented) type AdminAvatarDecorationsDeleteRequest = operations['admin___avatar-decorations___delete']['requestBody']['content']['application/json']; +// @public (undocumented) +type AdminAvatarDecorationsListErrors = EndpointsErrors['admin___avatar-decorations___list'][keyof EndpointsErrors['admin___avatar-decorations___list']]; + // @public (undocumented) type AdminAvatarDecorationsListRequest = operations['admin___avatar-decorations___list']['requestBody']['content']['application/json']; // @public (undocumented) type AdminAvatarDecorationsListResponse = operations['admin___avatar-decorations___list']['responses']['200']['content']['application/json']; +// @public (undocumented) +type AdminAvatarDecorationsUpdateErrors = EndpointsErrors['admin___avatar-decorations___update'][keyof EndpointsErrors['admin___avatar-decorations___update']]; + // @public (undocumented) type AdminAvatarDecorationsUpdateRequest = operations['admin___avatar-decorations___update']['requestBody']['content']['application/json']; +// @public (undocumented) +type AdminDeleteAccountErrors = EndpointsErrors['admin___delete-account'][keyof EndpointsErrors['admin___delete-account']]; + // @public (undocumented) type AdminDeleteAccountRequest = operations['admin___delete-account']['requestBody']['content']['application/json']; +// @public (undocumented) +type AdminDeleteAllFilesOfAUserErrors = EndpointsErrors['admin___delete-all-files-of-a-user'][keyof EndpointsErrors['admin___delete-all-files-of-a-user']]; + // @public (undocumented) type AdminDeleteAllFilesOfAUserRequest = operations['admin___delete-all-files-of-a-user']['requestBody']['content']['application/json']; +// @public (undocumented) +type AdminDriveCleanRemoteFilesErrors = EndpointsErrors['admin___drive___clean-remote-files'][keyof EndpointsErrors['admin___drive___clean-remote-files']]; + +// @public (undocumented) +type AdminDriveCleanupErrors = EndpointsErrors['admin___drive___cleanup'][keyof EndpointsErrors['admin___drive___cleanup']]; + +// @public (undocumented) +type AdminDriveFilesErrors = EndpointsErrors['admin___drive___files'][keyof EndpointsErrors['admin___drive___files']]; + // @public (undocumented) type AdminDriveFilesRequest = operations['admin___drive___files']['requestBody']['content']['application/json']; // @public (undocumented) type AdminDriveFilesResponse = operations['admin___drive___files']['responses']['200']['content']['application/json']; +// @public (undocumented) +type AdminDriveShowFileErrors = EndpointsErrors['admin___drive___show-file'][keyof EndpointsErrors['admin___drive___show-file']]; + // @public (undocumented) type AdminDriveShowFileRequest = operations['admin___drive___show-file']['requestBody']['content']['application/json']; // @public (undocumented) type AdminDriveShowFileResponse = operations['admin___drive___show-file']['responses']['200']['content']['application/json']; +// @public (undocumented) +type AdminEmojiAddAliasesBulkErrors = EndpointsErrors['admin___emoji___add-aliases-bulk'][keyof EndpointsErrors['admin___emoji___add-aliases-bulk']]; + // @public (undocumented) type AdminEmojiAddAliasesBulkRequest = operations['admin___emoji___add-aliases-bulk']['requestBody']['content']['application/json']; +// @public (undocumented) +type AdminEmojiAddErrors = EndpointsErrors['admin___emoji___add'][keyof EndpointsErrors['admin___emoji___add']]; + // @public (undocumented) type AdminEmojiAddRequest = operations['admin___emoji___add']['requestBody']['content']['application/json']; // @public (undocumented) type AdminEmojiAddResponse = operations['admin___emoji___add']['responses']['200']['content']['application/json']; +// @public (undocumented) +type AdminEmojiCopyErrors = EndpointsErrors['admin___emoji___copy'][keyof EndpointsErrors['admin___emoji___copy']]; + // @public (undocumented) type AdminEmojiCopyRequest = operations['admin___emoji___copy']['requestBody']['content']['application/json']; // @public (undocumented) type AdminEmojiCopyResponse = operations['admin___emoji___copy']['responses']['200']['content']['application/json']; +// @public (undocumented) +type AdminEmojiDeleteBulkErrors = EndpointsErrors['admin___emoji___delete-bulk'][keyof EndpointsErrors['admin___emoji___delete-bulk']]; + // @public (undocumented) type AdminEmojiDeleteBulkRequest = operations['admin___emoji___delete-bulk']['requestBody']['content']['application/json']; +// @public (undocumented) +type AdminEmojiDeleteErrors = EndpointsErrors['admin___emoji___delete'][keyof EndpointsErrors['admin___emoji___delete']]; + // @public (undocumented) type AdminEmojiDeleteRequest = operations['admin___emoji___delete']['requestBody']['content']['application/json']; +// @public (undocumented) +type AdminEmojiImportZipErrors = EndpointsErrors['admin___emoji___import-zip'][keyof EndpointsErrors['admin___emoji___import-zip']]; + // @public (undocumented) type AdminEmojiImportZipRequest = operations['admin___emoji___import-zip']['requestBody']['content']['application/json']; +// @public (undocumented) +type AdminEmojiListErrors = EndpointsErrors['admin___emoji___list'][keyof EndpointsErrors['admin___emoji___list']]; + +// @public (undocumented) +type AdminEmojiListRemoteErrors = EndpointsErrors['admin___emoji___list-remote'][keyof EndpointsErrors['admin___emoji___list-remote']]; + // @public (undocumented) type AdminEmojiListRemoteRequest = operations['admin___emoji___list-remote']['requestBody']['content']['application/json']; @@ -186,207 +293,369 @@ type AdminEmojiListRequest = operations['admin___emoji___list']['requestBody'][' // @public (undocumented) type AdminEmojiListResponse = operations['admin___emoji___list']['responses']['200']['content']['application/json']; +// @public (undocumented) +type AdminEmojiRemoveAliasesBulkErrors = EndpointsErrors['admin___emoji___remove-aliases-bulk'][keyof EndpointsErrors['admin___emoji___remove-aliases-bulk']]; + // @public (undocumented) type AdminEmojiRemoveAliasesBulkRequest = operations['admin___emoji___remove-aliases-bulk']['requestBody']['content']['application/json']; +// @public (undocumented) +type AdminEmojiSetAliasesBulkErrors = EndpointsErrors['admin___emoji___set-aliases-bulk'][keyof EndpointsErrors['admin___emoji___set-aliases-bulk']]; + // @public (undocumented) type AdminEmojiSetAliasesBulkRequest = operations['admin___emoji___set-aliases-bulk']['requestBody']['content']['application/json']; +// @public (undocumented) +type AdminEmojiSetCategoryBulkErrors = EndpointsErrors['admin___emoji___set-category-bulk'][keyof EndpointsErrors['admin___emoji___set-category-bulk']]; + // @public (undocumented) type AdminEmojiSetCategoryBulkRequest = operations['admin___emoji___set-category-bulk']['requestBody']['content']['application/json']; +// @public (undocumented) +type AdminEmojiSetLicenseBulkErrors = EndpointsErrors['admin___emoji___set-license-bulk'][keyof EndpointsErrors['admin___emoji___set-license-bulk']]; + // @public (undocumented) type AdminEmojiSetLicenseBulkRequest = operations['admin___emoji___set-license-bulk']['requestBody']['content']['application/json']; +// @public (undocumented) +type AdminEmojiUpdateErrors = EndpointsErrors['admin___emoji___update'][keyof EndpointsErrors['admin___emoji___update']]; + // @public (undocumented) type AdminEmojiUpdateRequest = operations['admin___emoji___update']['requestBody']['content']['application/json']; +// @public (undocumented) +type AdminFederationDeleteAllFilesErrors = EndpointsErrors['admin___federation___delete-all-files'][keyof EndpointsErrors['admin___federation___delete-all-files']]; + // @public (undocumented) type AdminFederationDeleteAllFilesRequest = operations['admin___federation___delete-all-files']['requestBody']['content']['application/json']; +// @public (undocumented) +type AdminFederationRefreshRemoteInstanceMetadataErrors = EndpointsErrors['admin___federation___refresh-remote-instance-metadata'][keyof EndpointsErrors['admin___federation___refresh-remote-instance-metadata']]; + // @public (undocumented) type AdminFederationRefreshRemoteInstanceMetadataRequest = operations['admin___federation___refresh-remote-instance-metadata']['requestBody']['content']['application/json']; +// @public (undocumented) +type AdminFederationRemoveAllFollowingErrors = EndpointsErrors['admin___federation___remove-all-following'][keyof EndpointsErrors['admin___federation___remove-all-following']]; + // @public (undocumented) type AdminFederationRemoveAllFollowingRequest = operations['admin___federation___remove-all-following']['requestBody']['content']['application/json']; +// @public (undocumented) +type AdminFederationUpdateInstanceErrors = EndpointsErrors['admin___federation___update-instance'][keyof EndpointsErrors['admin___federation___update-instance']]; + // @public (undocumented) type AdminFederationUpdateInstanceRequest = operations['admin___federation___update-instance']['requestBody']['content']['application/json']; +// @public (undocumented) +type AdminForwardAbuseUserReportErrors = EndpointsErrors['admin___forward-abuse-user-report'][keyof EndpointsErrors['admin___forward-abuse-user-report']]; + // @public (undocumented) type AdminForwardAbuseUserReportRequest = operations['admin___forward-abuse-user-report']['requestBody']['content']['application/json']; +// @public (undocumented) +type AdminGetIndexStatsErrors = EndpointsErrors['admin___get-index-stats'][keyof EndpointsErrors['admin___get-index-stats']]; + // @public (undocumented) type AdminGetIndexStatsResponse = operations['admin___get-index-stats']['responses']['200']['content']['application/json']; +// @public (undocumented) +type AdminGetTableStatsErrors = EndpointsErrors['admin___get-table-stats'][keyof EndpointsErrors['admin___get-table-stats']]; + // @public (undocumented) type AdminGetTableStatsResponse = operations['admin___get-table-stats']['responses']['200']['content']['application/json']; +// @public (undocumented) +type AdminGetUserIpsErrors = EndpointsErrors['admin___get-user-ips'][keyof EndpointsErrors['admin___get-user-ips']]; + // @public (undocumented) type AdminGetUserIpsRequest = operations['admin___get-user-ips']['requestBody']['content']['application/json']; // @public (undocumented) type AdminGetUserIpsResponse = operations['admin___get-user-ips']['responses']['200']['content']['application/json']; +// @public (undocumented) +type AdminInviteCreateErrors = EndpointsErrors['admin___invite___create'][keyof EndpointsErrors['admin___invite___create']]; + // @public (undocumented) type AdminInviteCreateRequest = operations['admin___invite___create']['requestBody']['content']['application/json']; // @public (undocumented) type AdminInviteCreateResponse = operations['admin___invite___create']['responses']['200']['content']['application/json']; +// @public (undocumented) +type AdminInviteListErrors = EndpointsErrors['admin___invite___list'][keyof EndpointsErrors['admin___invite___list']]; + // @public (undocumented) type AdminInviteListRequest = operations['admin___invite___list']['requestBody']['content']['application/json']; // @public (undocumented) type AdminInviteListResponse = operations['admin___invite___list']['responses']['200']['content']['application/json']; +// @public (undocumented) +type AdminMetaErrors = EndpointsErrors['admin___meta'][keyof EndpointsErrors['admin___meta']]; + // @public (undocumented) type AdminMetaResponse = operations['admin___meta']['responses']['200']['content']['application/json']; +// @public (undocumented) +type AdminPromoCreateErrors = EndpointsErrors['admin___promo___create'][keyof EndpointsErrors['admin___promo___create']]; + // @public (undocumented) type AdminPromoCreateRequest = operations['admin___promo___create']['requestBody']['content']['application/json']; +// @public (undocumented) +type AdminQueueClearErrors = EndpointsErrors['admin___queue___clear'][keyof EndpointsErrors['admin___queue___clear']]; + +// @public (undocumented) +type AdminQueueDeliverDelayedErrors = EndpointsErrors['admin___queue___deliver-delayed'][keyof EndpointsErrors['admin___queue___deliver-delayed']]; + // @public (undocumented) type AdminQueueDeliverDelayedResponse = operations['admin___queue___deliver-delayed']['responses']['200']['content']['application/json']; +// @public (undocumented) +type AdminQueueInboxDelayedErrors = EndpointsErrors['admin___queue___inbox-delayed'][keyof EndpointsErrors['admin___queue___inbox-delayed']]; + // @public (undocumented) type AdminQueueInboxDelayedResponse = operations['admin___queue___inbox-delayed']['responses']['200']['content']['application/json']; +// @public (undocumented) +type AdminQueuePromoteErrors = EndpointsErrors['admin___queue___promote'][keyof EndpointsErrors['admin___queue___promote']]; + // @public (undocumented) type AdminQueuePromoteRequest = operations['admin___queue___promote']['requestBody']['content']['application/json']; +// @public (undocumented) +type AdminQueueStatsErrors = EndpointsErrors['admin___queue___stats'][keyof EndpointsErrors['admin___queue___stats']]; + // @public (undocumented) type AdminQueueStatsResponse = operations['admin___queue___stats']['responses']['200']['content']['application/json']; +// @public (undocumented) +type AdminRelaysAddErrors = EndpointsErrors['admin___relays___add'][keyof EndpointsErrors['admin___relays___add']]; + // @public (undocumented) type AdminRelaysAddRequest = operations['admin___relays___add']['requestBody']['content']['application/json']; // @public (undocumented) type AdminRelaysAddResponse = operations['admin___relays___add']['responses']['200']['content']['application/json']; +// @public (undocumented) +type AdminRelaysListErrors = EndpointsErrors['admin___relays___list'][keyof EndpointsErrors['admin___relays___list']]; + // @public (undocumented) type AdminRelaysListResponse = operations['admin___relays___list']['responses']['200']['content']['application/json']; +// @public (undocumented) +type AdminRelaysRemoveErrors = EndpointsErrors['admin___relays___remove'][keyof EndpointsErrors['admin___relays___remove']]; + // @public (undocumented) type AdminRelaysRemoveRequest = operations['admin___relays___remove']['requestBody']['content']['application/json']; +// @public (undocumented) +type AdminResetPasswordErrors = EndpointsErrors['admin___reset-password'][keyof EndpointsErrors['admin___reset-password']]; + // @public (undocumented) type AdminResetPasswordRequest = operations['admin___reset-password']['requestBody']['content']['application/json']; // @public (undocumented) type AdminResetPasswordResponse = operations['admin___reset-password']['responses']['200']['content']['application/json']; +// @public (undocumented) +type AdminResolveAbuseUserReportErrors = EndpointsErrors['admin___resolve-abuse-user-report'][keyof EndpointsErrors['admin___resolve-abuse-user-report']]; + // @public (undocumented) type AdminResolveAbuseUserReportRequest = operations['admin___resolve-abuse-user-report']['requestBody']['content']['application/json']; +// @public (undocumented) +type AdminRolesAssignErrors = EndpointsErrors['admin___roles___assign'][keyof EndpointsErrors['admin___roles___assign']]; + // @public (undocumented) type AdminRolesAssignRequest = operations['admin___roles___assign']['requestBody']['content']['application/json']; +// @public (undocumented) +type AdminRolesCreateErrors = EndpointsErrors['admin___roles___create'][keyof EndpointsErrors['admin___roles___create']]; + // @public (undocumented) type AdminRolesCreateRequest = operations['admin___roles___create']['requestBody']['content']['application/json']; // @public (undocumented) type AdminRolesCreateResponse = operations['admin___roles___create']['responses']['200']['content']['application/json']; +// @public (undocumented) +type AdminRolesDeleteErrors = EndpointsErrors['admin___roles___delete'][keyof EndpointsErrors['admin___roles___delete']]; + // @public (undocumented) type AdminRolesDeleteRequest = operations['admin___roles___delete']['requestBody']['content']['application/json']; +// @public (undocumented) +type AdminRolesListErrors = EndpointsErrors['admin___roles___list'][keyof EndpointsErrors['admin___roles___list']]; + // @public (undocumented) type AdminRolesListResponse = operations['admin___roles___list']['responses']['200']['content']['application/json']; +// @public (undocumented) +type AdminRolesShowErrors = EndpointsErrors['admin___roles___show'][keyof EndpointsErrors['admin___roles___show']]; + // @public (undocumented) type AdminRolesShowRequest = operations['admin___roles___show']['requestBody']['content']['application/json']; // @public (undocumented) type AdminRolesShowResponse = operations['admin___roles___show']['responses']['200']['content']['application/json']; +// @public (undocumented) +type AdminRolesUnassignErrors = EndpointsErrors['admin___roles___unassign'][keyof EndpointsErrors['admin___roles___unassign']]; + // @public (undocumented) type AdminRolesUnassignRequest = operations['admin___roles___unassign']['requestBody']['content']['application/json']; +// @public (undocumented) +type AdminRolesUpdateDefaultPoliciesErrors = EndpointsErrors['admin___roles___update-default-policies'][keyof EndpointsErrors['admin___roles___update-default-policies']]; + // @public (undocumented) type AdminRolesUpdateDefaultPoliciesRequest = operations['admin___roles___update-default-policies']['requestBody']['content']['application/json']; +// @public (undocumented) +type AdminRolesUpdateErrors = EndpointsErrors['admin___roles___update'][keyof EndpointsErrors['admin___roles___update']]; + // @public (undocumented) type AdminRolesUpdateRequest = operations['admin___roles___update']['requestBody']['content']['application/json']; +// @public (undocumented) +type AdminRolesUsersErrors = EndpointsErrors['admin___roles___users'][keyof EndpointsErrors['admin___roles___users']]; + // @public (undocumented) type AdminRolesUsersRequest = operations['admin___roles___users']['requestBody']['content']['application/json']; // @public (undocumented) type AdminRolesUsersResponse = operations['admin___roles___users']['responses']['200']['content']['application/json']; +// @public (undocumented) +type AdminSendEmailErrors = EndpointsErrors['admin___send-email'][keyof EndpointsErrors['admin___send-email']]; + // @public (undocumented) type AdminSendEmailRequest = operations['admin___send-email']['requestBody']['content']['application/json']; +// @public (undocumented) +type AdminServerInfoErrors = EndpointsErrors['admin___server-info'][keyof EndpointsErrors['admin___server-info']]; + // @public (undocumented) type AdminServerInfoResponse = operations['admin___server-info']['responses']['200']['content']['application/json']; +// @public (undocumented) +type AdminShowModerationLogsErrors = EndpointsErrors['admin___show-moderation-logs'][keyof EndpointsErrors['admin___show-moderation-logs']]; + // @public (undocumented) type AdminShowModerationLogsRequest = operations['admin___show-moderation-logs']['requestBody']['content']['application/json']; // @public (undocumented) type AdminShowModerationLogsResponse = operations['admin___show-moderation-logs']['responses']['200']['content']['application/json']; +// @public (undocumented) +type AdminShowUserErrors = EndpointsErrors['admin___show-user'][keyof EndpointsErrors['admin___show-user']]; + // @public (undocumented) type AdminShowUserRequest = operations['admin___show-user']['requestBody']['content']['application/json']; // @public (undocumented) type AdminShowUserResponse = operations['admin___show-user']['responses']['200']['content']['application/json']; +// @public (undocumented) +type AdminShowUsersErrors = EndpointsErrors['admin___show-users'][keyof EndpointsErrors['admin___show-users']]; + // @public (undocumented) type AdminShowUsersRequest = operations['admin___show-users']['requestBody']['content']['application/json']; // @public (undocumented) type AdminShowUsersResponse = operations['admin___show-users']['responses']['200']['content']['application/json']; +// @public (undocumented) +type AdminSuspendUserErrors = EndpointsErrors['admin___suspend-user'][keyof EndpointsErrors['admin___suspend-user']]; + // @public (undocumented) type AdminSuspendUserRequest = operations['admin___suspend-user']['requestBody']['content']['application/json']; +// @public (undocumented) +type AdminSystemWebhookCreateErrors = EndpointsErrors['admin___system-webhook___create'][keyof EndpointsErrors['admin___system-webhook___create']]; + // @public (undocumented) type AdminSystemWebhookCreateRequest = operations['admin___system-webhook___create']['requestBody']['content']['application/json']; // @public (undocumented) type AdminSystemWebhookCreateResponse = operations['admin___system-webhook___create']['responses']['200']['content']['application/json']; +// @public (undocumented) +type AdminSystemWebhookDeleteErrors = EndpointsErrors['admin___system-webhook___delete'][keyof EndpointsErrors['admin___system-webhook___delete']]; + // @public (undocumented) type AdminSystemWebhookDeleteRequest = operations['admin___system-webhook___delete']['requestBody']['content']['application/json']; +// @public (undocumented) +type AdminSystemWebhookListErrors = EndpointsErrors['admin___system-webhook___list'][keyof EndpointsErrors['admin___system-webhook___list']]; + // @public (undocumented) type AdminSystemWebhookListRequest = operations['admin___system-webhook___list']['requestBody']['content']['application/json']; // @public (undocumented) type AdminSystemWebhookListResponse = operations['admin___system-webhook___list']['responses']['200']['content']['application/json']; +// @public (undocumented) +type AdminSystemWebhookShowErrors = EndpointsErrors['admin___system-webhook___show'][keyof EndpointsErrors['admin___system-webhook___show']]; + // @public (undocumented) type AdminSystemWebhookShowRequest = operations['admin___system-webhook___show']['requestBody']['content']['application/json']; // @public (undocumented) type AdminSystemWebhookShowResponse = operations['admin___system-webhook___show']['responses']['200']['content']['application/json']; +// @public (undocumented) +type AdminSystemWebhookTestErrors = EndpointsErrors['admin___system-webhook___test'][keyof EndpointsErrors['admin___system-webhook___test']]; + // @public (undocumented) type AdminSystemWebhookTestRequest = operations['admin___system-webhook___test']['requestBody']['content']['application/json']; +// @public (undocumented) +type AdminSystemWebhookUpdateErrors = EndpointsErrors['admin___system-webhook___update'][keyof EndpointsErrors['admin___system-webhook___update']]; + // @public (undocumented) type AdminSystemWebhookUpdateRequest = operations['admin___system-webhook___update']['requestBody']['content']['application/json']; // @public (undocumented) type AdminSystemWebhookUpdateResponse = operations['admin___system-webhook___update']['responses']['200']['content']['application/json']; +// @public (undocumented) +type AdminUnsetUserAvatarErrors = EndpointsErrors['admin___unset-user-avatar'][keyof EndpointsErrors['admin___unset-user-avatar']]; + // @public (undocumented) type AdminUnsetUserAvatarRequest = operations['admin___unset-user-avatar']['requestBody']['content']['application/json']; +// @public (undocumented) +type AdminUnsetUserBannerErrors = EndpointsErrors['admin___unset-user-banner'][keyof EndpointsErrors['admin___unset-user-banner']]; + // @public (undocumented) type AdminUnsetUserBannerRequest = operations['admin___unset-user-banner']['requestBody']['content']['application/json']; +// @public (undocumented) +type AdminUnsuspendUserErrors = EndpointsErrors['admin___unsuspend-user'][keyof EndpointsErrors['admin___unsuspend-user']]; + // @public (undocumented) type AdminUnsuspendUserRequest = operations['admin___unsuspend-user']['requestBody']['content']['application/json']; +// @public (undocumented) +type AdminUpdateAbuseUserReportErrors = EndpointsErrors['admin___update-abuse-user-report'][keyof EndpointsErrors['admin___update-abuse-user-report']]; + // @public (undocumented) type AdminUpdateAbuseUserReportRequest = operations['admin___update-abuse-user-report']['requestBody']['content']['application/json']; +// @public (undocumented) +type AdminUpdateMetaErrors = EndpointsErrors['admin___update-meta'][keyof EndpointsErrors['admin___update-meta']]; + // @public (undocumented) type AdminUpdateMetaRequest = operations['admin___update-meta']['requestBody']['content']['application/json']; +// @public (undocumented) +type AdminUpdateUserNoteErrors = EndpointsErrors['admin___update-user-note'][keyof EndpointsErrors['admin___update-user-note']]; + // @public (undocumented) type AdminUpdateUserNoteRequest = operations['admin___update-user-note']['requestBody']['content']['application/json']; @@ -398,12 +667,18 @@ type AnnouncementCreated = { announcement: Announcement; }; +// @public (undocumented) +type AnnouncementsErrors = EndpointsErrors['announcements'][keyof EndpointsErrors['announcements']]; + // @public (undocumented) type AnnouncementsRequest = operations['announcements']['requestBody']['content']['application/json']; // @public (undocumented) type AnnouncementsResponse = operations['announcements']['responses']['200']['content']['application/json']; +// @public (undocumented) +type AnnouncementsShowErrors = EndpointsErrors['announcements___show'][keyof EndpointsErrors['announcements___show']]; + // @public (undocumented) type AnnouncementsShowRequest = operations['announcements___show']['requestBody']['content']['application/json']; @@ -413,36 +688,57 @@ type AnnouncementsShowResponse = operations['announcements___show']['responses'] // @public (undocumented) type Antenna = components['schemas']['Antenna']; +// @public (undocumented) +type AntennasCreateErrors = EndpointsErrors['antennas___create'][keyof EndpointsErrors['antennas___create']]; + // @public (undocumented) type AntennasCreateRequest = operations['antennas___create']['requestBody']['content']['application/json']; // @public (undocumented) type AntennasCreateResponse = operations['antennas___create']['responses']['200']['content']['application/json']; +// @public (undocumented) +type AntennasDeleteErrors = EndpointsErrors['antennas___delete'][keyof EndpointsErrors['antennas___delete']]; + // @public (undocumented) type AntennasDeleteRequest = operations['antennas___delete']['requestBody']['content']['application/json']; +// @public (undocumented) +type AntennasListErrors = EndpointsErrors['antennas___list'][keyof EndpointsErrors['antennas___list']]; + // @public (undocumented) type AntennasListResponse = operations['antennas___list']['responses']['200']['content']['application/json']; +// @public (undocumented) +type AntennasNotesErrors = EndpointsErrors['antennas___notes'][keyof EndpointsErrors['antennas___notes']]; + // @public (undocumented) type AntennasNotesRequest = operations['antennas___notes']['requestBody']['content']['application/json']; // @public (undocumented) type AntennasNotesResponse = operations['antennas___notes']['responses']['200']['content']['application/json']; +// @public (undocumented) +type AntennasShowErrors = EndpointsErrors['antennas___show'][keyof EndpointsErrors['antennas___show']]; + // @public (undocumented) type AntennasShowRequest = operations['antennas___show']['requestBody']['content']['application/json']; // @public (undocumented) type AntennasShowResponse = operations['antennas___show']['responses']['200']['content']['application/json']; +// @public (undocumented) +type AntennasUpdateErrors = EndpointsErrors['antennas___update'][keyof EndpointsErrors['antennas___update']]; + // @public (undocumented) type AntennasUpdateRequest = operations['antennas___update']['requestBody']['content']['application/json']; // @public (undocumented) type AntennasUpdateResponse = operations['antennas___update']['responses']['200']['content']['application/json']; +// @public (undocumented) +type ApGetErrors = EndpointsErrors['ap___get'][keyof EndpointsErrors['ap___get']]; + // @public (undocumented) type ApGetRequest = operations['ap___get']['requestBody']['content']['application/json']; @@ -487,39 +783,60 @@ type APIError = { // @public (undocumented) type App = components['schemas']['App']; +// @public (undocumented) +type AppCreateErrors = EndpointsErrors['app___create'][keyof EndpointsErrors['app___create']]; + // @public (undocumented) type AppCreateRequest = operations['app___create']['requestBody']['content']['application/json']; // @public (undocumented) type AppCreateResponse = operations['app___create']['responses']['200']['content']['application/json']; +// @public (undocumented) +type AppShowErrors = EndpointsErrors['app___show'][keyof EndpointsErrors['app___show']]; + // @public (undocumented) type AppShowRequest = operations['app___show']['requestBody']['content']['application/json']; // @public (undocumented) type AppShowResponse = operations['app___show']['responses']['200']['content']['application/json']; +// @public (undocumented) +type ApShowErrors = EndpointsErrors['ap___show'][keyof EndpointsErrors['ap___show']]; + // @public (undocumented) type ApShowRequest = operations['ap___show']['requestBody']['content']['application/json']; // @public (undocumented) type ApShowResponse = operations['ap___show']['responses']['200']['content']['application/json']; +// @public (undocumented) +type AuthAcceptErrors = EndpointsErrors['auth___accept'][keyof EndpointsErrors['auth___accept']]; + // @public (undocumented) type AuthAcceptRequest = operations['auth___accept']['requestBody']['content']['application/json']; +// @public (undocumented) +type AuthSessionGenerateErrors = EndpointsErrors['auth___session___generate'][keyof EndpointsErrors['auth___session___generate']]; + // @public (undocumented) type AuthSessionGenerateRequest = operations['auth___session___generate']['requestBody']['content']['application/json']; // @public (undocumented) type AuthSessionGenerateResponse = operations['auth___session___generate']['responses']['200']['content']['application/json']; +// @public (undocumented) +type AuthSessionShowErrors = EndpointsErrors['auth___session___show'][keyof EndpointsErrors['auth___session___show']]; + // @public (undocumented) type AuthSessionShowRequest = operations['auth___session___show']['requestBody']['content']['application/json']; // @public (undocumented) type AuthSessionShowResponse = operations['auth___session___show']['responses']['200']['content']['application/json']; +// @public (undocumented) +type AuthSessionUserkeyErrors = EndpointsErrors['auth___session___userkey'][keyof EndpointsErrors['auth___session___userkey']]; + // @public (undocumented) type AuthSessionUserkeyRequest = operations['auth___session___userkey']['requestBody']['content']['application/json']; @@ -529,30 +846,45 @@ type AuthSessionUserkeyResponse = operations['auth___session___userkey']['respon // @public (undocumented) type Blocking = components['schemas']['Blocking']; +// @public (undocumented) +type BlockingCreateErrors = EndpointsErrors['blocking___create'][keyof EndpointsErrors['blocking___create']]; + // @public (undocumented) type BlockingCreateRequest = operations['blocking___create']['requestBody']['content']['application/json']; // @public (undocumented) type BlockingCreateResponse = operations['blocking___create']['responses']['200']['content']['application/json']; +// @public (undocumented) +type BlockingDeleteErrors = EndpointsErrors['blocking___delete'][keyof EndpointsErrors['blocking___delete']]; + // @public (undocumented) type BlockingDeleteRequest = operations['blocking___delete']['requestBody']['content']['application/json']; // @public (undocumented) type BlockingDeleteResponse = operations['blocking___delete']['responses']['200']['content']['application/json']; +// @public (undocumented) +type BlockingListErrors = EndpointsErrors['blocking___list'][keyof EndpointsErrors['blocking___list']]; + // @public (undocumented) type BlockingListRequest = operations['blocking___list']['requestBody']['content']['application/json']; // @public (undocumented) type BlockingListResponse = operations['blocking___list']['responses']['200']['content']['application/json']; +// @public (undocumented) +type BubbleGameRankingErrors = EndpointsErrors['bubble-game___ranking'][keyof EndpointsErrors['bubble-game___ranking']]; + // @public (undocumented) type BubbleGameRankingRequest = operations['bubble-game___ranking']['requestBody']['content']['application/json']; // @public (undocumented) type BubbleGameRankingResponse = operations['bubble-game___ranking']['responses']['200']['content']['application/json']; +// @public (undocumented) +type BubbleGameRegisterErrors = EndpointsErrors['bubble-game___register'][keyof EndpointsErrors['bubble-game___register']]; + // @public (undocumented) type BubbleGameRegisterRequest = operations['bubble-game___register']['requestBody']['content']['application/json']; @@ -802,132 +1134,207 @@ export type Channels = { }; }; +// @public (undocumented) +type ChannelsCreateErrors = EndpointsErrors['channels___create'][keyof EndpointsErrors['channels___create']]; + // @public (undocumented) type ChannelsCreateRequest = operations['channels___create']['requestBody']['content']['application/json']; // @public (undocumented) type ChannelsCreateResponse = operations['channels___create']['responses']['200']['content']['application/json']; +// @public (undocumented) +type ChannelsFavoriteErrors = EndpointsErrors['channels___favorite'][keyof EndpointsErrors['channels___favorite']]; + // @public (undocumented) type ChannelsFavoriteRequest = operations['channels___favorite']['requestBody']['content']['application/json']; +// @public (undocumented) +type ChannelsFeaturedErrors = EndpointsErrors['channels___featured'][keyof EndpointsErrors['channels___featured']]; + // @public (undocumented) type ChannelsFeaturedResponse = operations['channels___featured']['responses']['200']['content']['application/json']; +// @public (undocumented) +type ChannelsFollowedErrors = EndpointsErrors['channels___followed'][keyof EndpointsErrors['channels___followed']]; + // @public (undocumented) type ChannelsFollowedRequest = operations['channels___followed']['requestBody']['content']['application/json']; // @public (undocumented) type ChannelsFollowedResponse = operations['channels___followed']['responses']['200']['content']['application/json']; +// @public (undocumented) +type ChannelsFollowErrors = EndpointsErrors['channels___follow'][keyof EndpointsErrors['channels___follow']]; + // @public (undocumented) type ChannelsFollowRequest = operations['channels___follow']['requestBody']['content']['application/json']; +// @public (undocumented) +type ChannelsMyFavoritesErrors = EndpointsErrors['channels___my-favorites'][keyof EndpointsErrors['channels___my-favorites']]; + // @public (undocumented) type ChannelsMyFavoritesResponse = operations['channels___my-favorites']['responses']['200']['content']['application/json']; +// @public (undocumented) +type ChannelsOwnedErrors = EndpointsErrors['channels___owned'][keyof EndpointsErrors['channels___owned']]; + // @public (undocumented) type ChannelsOwnedRequest = operations['channels___owned']['requestBody']['content']['application/json']; // @public (undocumented) type ChannelsOwnedResponse = operations['channels___owned']['responses']['200']['content']['application/json']; +// @public (undocumented) +type ChannelsSearchErrors = EndpointsErrors['channels___search'][keyof EndpointsErrors['channels___search']]; + // @public (undocumented) type ChannelsSearchRequest = operations['channels___search']['requestBody']['content']['application/json']; // @public (undocumented) type ChannelsSearchResponse = operations['channels___search']['responses']['200']['content']['application/json']; +// @public (undocumented) +type ChannelsShowErrors = EndpointsErrors['channels___show'][keyof EndpointsErrors['channels___show']]; + // @public (undocumented) type ChannelsShowRequest = operations['channels___show']['requestBody']['content']['application/json']; // @public (undocumented) type ChannelsShowResponse = operations['channels___show']['responses']['200']['content']['application/json']; +// @public (undocumented) +type ChannelsTimelineErrors = EndpointsErrors['channels___timeline'][keyof EndpointsErrors['channels___timeline']]; + // @public (undocumented) type ChannelsTimelineRequest = operations['channels___timeline']['requestBody']['content']['application/json']; // @public (undocumented) type ChannelsTimelineResponse = operations['channels___timeline']['responses']['200']['content']['application/json']; +// @public (undocumented) +type ChannelsUnfavoriteErrors = EndpointsErrors['channels___unfavorite'][keyof EndpointsErrors['channels___unfavorite']]; + // @public (undocumented) type ChannelsUnfavoriteRequest = operations['channels___unfavorite']['requestBody']['content']['application/json']; +// @public (undocumented) +type ChannelsUnfollowErrors = EndpointsErrors['channels___unfollow'][keyof EndpointsErrors['channels___unfollow']]; + // @public (undocumented) type ChannelsUnfollowRequest = operations['channels___unfollow']['requestBody']['content']['application/json']; +// @public (undocumented) +type ChannelsUpdateErrors = EndpointsErrors['channels___update'][keyof EndpointsErrors['channels___update']]; + // @public (undocumented) type ChannelsUpdateRequest = operations['channels___update']['requestBody']['content']['application/json']; // @public (undocumented) type ChannelsUpdateResponse = operations['channels___update']['responses']['200']['content']['application/json']; +// @public (undocumented) +type ChartsActiveUsersErrors = EndpointsErrors['charts___active-users'][keyof EndpointsErrors['charts___active-users']]; + // @public (undocumented) type ChartsActiveUsersRequest = operations['charts___active-users']['requestBody']['content']['application/json']; // @public (undocumented) type ChartsActiveUsersResponse = operations['charts___active-users']['responses']['200']['content']['application/json']; +// @public (undocumented) +type ChartsApRequestErrors = EndpointsErrors['charts___ap-request'][keyof EndpointsErrors['charts___ap-request']]; + // @public (undocumented) type ChartsApRequestRequest = operations['charts___ap-request']['requestBody']['content']['application/json']; // @public (undocumented) type ChartsApRequestResponse = operations['charts___ap-request']['responses']['200']['content']['application/json']; +// @public (undocumented) +type ChartsDriveErrors = EndpointsErrors['charts___drive'][keyof EndpointsErrors['charts___drive']]; + // @public (undocumented) type ChartsDriveRequest = operations['charts___drive']['requestBody']['content']['application/json']; // @public (undocumented) type ChartsDriveResponse = operations['charts___drive']['responses']['200']['content']['application/json']; +// @public (undocumented) +type ChartsFederationErrors = EndpointsErrors['charts___federation'][keyof EndpointsErrors['charts___federation']]; + // @public (undocumented) type ChartsFederationRequest = operations['charts___federation']['requestBody']['content']['application/json']; // @public (undocumented) type ChartsFederationResponse = operations['charts___federation']['responses']['200']['content']['application/json']; +// @public (undocumented) +type ChartsInstanceErrors = EndpointsErrors['charts___instance'][keyof EndpointsErrors['charts___instance']]; + // @public (undocumented) type ChartsInstanceRequest = operations['charts___instance']['requestBody']['content']['application/json']; // @public (undocumented) type ChartsInstanceResponse = operations['charts___instance']['responses']['200']['content']['application/json']; +// @public (undocumented) +type ChartsNotesErrors = EndpointsErrors['charts___notes'][keyof EndpointsErrors['charts___notes']]; + // @public (undocumented) type ChartsNotesRequest = operations['charts___notes']['requestBody']['content']['application/json']; // @public (undocumented) type ChartsNotesResponse = operations['charts___notes']['responses']['200']['content']['application/json']; +// @public (undocumented) +type ChartsUserDriveErrors = EndpointsErrors['charts___user___drive'][keyof EndpointsErrors['charts___user___drive']]; + // @public (undocumented) type ChartsUserDriveRequest = operations['charts___user___drive']['requestBody']['content']['application/json']; // @public (undocumented) type ChartsUserDriveResponse = operations['charts___user___drive']['responses']['200']['content']['application/json']; +// @public (undocumented) +type ChartsUserFollowingErrors = EndpointsErrors['charts___user___following'][keyof EndpointsErrors['charts___user___following']]; + // @public (undocumented) type ChartsUserFollowingRequest = operations['charts___user___following']['requestBody']['content']['application/json']; // @public (undocumented) type ChartsUserFollowingResponse = operations['charts___user___following']['responses']['200']['content']['application/json']; +// @public (undocumented) +type ChartsUserNotesErrors = EndpointsErrors['charts___user___notes'][keyof EndpointsErrors['charts___user___notes']]; + // @public (undocumented) type ChartsUserNotesRequest = operations['charts___user___notes']['requestBody']['content']['application/json']; // @public (undocumented) type ChartsUserNotesResponse = operations['charts___user___notes']['responses']['200']['content']['application/json']; +// @public (undocumented) +type ChartsUserPvErrors = EndpointsErrors['charts___user___pv'][keyof EndpointsErrors['charts___user___pv']]; + // @public (undocumented) type ChartsUserPvRequest = operations['charts___user___pv']['requestBody']['content']['application/json']; // @public (undocumented) type ChartsUserPvResponse = operations['charts___user___pv']['responses']['200']['content']['application/json']; +// @public (undocumented) +type ChartsUserReactionsErrors = EndpointsErrors['charts___user___reactions'][keyof EndpointsErrors['charts___user___reactions']]; + // @public (undocumented) type ChartsUserReactionsRequest = operations['charts___user___reactions']['requestBody']['content']['application/json']; // @public (undocumented) type ChartsUserReactionsResponse = operations['charts___user___reactions']['responses']['200']['content']['application/json']; +// @public (undocumented) +type ChartsUsersErrors = EndpointsErrors['charts___users'][keyof EndpointsErrors['charts___users']]; + // @public (undocumented) type ChartsUsersRequest = operations['charts___users']['requestBody']['content']['application/json']; @@ -937,84 +1344,150 @@ type ChartsUsersResponse = operations['charts___users']['responses']['200']['con // @public (undocumented) type Clip = components['schemas']['Clip']; +// @public (undocumented) +type ClipsAddNoteErrors = EndpointsErrors['clips___add-note'][keyof EndpointsErrors['clips___add-note']]; + // @public (undocumented) type ClipsAddNoteRequest = operations['clips___add-note']['requestBody']['content']['application/json']; +// @public (undocumented) +type ClipsCreateErrors = EndpointsErrors['clips___create'][keyof EndpointsErrors['clips___create']]; + // @public (undocumented) type ClipsCreateRequest = operations['clips___create']['requestBody']['content']['application/json']; // @public (undocumented) type ClipsCreateResponse = operations['clips___create']['responses']['200']['content']['application/json']; +// @public (undocumented) +type ClipsDeleteErrors = EndpointsErrors['clips___delete'][keyof EndpointsErrors['clips___delete']]; + // @public (undocumented) type ClipsDeleteRequest = operations['clips___delete']['requestBody']['content']['application/json']; +// @public (undocumented) +type ClipsFavoriteErrors = EndpointsErrors['clips___favorite'][keyof EndpointsErrors['clips___favorite']]; + // @public (undocumented) type ClipsFavoriteRequest = operations['clips___favorite']['requestBody']['content']['application/json']; +// @public (undocumented) +type ClipsListErrors = EndpointsErrors['clips___list'][keyof EndpointsErrors['clips___list']]; + // @public (undocumented) type ClipsListResponse = operations['clips___list']['responses']['200']['content']['application/json']; +// @public (undocumented) +type ClipsMyFavoritesErrors = EndpointsErrors['clips___my-favorites'][keyof EndpointsErrors['clips___my-favorites']]; + // @public (undocumented) type ClipsMyFavoritesResponse = operations['clips___my-favorites']['responses']['200']['content']['application/json']; +// @public (undocumented) +type ClipsNotesErrors = EndpointsErrors['clips___notes'][keyof EndpointsErrors['clips___notes']]; + // @public (undocumented) type ClipsNotesRequest = operations['clips___notes']['requestBody']['content']['application/json']; // @public (undocumented) type ClipsNotesResponse = operations['clips___notes']['responses']['200']['content']['application/json']; +// @public (undocumented) +type ClipsRemoveNoteErrors = EndpointsErrors['clips___remove-note'][keyof EndpointsErrors['clips___remove-note']]; + // @public (undocumented) type ClipsRemoveNoteRequest = operations['clips___remove-note']['requestBody']['content']['application/json']; +// @public (undocumented) +type ClipsShowErrors = EndpointsErrors['clips___show'][keyof EndpointsErrors['clips___show']]; + // @public (undocumented) type ClipsShowRequest = operations['clips___show']['requestBody']['content']['application/json']; // @public (undocumented) type ClipsShowResponse = operations['clips___show']['responses']['200']['content']['application/json']; +// @public (undocumented) +type ClipsUnfavoriteErrors = EndpointsErrors['clips___unfavorite'][keyof EndpointsErrors['clips___unfavorite']]; + // @public (undocumented) type ClipsUnfavoriteRequest = operations['clips___unfavorite']['requestBody']['content']['application/json']; +// @public (undocumented) +type ClipsUpdateErrors = EndpointsErrors['clips___update'][keyof EndpointsErrors['clips___update']]; + // @public (undocumented) type ClipsUpdateRequest = operations['clips___update']['requestBody']['content']['application/json']; // @public (undocumented) type ClipsUpdateResponse = operations['clips___update']['responses']['200']['content']['application/json']; +// @public (undocumented) +type CommonErrorTypes = { + 'INVALID_PARAM': IdentifiableError['3d81ceae-475f-4600-b2a8-2bc116157532']; + 'CREDENTIAL_REQUIRED': IdentifiableError['1384574d-a912-4b81-8601-c7b1c4085df1']; + 'AUTHENTICATION_FAILED': IdentifiableError['b0a7f5f8-dc2f-4171-b91f-de88ad238e14']; + 'I_AM_AI': IdentifiableError['60c46cd1-f23a-46b1-bebe-5d2b73951a84']; + 'INTERNAL_ERROR': IdentifiableError['5d37dbcb-891e-41ca-a3d6-e690c97775ac']; +}; + // @public (undocumented) type DateString = string; +// @public (undocumented) +type DriveErrors = EndpointsErrors['drive'][keyof EndpointsErrors['drive']]; + // @public (undocumented) type DriveFile = components['schemas']['DriveFile']; +// @public (undocumented) +type DriveFilesAttachedNotesErrors = EndpointsErrors['drive___files___attached-notes'][keyof EndpointsErrors['drive___files___attached-notes']]; + // @public (undocumented) type DriveFilesAttachedNotesRequest = operations['drive___files___attached-notes']['requestBody']['content']['application/json']; // @public (undocumented) type DriveFilesAttachedNotesResponse = operations['drive___files___attached-notes']['responses']['200']['content']['application/json']; +// @public (undocumented) +type DriveFilesCheckExistenceErrors = EndpointsErrors['drive___files___check-existence'][keyof EndpointsErrors['drive___files___check-existence']]; + // @public (undocumented) type DriveFilesCheckExistenceRequest = operations['drive___files___check-existence']['requestBody']['content']['application/json']; // @public (undocumented) type DriveFilesCheckExistenceResponse = operations['drive___files___check-existence']['responses']['200']['content']['application/json']; +// @public (undocumented) +type DriveFilesCreateErrors = EndpointsErrors['drive___files___create'][keyof EndpointsErrors['drive___files___create']]; + // @public (undocumented) type DriveFilesCreateRequest = operations['drive___files___create']['requestBody']['content']['multipart/form-data']; // @public (undocumented) type DriveFilesCreateResponse = operations['drive___files___create']['responses']['200']['content']['application/json']; +// @public (undocumented) +type DriveFilesDeleteErrors = EndpointsErrors['drive___files___delete'][keyof EndpointsErrors['drive___files___delete']]; + // @public (undocumented) type DriveFilesDeleteRequest = operations['drive___files___delete']['requestBody']['content']['application/json']; +// @public (undocumented) +type DriveFilesErrors = EndpointsErrors['drive___files'][keyof EndpointsErrors['drive___files']]; + +// @public (undocumented) +type DriveFilesFindByHashErrors = EndpointsErrors['drive___files___find-by-hash'][keyof EndpointsErrors['drive___files___find-by-hash']]; + // @public (undocumented) type DriveFilesFindByHashRequest = operations['drive___files___find-by-hash']['requestBody']['content']['application/json']; // @public (undocumented) type DriveFilesFindByHashResponse = operations['drive___files___find-by-hash']['responses']['200']['content']['application/json']; +// @public (undocumented) +type DriveFilesFindErrors = EndpointsErrors['drive___files___find'][keyof EndpointsErrors['drive___files___find']]; + // @public (undocumented) type DriveFilesFindRequest = operations['drive___files___find']['requestBody']['content']['application/json']; @@ -1027,33 +1500,54 @@ type DriveFilesRequest = operations['drive___files']['requestBody']['content'][' // @public (undocumented) type DriveFilesResponse = operations['drive___files']['responses']['200']['content']['application/json']; +// @public (undocumented) +type DriveFilesShowErrors = EndpointsErrors['drive___files___show'][keyof EndpointsErrors['drive___files___show']]; + // @public (undocumented) type DriveFilesShowRequest = operations['drive___files___show']['requestBody']['content']['application/json']; // @public (undocumented) type DriveFilesShowResponse = operations['drive___files___show']['responses']['200']['content']['application/json']; +// @public (undocumented) +type DriveFilesUpdateErrors = EndpointsErrors['drive___files___update'][keyof EndpointsErrors['drive___files___update']]; + // @public (undocumented) type DriveFilesUpdateRequest = operations['drive___files___update']['requestBody']['content']['application/json']; // @public (undocumented) type DriveFilesUpdateResponse = operations['drive___files___update']['responses']['200']['content']['application/json']; +// @public (undocumented) +type DriveFilesUploadFromUrlErrors = EndpointsErrors['drive___files___upload-from-url'][keyof EndpointsErrors['drive___files___upload-from-url']]; + // @public (undocumented) type DriveFilesUploadFromUrlRequest = operations['drive___files___upload-from-url']['requestBody']['content']['application/json']; // @public (undocumented) type DriveFolder = components['schemas']['DriveFolder']; +// @public (undocumented) +type DriveFoldersCreateErrors = EndpointsErrors['drive___folders___create'][keyof EndpointsErrors['drive___folders___create']]; + // @public (undocumented) type DriveFoldersCreateRequest = operations['drive___folders___create']['requestBody']['content']['application/json']; // @public (undocumented) type DriveFoldersCreateResponse = operations['drive___folders___create']['responses']['200']['content']['application/json']; +// @public (undocumented) +type DriveFoldersDeleteErrors = EndpointsErrors['drive___folders___delete'][keyof EndpointsErrors['drive___folders___delete']]; + // @public (undocumented) type DriveFoldersDeleteRequest = operations['drive___folders___delete']['requestBody']['content']['application/json']; +// @public (undocumented) +type DriveFoldersErrors = EndpointsErrors['drive___folders'][keyof EndpointsErrors['drive___folders']]; + +// @public (undocumented) +type DriveFoldersFindErrors = EndpointsErrors['drive___folders___find'][keyof EndpointsErrors['drive___folders___find']]; + // @public (undocumented) type DriveFoldersFindRequest = operations['drive___folders___find']['requestBody']['content']['application/json']; @@ -1066,12 +1560,18 @@ type DriveFoldersRequest = operations['drive___folders']['requestBody']['content // @public (undocumented) type DriveFoldersResponse = operations['drive___folders']['responses']['200']['content']['application/json']; +// @public (undocumented) +type DriveFoldersShowErrors = EndpointsErrors['drive___folders___show'][keyof EndpointsErrors['drive___folders___show']]; + // @public (undocumented) type DriveFoldersShowRequest = operations['drive___folders___show']['requestBody']['content']['application/json']; // @public (undocumented) type DriveFoldersShowResponse = operations['drive___folders___show']['responses']['200']['content']['application/json']; +// @public (undocumented) +type DriveFoldersUpdateErrors = EndpointsErrors['drive___folders___update'][keyof EndpointsErrors['drive___folders___update']]; + // @public (undocumented) type DriveFoldersUpdateRequest = operations['drive___folders___update']['requestBody']['content']['application/json']; @@ -1081,12 +1581,18 @@ type DriveFoldersUpdateResponse = operations['drive___folders___update']['respon // @public (undocumented) type DriveResponse = operations['drive']['responses']['200']['content']['application/json']; +// @public (undocumented) +type DriveStreamErrors = EndpointsErrors['drive___stream'][keyof EndpointsErrors['drive___stream']]; + // @public (undocumented) type DriveStreamRequest = operations['drive___stream']['requestBody']['content']['application/json']; // @public (undocumented) type DriveStreamResponse = operations['drive___stream']['responses']['200']['content']['application/json']; +// @public (undocumented) +type EmailAddressAvailableErrors = EndpointsErrors['email-address___available'][keyof EndpointsErrors['email-address___available']]; + // @public (undocumented) type EmailAddressAvailableRequest = operations['email-address___available']['requestBody']['content']['application/json']; @@ -1106,12 +1612,18 @@ type EmojiDeleted = { // @public (undocumented) type EmojiDetailed = components['schemas']['EmojiDetailed']; +// @public (undocumented) +type EmojiErrors = EndpointsErrors['emoji'][keyof EndpointsErrors['emoji']]; + // @public (undocumented) type EmojiRequest = operations['emoji']['requestBody']['content']['application/json']; // @public (undocumented) type EmojiResponse = operations['emoji']['responses']['200']['content']['application/json']; +// @public (undocumented) +type EmojisErrors = EndpointsErrors['emojis'][keyof EndpointsErrors['emojis']]; + // @public (undocumented) type EmojiSimple = components['schemas']['EmojiSimple']; @@ -1123,12 +1635,18 @@ type EmojiUpdated = { emojis: EmojiDetailed[]; }; +// @public (undocumented) +type EmptyErrors = Record | undefined; + // @public (undocumented) type EmptyRequest = Record | undefined; // @public (undocumented) type EmptyResponse = Record | undefined; +// @public (undocumented) +type EndpointErrors = EndpointsErrors['endpoint'][keyof EndpointsErrors['endpoint']]; + // @public (undocumented) type EndpointRequest = operations['endpoint']['requestBody']['content']['application/json']; @@ -1155,18 +1673,22 @@ export type Endpoints = Overwrite; res: AdminRolesCreateResponse; + errors: AdminRolesCreateErrors; }; }>; +// @public (undocumented) +type EndpointsErrors_2 = EndpointsErrors['endpoints'][keyof EndpointsErrors['endpoints']]; + // @public (undocumented) type EndpointsResponse = operations['endpoints']['responses']['200']['content']['application/json']; declare namespace entities { export { + CommonErrorTypes, ID, DateString, PureRenote, @@ -1214,589 +1742,976 @@ declare namespace entities { SignupResponse, SignupPendingRequest, SignupPendingResponse, + SignupErrors, SigninFlowRequest, SigninFlowResponse, + SigninFlowErrors, SigninWithPasskeyRequest, SigninWithPasskeyInitResponse, SigninWithPasskeyResponse, + SigninWithPasskeyErrors, PartialRolePolicyOverride, EmptyRequest, EmptyResponse, + EmptyErrors, AdminMetaResponse, + AdminMetaErrors, AdminAbuseUserReportsRequest, AdminAbuseUserReportsResponse, + AdminAbuseUserReportsErrors, AdminAbuseReportNotificationRecipientListRequest, AdminAbuseReportNotificationRecipientListResponse, + AdminAbuseReportNotificationRecipientListErrors, AdminAbuseReportNotificationRecipientShowRequest, AdminAbuseReportNotificationRecipientShowResponse, + AdminAbuseReportNotificationRecipientShowErrors, AdminAbuseReportNotificationRecipientCreateRequest, AdminAbuseReportNotificationRecipientCreateResponse, + AdminAbuseReportNotificationRecipientCreateErrors, AdminAbuseReportNotificationRecipientUpdateRequest, AdminAbuseReportNotificationRecipientUpdateResponse, + AdminAbuseReportNotificationRecipientUpdateErrors, AdminAbuseReportNotificationRecipientDeleteRequest, + AdminAbuseReportNotificationRecipientDeleteErrors, AdminAccountsCreateRequest, AdminAccountsCreateResponse, + AdminAccountsCreateErrors, AdminAccountsDeleteRequest, + AdminAccountsDeleteErrors, AdminAccountsFindByEmailRequest, AdminAccountsFindByEmailResponse, + AdminAccountsFindByEmailErrors, AdminAdCreateRequest, AdminAdCreateResponse, + AdminAdCreateErrors, AdminAdDeleteRequest, + AdminAdDeleteErrors, AdminAdListRequest, AdminAdListResponse, + AdminAdListErrors, AdminAdUpdateRequest, + AdminAdUpdateErrors, AdminAnnouncementsCreateRequest, AdminAnnouncementsCreateResponse, + AdminAnnouncementsCreateErrors, AdminAnnouncementsDeleteRequest, + AdminAnnouncementsDeleteErrors, AdminAnnouncementsListRequest, AdminAnnouncementsListResponse, + AdminAnnouncementsListErrors, AdminAnnouncementsUpdateRequest, + AdminAnnouncementsUpdateErrors, AdminAvatarDecorationsCreateRequest, + AdminAvatarDecorationsCreateErrors, AdminAvatarDecorationsDeleteRequest, + AdminAvatarDecorationsDeleteErrors, AdminAvatarDecorationsListRequest, AdminAvatarDecorationsListResponse, + AdminAvatarDecorationsListErrors, AdminAvatarDecorationsUpdateRequest, + AdminAvatarDecorationsUpdateErrors, AdminDeleteAllFilesOfAUserRequest, + AdminDeleteAllFilesOfAUserErrors, AdminUnsetUserAvatarRequest, + AdminUnsetUserAvatarErrors, AdminUnsetUserBannerRequest, + AdminUnsetUserBannerErrors, + AdminDriveCleanRemoteFilesErrors, + AdminDriveCleanupErrors, AdminDriveFilesRequest, AdminDriveFilesResponse, + AdminDriveFilesErrors, AdminDriveShowFileRequest, AdminDriveShowFileResponse, + AdminDriveShowFileErrors, AdminEmojiAddAliasesBulkRequest, + AdminEmojiAddAliasesBulkErrors, AdminEmojiAddRequest, AdminEmojiAddResponse, + AdminEmojiAddErrors, AdminEmojiCopyRequest, AdminEmojiCopyResponse, + AdminEmojiCopyErrors, AdminEmojiDeleteBulkRequest, + AdminEmojiDeleteBulkErrors, AdminEmojiDeleteRequest, + AdminEmojiDeleteErrors, AdminEmojiImportZipRequest, + AdminEmojiImportZipErrors, AdminEmojiListRemoteRequest, AdminEmojiListRemoteResponse, + AdminEmojiListRemoteErrors, AdminEmojiListRequest, AdminEmojiListResponse, + AdminEmojiListErrors, AdminEmojiRemoveAliasesBulkRequest, + AdminEmojiRemoveAliasesBulkErrors, AdminEmojiSetAliasesBulkRequest, + AdminEmojiSetAliasesBulkErrors, AdminEmojiSetCategoryBulkRequest, + AdminEmojiSetCategoryBulkErrors, AdminEmojiSetLicenseBulkRequest, + AdminEmojiSetLicenseBulkErrors, AdminEmojiUpdateRequest, + AdminEmojiUpdateErrors, AdminFederationDeleteAllFilesRequest, + AdminFederationDeleteAllFilesErrors, AdminFederationRefreshRemoteInstanceMetadataRequest, + AdminFederationRefreshRemoteInstanceMetadataErrors, AdminFederationRemoveAllFollowingRequest, + AdminFederationRemoveAllFollowingErrors, AdminFederationUpdateInstanceRequest, + AdminFederationUpdateInstanceErrors, AdminGetIndexStatsResponse, + AdminGetIndexStatsErrors, AdminGetTableStatsResponse, + AdminGetTableStatsErrors, AdminGetUserIpsRequest, AdminGetUserIpsResponse, + AdminGetUserIpsErrors, AdminInviteCreateRequest, AdminInviteCreateResponse, + AdminInviteCreateErrors, AdminInviteListRequest, AdminInviteListResponse, + AdminInviteListErrors, AdminPromoCreateRequest, + AdminPromoCreateErrors, + AdminQueueClearErrors, AdminQueueDeliverDelayedResponse, + AdminQueueDeliverDelayedErrors, AdminQueueInboxDelayedResponse, + AdminQueueInboxDelayedErrors, AdminQueuePromoteRequest, + AdminQueuePromoteErrors, AdminQueueStatsResponse, + AdminQueueStatsErrors, AdminRelaysAddRequest, AdminRelaysAddResponse, + AdminRelaysAddErrors, AdminRelaysListResponse, + AdminRelaysListErrors, AdminRelaysRemoveRequest, + AdminRelaysRemoveErrors, AdminResetPasswordRequest, AdminResetPasswordResponse, + AdminResetPasswordErrors, AdminResolveAbuseUserReportRequest, + AdminResolveAbuseUserReportErrors, AdminForwardAbuseUserReportRequest, + AdminForwardAbuseUserReportErrors, AdminUpdateAbuseUserReportRequest, + AdminUpdateAbuseUserReportErrors, AdminSendEmailRequest, + AdminSendEmailErrors, AdminServerInfoResponse, + AdminServerInfoErrors, AdminShowModerationLogsRequest, AdminShowModerationLogsResponse, + AdminShowModerationLogsErrors, AdminShowUserRequest, AdminShowUserResponse, + AdminShowUserErrors, AdminShowUsersRequest, AdminShowUsersResponse, + AdminShowUsersErrors, AdminSuspendUserRequest, + AdminSuspendUserErrors, AdminUnsuspendUserRequest, + AdminUnsuspendUserErrors, AdminUpdateMetaRequest, + AdminUpdateMetaErrors, AdminDeleteAccountRequest, + AdminDeleteAccountErrors, AdminUpdateUserNoteRequest, + AdminUpdateUserNoteErrors, AdminRolesCreateRequest, AdminRolesCreateResponse, + AdminRolesCreateErrors, AdminRolesDeleteRequest, + AdminRolesDeleteErrors, AdminRolesListResponse, + AdminRolesListErrors, AdminRolesShowRequest, AdminRolesShowResponse, + AdminRolesShowErrors, AdminRolesUpdateRequest, + AdminRolesUpdateErrors, AdminRolesAssignRequest, + AdminRolesAssignErrors, AdminRolesUnassignRequest, + AdminRolesUnassignErrors, AdminRolesUpdateDefaultPoliciesRequest, + AdminRolesUpdateDefaultPoliciesErrors, AdminRolesUsersRequest, AdminRolesUsersResponse, + AdminRolesUsersErrors, AdminSystemWebhookCreateRequest, AdminSystemWebhookCreateResponse, + AdminSystemWebhookCreateErrors, AdminSystemWebhookDeleteRequest, + AdminSystemWebhookDeleteErrors, AdminSystemWebhookListRequest, AdminSystemWebhookListResponse, + AdminSystemWebhookListErrors, AdminSystemWebhookShowRequest, AdminSystemWebhookShowResponse, + AdminSystemWebhookShowErrors, AdminSystemWebhookUpdateRequest, AdminSystemWebhookUpdateResponse, + AdminSystemWebhookUpdateErrors, AdminSystemWebhookTestRequest, + AdminSystemWebhookTestErrors, AnnouncementsRequest, AnnouncementsResponse, + AnnouncementsErrors, AnnouncementsShowRequest, AnnouncementsShowResponse, + AnnouncementsShowErrors, AntennasCreateRequest, AntennasCreateResponse, + AntennasCreateErrors, AntennasDeleteRequest, + AntennasDeleteErrors, AntennasListResponse, + AntennasListErrors, AntennasNotesRequest, AntennasNotesResponse, + AntennasNotesErrors, AntennasShowRequest, AntennasShowResponse, + AntennasShowErrors, AntennasUpdateRequest, AntennasUpdateResponse, + AntennasUpdateErrors, ApGetRequest, ApGetResponse, + ApGetErrors, ApShowRequest, ApShowResponse, + ApShowErrors, AppCreateRequest, AppCreateResponse, + AppCreateErrors, AppShowRequest, AppShowResponse, + AppShowErrors, AuthAcceptRequest, + AuthAcceptErrors, AuthSessionGenerateRequest, AuthSessionGenerateResponse, + AuthSessionGenerateErrors, AuthSessionShowRequest, AuthSessionShowResponse, + AuthSessionShowErrors, AuthSessionUserkeyRequest, AuthSessionUserkeyResponse, + AuthSessionUserkeyErrors, BlockingCreateRequest, BlockingCreateResponse, + BlockingCreateErrors, BlockingDeleteRequest, BlockingDeleteResponse, + BlockingDeleteErrors, BlockingListRequest, BlockingListResponse, + BlockingListErrors, ChannelsCreateRequest, ChannelsCreateResponse, + ChannelsCreateErrors, ChannelsFeaturedResponse, + ChannelsFeaturedErrors, ChannelsFollowRequest, + ChannelsFollowErrors, ChannelsFollowedRequest, ChannelsFollowedResponse, + ChannelsFollowedErrors, ChannelsOwnedRequest, ChannelsOwnedResponse, + ChannelsOwnedErrors, ChannelsShowRequest, ChannelsShowResponse, + ChannelsShowErrors, ChannelsTimelineRequest, ChannelsTimelineResponse, + ChannelsTimelineErrors, ChannelsUnfollowRequest, + ChannelsUnfollowErrors, ChannelsUpdateRequest, ChannelsUpdateResponse, + ChannelsUpdateErrors, ChannelsFavoriteRequest, + ChannelsFavoriteErrors, ChannelsUnfavoriteRequest, + ChannelsUnfavoriteErrors, ChannelsMyFavoritesResponse, + ChannelsMyFavoritesErrors, ChannelsSearchRequest, ChannelsSearchResponse, + ChannelsSearchErrors, ChartsActiveUsersRequest, ChartsActiveUsersResponse, + ChartsActiveUsersErrors, ChartsApRequestRequest, ChartsApRequestResponse, + ChartsApRequestErrors, ChartsDriveRequest, ChartsDriveResponse, + ChartsDriveErrors, ChartsFederationRequest, ChartsFederationResponse, + ChartsFederationErrors, ChartsInstanceRequest, ChartsInstanceResponse, + ChartsInstanceErrors, ChartsNotesRequest, ChartsNotesResponse, + ChartsNotesErrors, ChartsUserDriveRequest, ChartsUserDriveResponse, + ChartsUserDriveErrors, ChartsUserFollowingRequest, ChartsUserFollowingResponse, + ChartsUserFollowingErrors, ChartsUserNotesRequest, ChartsUserNotesResponse, + ChartsUserNotesErrors, ChartsUserPvRequest, ChartsUserPvResponse, + ChartsUserPvErrors, ChartsUserReactionsRequest, ChartsUserReactionsResponse, + ChartsUserReactionsErrors, ChartsUsersRequest, ChartsUsersResponse, + ChartsUsersErrors, ClipsAddNoteRequest, + ClipsAddNoteErrors, ClipsRemoveNoteRequest, + ClipsRemoveNoteErrors, ClipsCreateRequest, ClipsCreateResponse, + ClipsCreateErrors, ClipsDeleteRequest, + ClipsDeleteErrors, ClipsListResponse, + ClipsListErrors, ClipsNotesRequest, ClipsNotesResponse, + ClipsNotesErrors, ClipsShowRequest, ClipsShowResponse, + ClipsShowErrors, ClipsUpdateRequest, ClipsUpdateResponse, + ClipsUpdateErrors, ClipsFavoriteRequest, + ClipsFavoriteErrors, ClipsUnfavoriteRequest, + ClipsUnfavoriteErrors, ClipsMyFavoritesResponse, + ClipsMyFavoritesErrors, DriveResponse, + DriveErrors, DriveFilesRequest, DriveFilesResponse, + DriveFilesErrors, DriveFilesAttachedNotesRequest, DriveFilesAttachedNotesResponse, + DriveFilesAttachedNotesErrors, DriveFilesCheckExistenceRequest, DriveFilesCheckExistenceResponse, + DriveFilesCheckExistenceErrors, DriveFilesCreateRequest, DriveFilesCreateResponse, + DriveFilesCreateErrors, DriveFilesDeleteRequest, + DriveFilesDeleteErrors, DriveFilesFindByHashRequest, DriveFilesFindByHashResponse, + DriveFilesFindByHashErrors, DriveFilesFindRequest, DriveFilesFindResponse, + DriveFilesFindErrors, DriveFilesShowRequest, DriveFilesShowResponse, + DriveFilesShowErrors, DriveFilesUpdateRequest, DriveFilesUpdateResponse, + DriveFilesUpdateErrors, DriveFilesUploadFromUrlRequest, + DriveFilesUploadFromUrlErrors, DriveFoldersRequest, DriveFoldersResponse, + DriveFoldersErrors, DriveFoldersCreateRequest, DriveFoldersCreateResponse, + DriveFoldersCreateErrors, DriveFoldersDeleteRequest, + DriveFoldersDeleteErrors, DriveFoldersFindRequest, DriveFoldersFindResponse, + DriveFoldersFindErrors, DriveFoldersShowRequest, DriveFoldersShowResponse, + DriveFoldersShowErrors, DriveFoldersUpdateRequest, DriveFoldersUpdateResponse, + DriveFoldersUpdateErrors, DriveStreamRequest, DriveStreamResponse, + DriveStreamErrors, EmailAddressAvailableRequest, EmailAddressAvailableResponse, + EmailAddressAvailableErrors, EndpointRequest, EndpointResponse, + EndpointErrors, EndpointsResponse, + EndpointsErrors_2 as EndpointsErrors, + ExportCustomEmojisErrors, FederationFollowersRequest, FederationFollowersResponse, + FederationFollowersErrors, FederationFollowingRequest, FederationFollowingResponse, + FederationFollowingErrors, FederationInstancesRequest, FederationInstancesResponse, + FederationInstancesErrors, FederationShowInstanceRequest, FederationShowInstanceResponse, + FederationShowInstanceErrors, FederationUpdateRemoteUserRequest, + FederationUpdateRemoteUserErrors, FederationUsersRequest, FederationUsersResponse, + FederationUsersErrors, FederationStatsRequest, FederationStatsResponse, + FederationStatsErrors, FollowingCreateRequest, FollowingCreateResponse, + FollowingCreateErrors, FollowingDeleteRequest, FollowingDeleteResponse, + FollowingDeleteErrors, FollowingUpdateRequest, FollowingUpdateResponse, + FollowingUpdateErrors, FollowingUpdateAllRequest, + FollowingUpdateAllErrors, FollowingInvalidateRequest, FollowingInvalidateResponse, + FollowingInvalidateErrors, FollowingRequestsAcceptRequest, + FollowingRequestsAcceptErrors, FollowingRequestsCancelRequest, FollowingRequestsCancelResponse, + FollowingRequestsCancelErrors, FollowingRequestsListRequest, FollowingRequestsListResponse, + FollowingRequestsListErrors, FollowingRequestsRejectRequest, + FollowingRequestsRejectErrors, GalleryFeaturedRequest, GalleryFeaturedResponse, + GalleryFeaturedErrors, GalleryPopularResponse, + GalleryPopularErrors, GalleryPostsRequest, GalleryPostsResponse, + GalleryPostsErrors, GalleryPostsCreateRequest, GalleryPostsCreateResponse, + GalleryPostsCreateErrors, GalleryPostsDeleteRequest, + GalleryPostsDeleteErrors, GalleryPostsLikeRequest, + GalleryPostsLikeErrors, GalleryPostsShowRequest, GalleryPostsShowResponse, + GalleryPostsShowErrors, GalleryPostsUnlikeRequest, + GalleryPostsUnlikeErrors, GalleryPostsUpdateRequest, GalleryPostsUpdateResponse, + GalleryPostsUpdateErrors, GetOnlineUsersCountResponse, + GetOnlineUsersCountErrors, GetAvatarDecorationsResponse, + GetAvatarDecorationsErrors, HashtagsListRequest, HashtagsListResponse, + HashtagsListErrors, HashtagsSearchRequest, HashtagsSearchResponse, + HashtagsSearchErrors, HashtagsShowRequest, HashtagsShowResponse, + HashtagsShowErrors, HashtagsTrendResponse, + HashtagsTrendErrors, HashtagsUsersRequest, HashtagsUsersResponse, + HashtagsUsersErrors, IResponse, + IErrors, I2faDoneRequest, I2faDoneResponse, + I2faDoneErrors, I2faKeyDoneRequest, I2faKeyDoneResponse, + I2faKeyDoneErrors, I2faPasswordLessRequest, + I2faPasswordLessErrors, I2faRegisterKeyRequest, I2faRegisterKeyResponse, + I2faRegisterKeyErrors, I2faRegisterRequest, I2faRegisterResponse, + I2faRegisterErrors, I2faUpdateKeyRequest, + I2faUpdateKeyErrors, I2faRemoveKeyRequest, + I2faRemoveKeyErrors, I2faUnregisterRequest, + I2faUnregisterErrors, IAppsRequest, IAppsResponse, + IAppsErrors, IAuthorizedAppsRequest, IAuthorizedAppsResponse, + IAuthorizedAppsErrors, IClaimAchievementRequest, + IClaimAchievementErrors, IChangePasswordRequest, + IChangePasswordErrors, IDeleteAccountRequest, + IDeleteAccountErrors, + IExportBlockingErrors, IExportFollowingRequest, + IExportFollowingErrors, + IExportMuteErrors, + IExportNotesErrors, + IExportClipsErrors, + IExportFavoritesErrors, + IExportUserListsErrors, + IExportAntennasErrors, IFavoritesRequest, IFavoritesResponse, + IFavoritesErrors, IGalleryLikesRequest, IGalleryLikesResponse, + IGalleryLikesErrors, IGalleryPostsRequest, IGalleryPostsResponse, + IGalleryPostsErrors, IImportBlockingRequest, + IImportBlockingErrors, IImportFollowingRequest, + IImportFollowingErrors, IImportMutingRequest, + IImportMutingErrors, IImportUserListsRequest, + IImportUserListsErrors, IImportAntennasRequest, + IImportAntennasErrors, INotificationsRequest, INotificationsResponse, + INotificationsErrors, INotificationsGroupedRequest, INotificationsGroupedResponse, + INotificationsGroupedErrors, IPageLikesRequest, IPageLikesResponse, + IPageLikesErrors, IPagesRequest, IPagesResponse, + IPagesErrors, IPinRequest, IPinResponse, + IPinErrors, + IReadAllUnreadNotesErrors, IReadAnnouncementRequest, + IReadAnnouncementErrors, IRegenerateTokenRequest, + IRegenerateTokenErrors, IRegistryGetAllRequest, IRegistryGetAllResponse, + IRegistryGetAllErrors, IRegistryGetDetailRequest, IRegistryGetDetailResponse, + IRegistryGetDetailErrors, IRegistryGetRequest, IRegistryGetResponse, + IRegistryGetErrors, IRegistryKeysWithTypeRequest, IRegistryKeysWithTypeResponse, + IRegistryKeysWithTypeErrors, IRegistryKeysRequest, IRegistryKeysResponse, + IRegistryKeysErrors, IRegistryRemoveRequest, + IRegistryRemoveErrors, IRegistryScopesWithDomainResponse, + IRegistryScopesWithDomainErrors, IRegistrySetRequest, + IRegistrySetErrors, IRevokeTokenRequest, + IRevokeTokenErrors, ISigninHistoryRequest, ISigninHistoryResponse, + ISigninHistoryErrors, IUnpinRequest, IUnpinResponse, + IUnpinErrors, IUpdateEmailRequest, IUpdateEmailResponse, + IUpdateEmailErrors, IUpdateRequest, IUpdateResponse, + IUpdateErrors, IMoveRequest, IMoveResponse, + IMoveErrors, IWebhooksCreateRequest, IWebhooksCreateResponse, + IWebhooksCreateErrors, IWebhooksListResponse, + IWebhooksListErrors, IWebhooksShowRequest, IWebhooksShowResponse, + IWebhooksShowErrors, IWebhooksUpdateRequest, + IWebhooksUpdateErrors, IWebhooksDeleteRequest, + IWebhooksDeleteErrors, IWebhooksTestRequest, + IWebhooksTestErrors, InviteCreateResponse, + InviteCreateErrors, InviteDeleteRequest, + InviteDeleteErrors, InviteListRequest, InviteListResponse, + InviteListErrors, InviteLimitResponse, + InviteLimitErrors, MetaRequest, MetaResponse, + MetaErrors, EmojisResponse, + EmojisErrors, EmojiRequest, EmojiResponse, + EmojiErrors, MiauthGenTokenRequest, MiauthGenTokenResponse, + MiauthGenTokenErrors, MuteCreateRequest, + MuteCreateErrors, MuteDeleteRequest, + MuteDeleteErrors, MuteListRequest, MuteListResponse, + MuteListErrors, RenoteMuteCreateRequest, + RenoteMuteCreateErrors, RenoteMuteDeleteRequest, + RenoteMuteDeleteErrors, RenoteMuteListRequest, RenoteMuteListResponse, + RenoteMuteListErrors, MyAppsRequest, MyAppsResponse, + MyAppsErrors, NotesRequest, NotesResponse, + NotesErrors, NotesChildrenRequest, NotesChildrenResponse, + NotesChildrenErrors, NotesClipsRequest, NotesClipsResponse, + NotesClipsErrors, NotesConversationRequest, NotesConversationResponse, + NotesConversationErrors, NotesCreateRequest, NotesCreateResponse, + NotesCreateErrors, NotesDeleteRequest, + NotesDeleteErrors, NotesFavoritesCreateRequest, + NotesFavoritesCreateErrors, NotesFavoritesDeleteRequest, + NotesFavoritesDeleteErrors, NotesFeaturedRequest, NotesFeaturedResponse, + NotesFeaturedErrors, NotesGlobalTimelineRequest, NotesGlobalTimelineResponse, + NotesGlobalTimelineErrors, NotesHybridTimelineRequest, NotesHybridTimelineResponse, + NotesHybridTimelineErrors, NotesLocalTimelineRequest, NotesLocalTimelineResponse, + NotesLocalTimelineErrors, NotesMentionsRequest, NotesMentionsResponse, + NotesMentionsErrors, NotesPollsRecommendationRequest, NotesPollsRecommendationResponse, + NotesPollsRecommendationErrors, NotesPollsVoteRequest, + NotesPollsVoteErrors, NotesReactionsRequest, NotesReactionsResponse, + NotesReactionsErrors, NotesReactionsCreateRequest, + NotesReactionsCreateErrors, NotesReactionsDeleteRequest, + NotesReactionsDeleteErrors, NotesRenotesRequest, NotesRenotesResponse, + NotesRenotesErrors, NotesRepliesRequest, NotesRepliesResponse, + NotesRepliesErrors, NotesSearchByTagRequest, NotesSearchByTagResponse, + NotesSearchByTagErrors, NotesSearchRequest, NotesSearchResponse, + NotesSearchErrors, NotesShowRequest, NotesShowResponse, + NotesShowErrors, NotesStateRequest, NotesStateResponse, + NotesStateErrors, NotesThreadMutingCreateRequest, + NotesThreadMutingCreateErrors, NotesThreadMutingDeleteRequest, + NotesThreadMutingDeleteErrors, NotesTimelineRequest, NotesTimelineResponse, + NotesTimelineErrors, NotesTranslateRequest, NotesTranslateResponse, + NotesTranslateErrors, NotesUnrenoteRequest, + NotesUnrenoteErrors, NotesUserListTimelineRequest, NotesUserListTimelineResponse, + NotesUserListTimelineErrors, NotificationsCreateRequest, + NotificationsCreateErrors, + NotificationsFlushErrors, + NotificationsMarkAllAsReadErrors, + NotificationsTestNotificationErrors, PagePushRequest, + PagePushErrors, PagesCreateRequest, PagesCreateResponse, + PagesCreateErrors, PagesDeleteRequest, + PagesDeleteErrors, PagesFeaturedResponse, + PagesFeaturedErrors, PagesLikeRequest, + PagesLikeErrors, PagesShowRequest, PagesShowResponse, + PagesShowErrors, PagesUnlikeRequest, + PagesUnlikeErrors, PagesUpdateRequest, + PagesUpdateErrors, FlashCreateRequest, FlashCreateResponse, + FlashCreateErrors, FlashDeleteRequest, + FlashDeleteErrors, FlashFeaturedRequest, FlashFeaturedResponse, + FlashFeaturedErrors, FlashLikeRequest, + FlashLikeErrors, FlashShowRequest, FlashShowResponse, + FlashShowErrors, FlashUnlikeRequest, + FlashUnlikeErrors, FlashUpdateRequest, + FlashUpdateErrors, FlashMyRequest, FlashMyResponse, + FlashMyErrors, FlashMyLikesRequest, FlashMyLikesResponse, + FlashMyLikesErrors, PingResponse, + PingErrors, PinnedUsersResponse, + PinnedUsersErrors, PromoReadRequest, + PromoReadErrors, RolesListResponse, + RolesListErrors, RolesShowRequest, RolesShowResponse, + RolesShowErrors, RolesUsersRequest, RolesUsersResponse, + RolesUsersErrors, RolesNotesRequest, RolesNotesResponse, + RolesNotesErrors, RequestResetPasswordRequest, + RequestResetPasswordErrors, + ResetDbErrors, ResetPasswordRequest, + ResetPasswordErrors, ServerInfoResponse, + ServerInfoErrors, StatsResponse, + StatsErrors, SwShowRegistrationRequest, SwShowRegistrationResponse, + SwShowRegistrationErrors, SwUpdateRegistrationRequest, SwUpdateRegistrationResponse, + SwUpdateRegistrationErrors, SwRegisterRequest, SwRegisterResponse, + SwRegisterErrors, SwUnregisterRequest, + SwUnregisterErrors, TestRequest, TestResponse, + TestErrors, UsernameAvailableRequest, UsernameAvailableResponse, + UsernameAvailableErrors, UsersRequest, UsersResponse, + UsersErrors, UsersClipsRequest, UsersClipsResponse, + UsersClipsErrors, UsersFollowersRequest, UsersFollowersResponse, + UsersFollowersErrors, UsersFollowingRequest, UsersFollowingResponse, + UsersFollowingErrors, UsersGalleryPostsRequest, UsersGalleryPostsResponse, + UsersGalleryPostsErrors, UsersGetFrequentlyRepliedUsersRequest, UsersGetFrequentlyRepliedUsersResponse, + UsersGetFrequentlyRepliedUsersErrors, UsersFeaturedNotesRequest, UsersFeaturedNotesResponse, + UsersFeaturedNotesErrors, UsersListsCreateRequest, UsersListsCreateResponse, + UsersListsCreateErrors, UsersListsDeleteRequest, + UsersListsDeleteErrors, UsersListsListRequest, UsersListsListResponse, + UsersListsListErrors, UsersListsPullRequest, + UsersListsPullErrors, UsersListsPushRequest, + UsersListsPushErrors, UsersListsShowRequest, UsersListsShowResponse, + UsersListsShowErrors, UsersListsFavoriteRequest, + UsersListsFavoriteErrors, UsersListsUnfavoriteRequest, + UsersListsUnfavoriteErrors, UsersListsUpdateRequest, UsersListsUpdateResponse, + UsersListsUpdateErrors, UsersListsCreateFromPublicRequest, UsersListsCreateFromPublicResponse, + UsersListsCreateFromPublicErrors, UsersListsUpdateMembershipRequest, + UsersListsUpdateMembershipErrors, UsersListsGetMembershipsRequest, UsersListsGetMembershipsResponse, + UsersListsGetMembershipsErrors, UsersNotesRequest, UsersNotesResponse, + UsersNotesErrors, UsersPagesRequest, UsersPagesResponse, + UsersPagesErrors, UsersFlashsRequest, UsersFlashsResponse, + UsersFlashsErrors, UsersReactionsRequest, UsersReactionsResponse, + UsersReactionsErrors, UsersRecommendationRequest, UsersRecommendationResponse, + UsersRecommendationErrors, UsersRelationRequest, UsersRelationResponse, + UsersRelationErrors, UsersReportAbuseRequest, + UsersReportAbuseErrors, UsersSearchByUsernameAndHostRequest, UsersSearchByUsernameAndHostResponse, + UsersSearchByUsernameAndHostErrors, UsersSearchRequest, UsersSearchResponse, + UsersSearchErrors, UsersShowRequest, UsersShowResponse, + UsersShowErrors, UsersAchievementsRequest, UsersAchievementsResponse, + UsersAchievementsErrors, UsersUpdateMemoRequest, + UsersUpdateMemoErrors, FetchRssRequest, FetchRssResponse, + FetchRssErrors, FetchExternalResourcesRequest, FetchExternalResourcesResponse, + FetchExternalResourcesErrors, RetentionResponse, + RetentionErrors, BubbleGameRegisterRequest, + BubbleGameRegisterErrors, BubbleGameRankingRequest, BubbleGameRankingResponse, + BubbleGameRankingErrors, ReversiCancelMatchRequest, + ReversiCancelMatchErrors, ReversiGamesRequest, ReversiGamesResponse, + ReversiGamesErrors, ReversiMatchRequest, ReversiMatchResponse, + ReversiMatchErrors, ReversiInvitationsResponse, + ReversiInvitationsErrors, ReversiShowGameRequest, ReversiShowGameResponse, + ReversiShowGameErrors, ReversiSurrenderRequest, + ReversiSurrenderErrors, ReversiVerifyRequest, ReversiVerifyResponse, + ReversiVerifyErrors, Error_2 as Error, UserLite, UserDetailedNotMeOnly, @@ -1858,12 +2773,21 @@ export { entities } // @public (undocumented) type Error_2 = components['schemas']['Error']; +// @public (undocumented) +type ExportCustomEmojisErrors = EndpointsErrors['export-custom-emojis'][keyof EndpointsErrors['export-custom-emojis']]; + +// @public (undocumented) +type FederationFollowersErrors = EndpointsErrors['federation___followers'][keyof EndpointsErrors['federation___followers']]; + // @public (undocumented) type FederationFollowersRequest = operations['federation___followers']['requestBody']['content']['application/json']; // @public (undocumented) type FederationFollowersResponse = operations['federation___followers']['responses']['200']['content']['application/json']; +// @public (undocumented) +type FederationFollowingErrors = EndpointsErrors['federation___following'][keyof EndpointsErrors['federation___following']]; + // @public (undocumented) type FederationFollowingRequest = operations['federation___following']['requestBody']['content']['application/json']; @@ -1873,33 +2797,51 @@ type FederationFollowingResponse = operations['federation___following']['respons // @public (undocumented) type FederationInstance = components['schemas']['FederationInstance']; +// @public (undocumented) +type FederationInstancesErrors = EndpointsErrors['federation___instances'][keyof EndpointsErrors['federation___instances']]; + // @public (undocumented) type FederationInstancesRequest = operations['federation___instances']['requestBody']['content']['application/json']; // @public (undocumented) type FederationInstancesResponse = operations['federation___instances']['responses']['200']['content']['application/json']; +// @public (undocumented) +type FederationShowInstanceErrors = EndpointsErrors['federation___show-instance'][keyof EndpointsErrors['federation___show-instance']]; + // @public (undocumented) type FederationShowInstanceRequest = operations['federation___show-instance']['requestBody']['content']['application/json']; // @public (undocumented) type FederationShowInstanceResponse = operations['federation___show-instance']['responses']['200']['content']['application/json']; +// @public (undocumented) +type FederationStatsErrors = EndpointsErrors['federation___stats'][keyof EndpointsErrors['federation___stats']]; + // @public (undocumented) type FederationStatsRequest = operations['federation___stats']['requestBody']['content']['application/json']; // @public (undocumented) type FederationStatsResponse = operations['federation___stats']['responses']['200']['content']['application/json']; +// @public (undocumented) +type FederationUpdateRemoteUserErrors = EndpointsErrors['federation___update-remote-user'][keyof EndpointsErrors['federation___update-remote-user']]; + // @public (undocumented) type FederationUpdateRemoteUserRequest = operations['federation___update-remote-user']['requestBody']['content']['application/json']; +// @public (undocumented) +type FederationUsersErrors = EndpointsErrors['federation___users'][keyof EndpointsErrors['federation___users']]; + // @public (undocumented) type FederationUsersRequest = operations['federation___users']['requestBody']['content']['application/json']; // @public (undocumented) type FederationUsersResponse = operations['federation___users']['responses']['200']['content']['application/json']; +// @public (undocumented) +type FetchExternalResourcesErrors = EndpointsErrors['fetch-external-resources'][keyof EndpointsErrors['fetch-external-resources']]; + // @public (undocumented) type FetchExternalResourcesRequest = operations['fetch-external-resources']['requestBody']['content']['application/json']; @@ -1920,6 +2862,9 @@ type FetchLike = (input: string, init?: { json(): Promise; }>; +// @public (undocumented) +type FetchRssErrors = EndpointsErrors['fetch-rss'][keyof EndpointsErrors['fetch-rss']]; + // @public (undocumented) type FetchRssRequest = operations['fetch-rss']['requestBody']['content']['application/json']; @@ -1929,24 +2874,42 @@ type FetchRssResponse = operations['fetch-rss']['responses']['200']['content'][' // @public (undocumented) type Flash = components['schemas']['Flash']; +// @public (undocumented) +type FlashCreateErrors = EndpointsErrors['flash___create'][keyof EndpointsErrors['flash___create']]; + // @public (undocumented) type FlashCreateRequest = operations['flash___create']['requestBody']['content']['application/json']; // @public (undocumented) type FlashCreateResponse = operations['flash___create']['responses']['200']['content']['application/json']; +// @public (undocumented) +type FlashDeleteErrors = EndpointsErrors['flash___delete'][keyof EndpointsErrors['flash___delete']]; + // @public (undocumented) type FlashDeleteRequest = operations['flash___delete']['requestBody']['content']['application/json']; +// @public (undocumented) +type FlashFeaturedErrors = EndpointsErrors['flash___featured'][keyof EndpointsErrors['flash___featured']]; + // @public (undocumented) type FlashFeaturedRequest = operations['flash___featured']['requestBody']['content']['application/json']; // @public (undocumented) type FlashFeaturedResponse = operations['flash___featured']['responses']['200']['content']['application/json']; +// @public (undocumented) +type FlashLikeErrors = EndpointsErrors['flash___like'][keyof EndpointsErrors['flash___like']]; + // @public (undocumented) type FlashLikeRequest = operations['flash___like']['requestBody']['content']['application/json']; +// @public (undocumented) +type FlashMyErrors = EndpointsErrors['flash___my'][keyof EndpointsErrors['flash___my']]; + +// @public (undocumented) +type FlashMyLikesErrors = EndpointsErrors['flash___my-likes'][keyof EndpointsErrors['flash___my-likes']]; + // @public (undocumented) type FlashMyLikesRequest = operations['flash___my-likes']['requestBody']['content']['application/json']; @@ -1959,15 +2922,24 @@ type FlashMyRequest = operations['flash___my']['requestBody']['content']['applic // @public (undocumented) type FlashMyResponse = operations['flash___my']['responses']['200']['content']['application/json']; +// @public (undocumented) +type FlashShowErrors = EndpointsErrors['flash___show'][keyof EndpointsErrors['flash___show']]; + // @public (undocumented) type FlashShowRequest = operations['flash___show']['requestBody']['content']['application/json']; // @public (undocumented) type FlashShowResponse = operations['flash___show']['responses']['200']['content']['application/json']; +// @public (undocumented) +type FlashUnlikeErrors = EndpointsErrors['flash___unlike'][keyof EndpointsErrors['flash___unlike']]; + // @public (undocumented) type FlashUnlikeRequest = operations['flash___unlike']['requestBody']['content']['application/json']; +// @public (undocumented) +type FlashUpdateErrors = EndpointsErrors['flash___update'][keyof EndpointsErrors['flash___update']]; + // @public (undocumented) type FlashUpdateRequest = operations['flash___update']['requestBody']['content']['application/json']; @@ -1977,45 +2949,72 @@ export const followersVisibilities: readonly ["public", "followers", "private"]; // @public (undocumented) type Following = components['schemas']['Following']; +// @public (undocumented) +type FollowingCreateErrors = EndpointsErrors['following___create'][keyof EndpointsErrors['following___create']]; + // @public (undocumented) type FollowingCreateRequest = operations['following___create']['requestBody']['content']['application/json']; // @public (undocumented) type FollowingCreateResponse = operations['following___create']['responses']['200']['content']['application/json']; +// @public (undocumented) +type FollowingDeleteErrors = EndpointsErrors['following___delete'][keyof EndpointsErrors['following___delete']]; + // @public (undocumented) type FollowingDeleteRequest = operations['following___delete']['requestBody']['content']['application/json']; // @public (undocumented) type FollowingDeleteResponse = operations['following___delete']['responses']['200']['content']['application/json']; +// @public (undocumented) +type FollowingInvalidateErrors = EndpointsErrors['following___invalidate'][keyof EndpointsErrors['following___invalidate']]; + // @public (undocumented) type FollowingInvalidateRequest = operations['following___invalidate']['requestBody']['content']['application/json']; // @public (undocumented) type FollowingInvalidateResponse = operations['following___invalidate']['responses']['200']['content']['application/json']; +// @public (undocumented) +type FollowingRequestsAcceptErrors = EndpointsErrors['following___requests___accept'][keyof EndpointsErrors['following___requests___accept']]; + // @public (undocumented) type FollowingRequestsAcceptRequest = operations['following___requests___accept']['requestBody']['content']['application/json']; +// @public (undocumented) +type FollowingRequestsCancelErrors = EndpointsErrors['following___requests___cancel'][keyof EndpointsErrors['following___requests___cancel']]; + // @public (undocumented) type FollowingRequestsCancelRequest = operations['following___requests___cancel']['requestBody']['content']['application/json']; // @public (undocumented) type FollowingRequestsCancelResponse = operations['following___requests___cancel']['responses']['200']['content']['application/json']; +// @public (undocumented) +type FollowingRequestsListErrors = EndpointsErrors['following___requests___list'][keyof EndpointsErrors['following___requests___list']]; + // @public (undocumented) type FollowingRequestsListRequest = operations['following___requests___list']['requestBody']['content']['application/json']; // @public (undocumented) type FollowingRequestsListResponse = operations['following___requests___list']['responses']['200']['content']['application/json']; +// @public (undocumented) +type FollowingRequestsRejectErrors = EndpointsErrors['following___requests___reject'][keyof EndpointsErrors['following___requests___reject']]; + // @public (undocumented) type FollowingRequestsRejectRequest = operations['following___requests___reject']['requestBody']['content']['application/json']; +// @public (undocumented) +type FollowingUpdateAllErrors = EndpointsErrors['following___update-all'][keyof EndpointsErrors['following___update-all']]; + // @public (undocumented) type FollowingUpdateAllRequest = operations['following___update-all']['requestBody']['content']['application/json']; +// @public (undocumented) +type FollowingUpdateErrors = EndpointsErrors['following___update'][keyof EndpointsErrors['following___update']]; + // @public (undocumented) type FollowingUpdateRequest = operations['following___update']['requestBody']['content']['application/json']; @@ -2025,27 +3024,45 @@ type FollowingUpdateResponse = operations['following___update']['responses']['20 // @public (undocumented) export const followingVisibilities: readonly ["public", "followers", "private"]; +// @public (undocumented) +type GalleryFeaturedErrors = EndpointsErrors['gallery___featured'][keyof EndpointsErrors['gallery___featured']]; + // @public (undocumented) type GalleryFeaturedRequest = operations['gallery___featured']['requestBody']['content']['application/json']; // @public (undocumented) type GalleryFeaturedResponse = operations['gallery___featured']['responses']['200']['content']['application/json']; +// @public (undocumented) +type GalleryPopularErrors = EndpointsErrors['gallery___popular'][keyof EndpointsErrors['gallery___popular']]; + // @public (undocumented) type GalleryPopularResponse = operations['gallery___popular']['responses']['200']['content']['application/json']; // @public (undocumented) type GalleryPost = components['schemas']['GalleryPost']; +// @public (undocumented) +type GalleryPostsCreateErrors = EndpointsErrors['gallery___posts___create'][keyof EndpointsErrors['gallery___posts___create']]; + // @public (undocumented) type GalleryPostsCreateRequest = operations['gallery___posts___create']['requestBody']['content']['application/json']; // @public (undocumented) type GalleryPostsCreateResponse = operations['gallery___posts___create']['responses']['200']['content']['application/json']; +// @public (undocumented) +type GalleryPostsDeleteErrors = EndpointsErrors['gallery___posts___delete'][keyof EndpointsErrors['gallery___posts___delete']]; + // @public (undocumented) type GalleryPostsDeleteRequest = operations['gallery___posts___delete']['requestBody']['content']['application/json']; +// @public (undocumented) +type GalleryPostsErrors = EndpointsErrors['gallery___posts'][keyof EndpointsErrors['gallery___posts']]; + +// @public (undocumented) +type GalleryPostsLikeErrors = EndpointsErrors['gallery___posts___like'][keyof EndpointsErrors['gallery___posts___like']]; + // @public (undocumented) type GalleryPostsLikeRequest = operations['gallery___posts___like']['requestBody']['content']['application/json']; @@ -2055,72 +3072,117 @@ type GalleryPostsRequest = operations['gallery___posts']['requestBody']['content // @public (undocumented) type GalleryPostsResponse = operations['gallery___posts']['responses']['200']['content']['application/json']; +// @public (undocumented) +type GalleryPostsShowErrors = EndpointsErrors['gallery___posts___show'][keyof EndpointsErrors['gallery___posts___show']]; + // @public (undocumented) type GalleryPostsShowRequest = operations['gallery___posts___show']['requestBody']['content']['application/json']; // @public (undocumented) type GalleryPostsShowResponse = operations['gallery___posts___show']['responses']['200']['content']['application/json']; +// @public (undocumented) +type GalleryPostsUnlikeErrors = EndpointsErrors['gallery___posts___unlike'][keyof EndpointsErrors['gallery___posts___unlike']]; + // @public (undocumented) type GalleryPostsUnlikeRequest = operations['gallery___posts___unlike']['requestBody']['content']['application/json']; +// @public (undocumented) +type GalleryPostsUpdateErrors = EndpointsErrors['gallery___posts___update'][keyof EndpointsErrors['gallery___posts___update']]; + // @public (undocumented) type GalleryPostsUpdateRequest = operations['gallery___posts___update']['requestBody']['content']['application/json']; // @public (undocumented) type GalleryPostsUpdateResponse = operations['gallery___posts___update']['responses']['200']['content']['application/json']; +// @public (undocumented) +type GetAvatarDecorationsErrors = EndpointsErrors['get-avatar-decorations'][keyof EndpointsErrors['get-avatar-decorations']]; + // @public (undocumented) type GetAvatarDecorationsResponse = operations['get-avatar-decorations']['responses']['200']['content']['application/json']; +// @public (undocumented) +type GetOnlineUsersCountErrors = EndpointsErrors['get-online-users-count'][keyof EndpointsErrors['get-online-users-count']]; + // @public (undocumented) type GetOnlineUsersCountResponse = operations['get-online-users-count']['responses']['200']['content']['application/json']; // @public (undocumented) type Hashtag = components['schemas']['Hashtag']; +// @public (undocumented) +type HashtagsListErrors = EndpointsErrors['hashtags___list'][keyof EndpointsErrors['hashtags___list']]; + // @public (undocumented) type HashtagsListRequest = operations['hashtags___list']['requestBody']['content']['application/json']; // @public (undocumented) type HashtagsListResponse = operations['hashtags___list']['responses']['200']['content']['application/json']; +// @public (undocumented) +type HashtagsSearchErrors = EndpointsErrors['hashtags___search'][keyof EndpointsErrors['hashtags___search']]; + // @public (undocumented) type HashtagsSearchRequest = operations['hashtags___search']['requestBody']['content']['application/json']; // @public (undocumented) type HashtagsSearchResponse = operations['hashtags___search']['responses']['200']['content']['application/json']; +// @public (undocumented) +type HashtagsShowErrors = EndpointsErrors['hashtags___show'][keyof EndpointsErrors['hashtags___show']]; + // @public (undocumented) type HashtagsShowRequest = operations['hashtags___show']['requestBody']['content']['application/json']; // @public (undocumented) type HashtagsShowResponse = operations['hashtags___show']['responses']['200']['content']['application/json']; +// @public (undocumented) +type HashtagsTrendErrors = EndpointsErrors['hashtags___trend'][keyof EndpointsErrors['hashtags___trend']]; + // @public (undocumented) type HashtagsTrendResponse = operations['hashtags___trend']['responses']['200']['content']['application/json']; +// @public (undocumented) +type HashtagsUsersErrors = EndpointsErrors['hashtags___users'][keyof EndpointsErrors['hashtags___users']]; + // @public (undocumented) type HashtagsUsersRequest = operations['hashtags___users']['requestBody']['content']['application/json']; // @public (undocumented) type HashtagsUsersResponse = operations['hashtags___users']['responses']['200']['content']['application/json']; +// @public (undocumented) +type I2faDoneErrors = EndpointsErrors['i___2fa___done'][keyof EndpointsErrors['i___2fa___done']]; + // @public (undocumented) type I2faDoneRequest = operations['i___2fa___done']['requestBody']['content']['application/json']; // @public (undocumented) type I2faDoneResponse = operations['i___2fa___done']['responses']['200']['content']['application/json']; +// @public (undocumented) +type I2faKeyDoneErrors = EndpointsErrors['i___2fa___key-done'][keyof EndpointsErrors['i___2fa___key-done']]; + // @public (undocumented) type I2faKeyDoneRequest = operations['i___2fa___key-done']['requestBody']['content']['application/json']; // @public (undocumented) type I2faKeyDoneResponse = operations['i___2fa___key-done']['responses']['200']['content']['application/json']; +// @public (undocumented) +type I2faPasswordLessErrors = EndpointsErrors['i___2fa___password-less'][keyof EndpointsErrors['i___2fa___password-less']]; + // @public (undocumented) type I2faPasswordLessRequest = operations['i___2fa___password-less']['requestBody']['content']['application/json']; +// @public (undocumented) +type I2faRegisterErrors = EndpointsErrors['i___2fa___register'][keyof EndpointsErrors['i___2fa___register']]; + +// @public (undocumented) +type I2faRegisterKeyErrors = EndpointsErrors['i___2fa___register-key'][keyof EndpointsErrors['i___2fa___register-key']]; + // @public (undocumented) type I2faRegisterKeyRequest = operations['i___2fa___register-key']['requestBody']['content']['application/json']; @@ -2133,27 +3195,45 @@ type I2faRegisterRequest = operations['i___2fa___register']['requestBody']['cont // @public (undocumented) type I2faRegisterResponse = operations['i___2fa___register']['responses']['200']['content']['application/json']; +// @public (undocumented) +type I2faRemoveKeyErrors = EndpointsErrors['i___2fa___remove-key'][keyof EndpointsErrors['i___2fa___remove-key']]; + // @public (undocumented) type I2faRemoveKeyRequest = operations['i___2fa___remove-key']['requestBody']['content']['application/json']; +// @public (undocumented) +type I2faUnregisterErrors = EndpointsErrors['i___2fa___unregister'][keyof EndpointsErrors['i___2fa___unregister']]; + // @public (undocumented) type I2faUnregisterRequest = operations['i___2fa___unregister']['requestBody']['content']['application/json']; +// @public (undocumented) +type I2faUpdateKeyErrors = EndpointsErrors['i___2fa___update-key'][keyof EndpointsErrors['i___2fa___update-key']]; + // @public (undocumented) type I2faUpdateKeyRequest = operations['i___2fa___update-key']['requestBody']['content']['application/json']; +// @public (undocumented) +type IAppsErrors = EndpointsErrors['i___apps'][keyof EndpointsErrors['i___apps']]; + // @public (undocumented) type IAppsRequest = operations['i___apps']['requestBody']['content']['application/json']; // @public (undocumented) type IAppsResponse = operations['i___apps']['responses']['200']['content']['application/json']; +// @public (undocumented) +type IAuthorizedAppsErrors = EndpointsErrors['i___authorized-apps'][keyof EndpointsErrors['i___authorized-apps']]; + // @public (undocumented) type IAuthorizedAppsRequest = operations['i___authorized-apps']['requestBody']['content']['application/json']; // @public (undocumented) type IAuthorizedAppsResponse = operations['i___authorized-apps']['responses']['200']['content']['application/json']; +// @public (undocumented) +type IChangePasswordErrors = EndpointsErrors['i___change-password'][keyof EndpointsErrors['i___change-password']]; + // @public (undocumented) type IChangePasswordRequest = operations['i___change-password']['requestBody']['content']['application/json']; @@ -2175,57 +3255,123 @@ export interface IChannelConnection = AnyOf(type: T, body: Channel['receives'][T]): void; } +// @public (undocumented) +type IClaimAchievementErrors = EndpointsErrors['i___claim-achievement'][keyof EndpointsErrors['i___claim-achievement']]; + // @public (undocumented) type IClaimAchievementRequest = operations['i___claim-achievement']['requestBody']['content']['application/json']; // @public (undocumented) type ID = string; +// @public (undocumented) +type IDeleteAccountErrors = EndpointsErrors['i___delete-account'][keyof EndpointsErrors['i___delete-account']]; + // @public (undocumented) type IDeleteAccountRequest = operations['i___delete-account']['requestBody']['content']['application/json']; +// @public (undocumented) +type IErrors = EndpointsErrors['i'][keyof EndpointsErrors['i']]; + +// @public (undocumented) +type IExportAntennasErrors = EndpointsErrors['i___export-antennas'][keyof EndpointsErrors['i___export-antennas']]; + +// @public (undocumented) +type IExportBlockingErrors = EndpointsErrors['i___export-blocking'][keyof EndpointsErrors['i___export-blocking']]; + +// @public (undocumented) +type IExportClipsErrors = EndpointsErrors['i___export-clips'][keyof EndpointsErrors['i___export-clips']]; + +// @public (undocumented) +type IExportFavoritesErrors = EndpointsErrors['i___export-favorites'][keyof EndpointsErrors['i___export-favorites']]; + +// @public (undocumented) +type IExportFollowingErrors = EndpointsErrors['i___export-following'][keyof EndpointsErrors['i___export-following']]; + // @public (undocumented) type IExportFollowingRequest = operations['i___export-following']['requestBody']['content']['application/json']; +// @public (undocumented) +type IExportMuteErrors = EndpointsErrors['i___export-mute'][keyof EndpointsErrors['i___export-mute']]; + +// @public (undocumented) +type IExportNotesErrors = EndpointsErrors['i___export-notes'][keyof EndpointsErrors['i___export-notes']]; + +// @public (undocumented) +type IExportUserListsErrors = EndpointsErrors['i___export-user-lists'][keyof EndpointsErrors['i___export-user-lists']]; + +// @public (undocumented) +type IFavoritesErrors = EndpointsErrors['i___favorites'][keyof EndpointsErrors['i___favorites']]; + // @public (undocumented) type IFavoritesRequest = operations['i___favorites']['requestBody']['content']['application/json']; // @public (undocumented) type IFavoritesResponse = operations['i___favorites']['responses']['200']['content']['application/json']; +// @public (undocumented) +type IGalleryLikesErrors = EndpointsErrors['i___gallery___likes'][keyof EndpointsErrors['i___gallery___likes']]; + // @public (undocumented) type IGalleryLikesRequest = operations['i___gallery___likes']['requestBody']['content']['application/json']; // @public (undocumented) type IGalleryLikesResponse = operations['i___gallery___likes']['responses']['200']['content']['application/json']; +// @public (undocumented) +type IGalleryPostsErrors = EndpointsErrors['i___gallery___posts'][keyof EndpointsErrors['i___gallery___posts']]; + // @public (undocumented) type IGalleryPostsRequest = operations['i___gallery___posts']['requestBody']['content']['application/json']; // @public (undocumented) type IGalleryPostsResponse = operations['i___gallery___posts']['responses']['200']['content']['application/json']; +// @public (undocumented) +type IImportAntennasErrors = EndpointsErrors['i___import-antennas'][keyof EndpointsErrors['i___import-antennas']]; + // @public (undocumented) type IImportAntennasRequest = operations['i___import-antennas']['requestBody']['content']['application/json']; +// @public (undocumented) +type IImportBlockingErrors = EndpointsErrors['i___import-blocking'][keyof EndpointsErrors['i___import-blocking']]; + // @public (undocumented) type IImportBlockingRequest = operations['i___import-blocking']['requestBody']['content']['application/json']; +// @public (undocumented) +type IImportFollowingErrors = EndpointsErrors['i___import-following'][keyof EndpointsErrors['i___import-following']]; + // @public (undocumented) type IImportFollowingRequest = operations['i___import-following']['requestBody']['content']['application/json']; +// @public (undocumented) +type IImportMutingErrors = EndpointsErrors['i___import-muting'][keyof EndpointsErrors['i___import-muting']]; + // @public (undocumented) type IImportMutingRequest = operations['i___import-muting']['requestBody']['content']['application/json']; +// @public (undocumented) +type IImportUserListsErrors = EndpointsErrors['i___import-user-lists'][keyof EndpointsErrors['i___import-user-lists']]; + // @public (undocumented) type IImportUserListsRequest = operations['i___import-user-lists']['requestBody']['content']['application/json']; +// @public (undocumented) +type IMoveErrors = EndpointsErrors['i___move'][keyof EndpointsErrors['i___move']]; + // @public (undocumented) type IMoveRequest = operations['i___move']['requestBody']['content']['application/json']; // @public (undocumented) type IMoveResponse = operations['i___move']['responses']['200']['content']['application/json']; +// @public (undocumented) +type INotificationsErrors = EndpointsErrors['i___notifications'][keyof EndpointsErrors['i___notifications']]; + +// @public (undocumented) +type INotificationsGroupedErrors = EndpointsErrors['i___notifications-grouped'][keyof EndpointsErrors['i___notifications-grouped']]; + // @public (undocumented) type INotificationsGroupedRequest = operations['i___notifications-grouped']['requestBody']['content']['application/json']; @@ -2241,93 +3387,153 @@ type INotificationsResponse = operations['i___notifications']['responses']['200' // @public (undocumented) type InviteCode = components['schemas']['InviteCode']; +// @public (undocumented) +type InviteCreateErrors = EndpointsErrors['invite___create'][keyof EndpointsErrors['invite___create']]; + // @public (undocumented) type InviteCreateResponse = operations['invite___create']['responses']['200']['content']['application/json']; +// @public (undocumented) +type InviteDeleteErrors = EndpointsErrors['invite___delete'][keyof EndpointsErrors['invite___delete']]; + // @public (undocumented) type InviteDeleteRequest = operations['invite___delete']['requestBody']['content']['application/json']; +// @public (undocumented) +type InviteLimitErrors = EndpointsErrors['invite___limit'][keyof EndpointsErrors['invite___limit']]; + // @public (undocumented) type InviteLimitResponse = operations['invite___limit']['responses']['200']['content']['application/json']; +// @public (undocumented) +type InviteListErrors = EndpointsErrors['invite___list'][keyof EndpointsErrors['invite___list']]; + // @public (undocumented) type InviteListRequest = operations['invite___list']['requestBody']['content']['application/json']; // @public (undocumented) type InviteListResponse = operations['invite___list']['responses']['200']['content']['application/json']; +// @public (undocumented) +type IPageLikesErrors = EndpointsErrors['i___page-likes'][keyof EndpointsErrors['i___page-likes']]; + // @public (undocumented) type IPageLikesRequest = operations['i___page-likes']['requestBody']['content']['application/json']; // @public (undocumented) type IPageLikesResponse = operations['i___page-likes']['responses']['200']['content']['application/json']; +// @public (undocumented) +type IPagesErrors = EndpointsErrors['i___pages'][keyof EndpointsErrors['i___pages']]; + // @public (undocumented) type IPagesRequest = operations['i___pages']['requestBody']['content']['application/json']; // @public (undocumented) type IPagesResponse = operations['i___pages']['responses']['200']['content']['application/json']; +// @public (undocumented) +type IPinErrors = EndpointsErrors['i___pin'][keyof EndpointsErrors['i___pin']]; + // @public (undocumented) type IPinRequest = operations['i___pin']['requestBody']['content']['application/json']; // @public (undocumented) type IPinResponse = operations['i___pin']['responses']['200']['content']['application/json']; +// @public (undocumented) +type IReadAllUnreadNotesErrors = EndpointsErrors['i___read-all-unread-notes'][keyof EndpointsErrors['i___read-all-unread-notes']]; + +// @public (undocumented) +type IReadAnnouncementErrors = EndpointsErrors['i___read-announcement'][keyof EndpointsErrors['i___read-announcement']]; + // @public (undocumented) type IReadAnnouncementRequest = operations['i___read-announcement']['requestBody']['content']['application/json']; +// @public (undocumented) +type IRegenerateTokenErrors = EndpointsErrors['i___regenerate-token'][keyof EndpointsErrors['i___regenerate-token']]; + // @public (undocumented) type IRegenerateTokenRequest = operations['i___regenerate-token']['requestBody']['content']['application/json']; +// @public (undocumented) +type IRegistryGetAllErrors = EndpointsErrors['i___registry___get-all'][keyof EndpointsErrors['i___registry___get-all']]; + // @public (undocumented) type IRegistryGetAllRequest = operations['i___registry___get-all']['requestBody']['content']['application/json']; // @public (undocumented) type IRegistryGetAllResponse = operations['i___registry___get-all']['responses']['200']['content']['application/json']; +// @public (undocumented) +type IRegistryGetDetailErrors = EndpointsErrors['i___registry___get-detail'][keyof EndpointsErrors['i___registry___get-detail']]; + // @public (undocumented) type IRegistryGetDetailRequest = operations['i___registry___get-detail']['requestBody']['content']['application/json']; // @public (undocumented) type IRegistryGetDetailResponse = operations['i___registry___get-detail']['responses']['200']['content']['application/json']; +// @public (undocumented) +type IRegistryGetErrors = EndpointsErrors['i___registry___get'][keyof EndpointsErrors['i___registry___get']]; + // @public (undocumented) type IRegistryGetRequest = operations['i___registry___get']['requestBody']['content']['application/json']; // @public (undocumented) type IRegistryGetResponse = operations['i___registry___get']['responses']['200']['content']['application/json']; +// @public (undocumented) +type IRegistryKeysErrors = EndpointsErrors['i___registry___keys'][keyof EndpointsErrors['i___registry___keys']]; + // @public (undocumented) type IRegistryKeysRequest = operations['i___registry___keys']['requestBody']['content']['application/json']; // @public (undocumented) type IRegistryKeysResponse = operations['i___registry___keys']['responses']['200']['content']['application/json']; +// @public (undocumented) +type IRegistryKeysWithTypeErrors = EndpointsErrors['i___registry___keys-with-type'][keyof EndpointsErrors['i___registry___keys-with-type']]; + // @public (undocumented) type IRegistryKeysWithTypeRequest = operations['i___registry___keys-with-type']['requestBody']['content']['application/json']; // @public (undocumented) type IRegistryKeysWithTypeResponse = operations['i___registry___keys-with-type']['responses']['200']['content']['application/json']; +// @public (undocumented) +type IRegistryRemoveErrors = EndpointsErrors['i___registry___remove'][keyof EndpointsErrors['i___registry___remove']]; + // @public (undocumented) type IRegistryRemoveRequest = operations['i___registry___remove']['requestBody']['content']['application/json']; +// @public (undocumented) +type IRegistryScopesWithDomainErrors = EndpointsErrors['i___registry___scopes-with-domain'][keyof EndpointsErrors['i___registry___scopes-with-domain']]; + // @public (undocumented) type IRegistryScopesWithDomainResponse = operations['i___registry___scopes-with-domain']['responses']['200']['content']['application/json']; +// @public (undocumented) +type IRegistrySetErrors = EndpointsErrors['i___registry___set'][keyof EndpointsErrors['i___registry___set']]; + // @public (undocumented) type IRegistrySetRequest = operations['i___registry___set']['requestBody']['content']['application/json']; // @public (undocumented) type IResponse = operations['i']['responses']['200']['content']['application/json']; +// @public (undocumented) +type IRevokeTokenErrors = EndpointsErrors['i___revoke-token'][keyof EndpointsErrors['i___revoke-token']]; + // @public (undocumented) type IRevokeTokenRequest = operations['i___revoke-token']['requestBody']['content']['application/json']; // @public (undocumented) function isAPIError(reason: Record): reason is APIError; +// @public (undocumented) +type ISigninHistoryErrors = EndpointsErrors['i___signin-history'][keyof EndpointsErrors['i___signin-history']]; + // @public (undocumented) type ISigninHistoryRequest = operations['i___signin-history']['requestBody']['content']['application/json']; @@ -2371,45 +3577,72 @@ export interface IStream extends EventEmitter { useChannel(channel: C, params?: Channels[C]['params'], name?: string): IChannelConnection; } +// @public (undocumented) +type IUnpinErrors = EndpointsErrors['i___unpin'][keyof EndpointsErrors['i___unpin']]; + // @public (undocumented) type IUnpinRequest = operations['i___unpin']['requestBody']['content']['application/json']; // @public (undocumented) type IUnpinResponse = operations['i___unpin']['responses']['200']['content']['application/json']; +// @public (undocumented) +type IUpdateEmailErrors = EndpointsErrors['i___update-email'][keyof EndpointsErrors['i___update-email']]; + // @public (undocumented) type IUpdateEmailRequest = operations['i___update-email']['requestBody']['content']['application/json']; // @public (undocumented) type IUpdateEmailResponse = operations['i___update-email']['responses']['200']['content']['application/json']; +// @public (undocumented) +type IUpdateErrors = EndpointsErrors['i___update'][keyof EndpointsErrors['i___update']]; + // @public (undocumented) type IUpdateRequest = operations['i___update']['requestBody']['content']['application/json']; // @public (undocumented) type IUpdateResponse = operations['i___update']['responses']['200']['content']['application/json']; +// @public (undocumented) +type IWebhooksCreateErrors = EndpointsErrors['i___webhooks___create'][keyof EndpointsErrors['i___webhooks___create']]; + // @public (undocumented) type IWebhooksCreateRequest = operations['i___webhooks___create']['requestBody']['content']['application/json']; // @public (undocumented) type IWebhooksCreateResponse = operations['i___webhooks___create']['responses']['200']['content']['application/json']; +// @public (undocumented) +type IWebhooksDeleteErrors = EndpointsErrors['i___webhooks___delete'][keyof EndpointsErrors['i___webhooks___delete']]; + // @public (undocumented) type IWebhooksDeleteRequest = operations['i___webhooks___delete']['requestBody']['content']['application/json']; +// @public (undocumented) +type IWebhooksListErrors = EndpointsErrors['i___webhooks___list'][keyof EndpointsErrors['i___webhooks___list']]; + // @public (undocumented) type IWebhooksListResponse = operations['i___webhooks___list']['responses']['200']['content']['application/json']; +// @public (undocumented) +type IWebhooksShowErrors = EndpointsErrors['i___webhooks___show'][keyof EndpointsErrors['i___webhooks___show']]; + // @public (undocumented) type IWebhooksShowRequest = operations['i___webhooks___show']['requestBody']['content']['application/json']; // @public (undocumented) type IWebhooksShowResponse = operations['i___webhooks___show']['responses']['200']['content']['application/json']; +// @public (undocumented) +type IWebhooksTestErrors = EndpointsErrors['i___webhooks___test'][keyof EndpointsErrors['i___webhooks___test']]; + // @public (undocumented) type IWebhooksTestRequest = operations['i___webhooks___test']['requestBody']['content']['application/json']; +// @public (undocumented) +type IWebhooksUpdateErrors = EndpointsErrors['i___webhooks___update'][keyof EndpointsErrors['i___webhooks___update']]; + // @public (undocumented) type IWebhooksUpdateRequest = operations['i___webhooks___update']['requestBody']['content']['application/json']; @@ -2425,6 +3658,9 @@ type MetaDetailed = components['schemas']['MetaDetailed']; // @public (undocumented) type MetaDetailedOnly = components['schemas']['MetaDetailedOnly']; +// @public (undocumented) +type MetaErrors = EndpointsErrors['meta'][keyof EndpointsErrors['meta']]; + // @public (undocumented) type MetaLite = components['schemas']['MetaLite']; @@ -2434,6 +3670,9 @@ type MetaRequest = operations['meta']['requestBody']['content']['application/jso // @public (undocumented) type MetaResponse = operations['meta']['responses']['200']['content']['application/json']; +// @public (undocumented) +type MiauthGenTokenErrors = EndpointsErrors['miauth___gen-token'][keyof EndpointsErrors['miauth___gen-token']]; + // @public (undocumented) type MiauthGenTokenRequest = operations['miauth___gen-token']['requestBody']['content']['application/json']; @@ -2601,15 +3840,24 @@ type ModerationLog = { // @public (undocumented) export const moderationLogTypes: readonly ["updateServerSettings", "suspend", "unsuspend", "updateUserNote", "addCustomEmoji", "updateCustomEmoji", "deleteCustomEmoji", "assignRole", "unassignRole", "createRole", "updateRole", "deleteRole", "clearQueue", "promoteQueue", "deleteDriveFile", "deleteNote", "createGlobalAnnouncement", "createUserAnnouncement", "updateGlobalAnnouncement", "updateUserAnnouncement", "deleteGlobalAnnouncement", "deleteUserAnnouncement", "resetPassword", "suspendRemoteInstance", "unsuspendRemoteInstance", "updateRemoteInstanceNote", "markSensitiveDriveFile", "unmarkSensitiveDriveFile", "resolveAbuseReport", "forwardAbuseReport", "updateAbuseReportNote", "createInvitation", "createAd", "updateAd", "deleteAd", "createAvatarDecoration", "updateAvatarDecoration", "deleteAvatarDecoration", "unsetUserAvatar", "unsetUserBanner", "createSystemWebhook", "updateSystemWebhook", "deleteSystemWebhook", "createAbuseReportNotificationRecipient", "updateAbuseReportNotificationRecipient", "deleteAbuseReportNotificationRecipient", "deleteAccount", "deletePage", "deleteFlash", "deleteGalleryPost"]; +// @public (undocumented) +type MuteCreateErrors = EndpointsErrors['mute___create'][keyof EndpointsErrors['mute___create']]; + // @public (undocumented) type MuteCreateRequest = operations['mute___create']['requestBody']['content']['application/json']; +// @public (undocumented) +type MuteDeleteErrors = EndpointsErrors['mute___delete'][keyof EndpointsErrors['mute___delete']]; + // @public (undocumented) type MuteDeleteRequest = operations['mute___delete']['requestBody']['content']['application/json']; // @public (undocumented) export const mutedNoteReasons: readonly ["word", "manual", "spam", "other"]; +// @public (undocumented) +type MuteListErrors = EndpointsErrors['mute___list'][keyof EndpointsErrors['mute___list']]; + // @public (undocumented) type MuteListRequest = operations['mute___list']['requestBody']['content']['application/json']; @@ -2619,6 +3867,9 @@ type MuteListResponse = operations['mute___list']['responses']['200']['content'] // @public (undocumented) type Muting = components['schemas']['Muting']; +// @public (undocumented) +type MyAppsErrors = EndpointsErrors['my___apps'][keyof EndpointsErrors['my___apps']]; + // @public (undocumented) type MyAppsRequest = operations['my___apps']['requestBody']['content']['application/json']; @@ -2641,96 +3892,156 @@ type NoteFavorite = components['schemas']['NoteFavorite']; // @public (undocumented) type NoteReaction = components['schemas']['NoteReaction']; +// @public (undocumented) +type NotesChildrenErrors = EndpointsErrors['notes___children'][keyof EndpointsErrors['notes___children']]; + // @public (undocumented) type NotesChildrenRequest = operations['notes___children']['requestBody']['content']['application/json']; // @public (undocumented) type NotesChildrenResponse = operations['notes___children']['responses']['200']['content']['application/json']; +// @public (undocumented) +type NotesClipsErrors = EndpointsErrors['notes___clips'][keyof EndpointsErrors['notes___clips']]; + // @public (undocumented) type NotesClipsRequest = operations['notes___clips']['requestBody']['content']['application/json']; // @public (undocumented) type NotesClipsResponse = operations['notes___clips']['responses']['200']['content']['application/json']; +// @public (undocumented) +type NotesConversationErrors = EndpointsErrors['notes___conversation'][keyof EndpointsErrors['notes___conversation']]; + // @public (undocumented) type NotesConversationRequest = operations['notes___conversation']['requestBody']['content']['application/json']; // @public (undocumented) type NotesConversationResponse = operations['notes___conversation']['responses']['200']['content']['application/json']; +// @public (undocumented) +type NotesCreateErrors = EndpointsErrors['notes___create'][keyof EndpointsErrors['notes___create']]; + // @public (undocumented) type NotesCreateRequest = operations['notes___create']['requestBody']['content']['application/json']; // @public (undocumented) type NotesCreateResponse = operations['notes___create']['responses']['200']['content']['application/json']; +// @public (undocumented) +type NotesDeleteErrors = EndpointsErrors['notes___delete'][keyof EndpointsErrors['notes___delete']]; + // @public (undocumented) type NotesDeleteRequest = operations['notes___delete']['requestBody']['content']['application/json']; +// @public (undocumented) +type NotesErrors = EndpointsErrors['notes'][keyof EndpointsErrors['notes']]; + +// @public (undocumented) +type NotesFavoritesCreateErrors = EndpointsErrors['notes___favorites___create'][keyof EndpointsErrors['notes___favorites___create']]; + // @public (undocumented) type NotesFavoritesCreateRequest = operations['notes___favorites___create']['requestBody']['content']['application/json']; +// @public (undocumented) +type NotesFavoritesDeleteErrors = EndpointsErrors['notes___favorites___delete'][keyof EndpointsErrors['notes___favorites___delete']]; + // @public (undocumented) type NotesFavoritesDeleteRequest = operations['notes___favorites___delete']['requestBody']['content']['application/json']; +// @public (undocumented) +type NotesFeaturedErrors = EndpointsErrors['notes___featured'][keyof EndpointsErrors['notes___featured']]; + // @public (undocumented) type NotesFeaturedRequest = operations['notes___featured']['requestBody']['content']['application/json']; // @public (undocumented) type NotesFeaturedResponse = operations['notes___featured']['responses']['200']['content']['application/json']; +// @public (undocumented) +type NotesGlobalTimelineErrors = EndpointsErrors['notes___global-timeline'][keyof EndpointsErrors['notes___global-timeline']]; + // @public (undocumented) type NotesGlobalTimelineRequest = operations['notes___global-timeline']['requestBody']['content']['application/json']; // @public (undocumented) type NotesGlobalTimelineResponse = operations['notes___global-timeline']['responses']['200']['content']['application/json']; +// @public (undocumented) +type NotesHybridTimelineErrors = EndpointsErrors['notes___hybrid-timeline'][keyof EndpointsErrors['notes___hybrid-timeline']]; + // @public (undocumented) type NotesHybridTimelineRequest = operations['notes___hybrid-timeline']['requestBody']['content']['application/json']; // @public (undocumented) type NotesHybridTimelineResponse = operations['notes___hybrid-timeline']['responses']['200']['content']['application/json']; +// @public (undocumented) +type NotesLocalTimelineErrors = EndpointsErrors['notes___local-timeline'][keyof EndpointsErrors['notes___local-timeline']]; + // @public (undocumented) type NotesLocalTimelineRequest = operations['notes___local-timeline']['requestBody']['content']['application/json']; // @public (undocumented) type NotesLocalTimelineResponse = operations['notes___local-timeline']['responses']['200']['content']['application/json']; +// @public (undocumented) +type NotesMentionsErrors = EndpointsErrors['notes___mentions'][keyof EndpointsErrors['notes___mentions']]; + // @public (undocumented) type NotesMentionsRequest = operations['notes___mentions']['requestBody']['content']['application/json']; // @public (undocumented) type NotesMentionsResponse = operations['notes___mentions']['responses']['200']['content']['application/json']; +// @public (undocumented) +type NotesPollsRecommendationErrors = EndpointsErrors['notes___polls___recommendation'][keyof EndpointsErrors['notes___polls___recommendation']]; + // @public (undocumented) type NotesPollsRecommendationRequest = operations['notes___polls___recommendation']['requestBody']['content']['application/json']; // @public (undocumented) type NotesPollsRecommendationResponse = operations['notes___polls___recommendation']['responses']['200']['content']['application/json']; +// @public (undocumented) +type NotesPollsVoteErrors = EndpointsErrors['notes___polls___vote'][keyof EndpointsErrors['notes___polls___vote']]; + // @public (undocumented) type NotesPollsVoteRequest = operations['notes___polls___vote']['requestBody']['content']['application/json']; +// @public (undocumented) +type NotesReactionsCreateErrors = EndpointsErrors['notes___reactions___create'][keyof EndpointsErrors['notes___reactions___create']]; + // @public (undocumented) type NotesReactionsCreateRequest = operations['notes___reactions___create']['requestBody']['content']['application/json']; +// @public (undocumented) +type NotesReactionsDeleteErrors = EndpointsErrors['notes___reactions___delete'][keyof EndpointsErrors['notes___reactions___delete']]; + // @public (undocumented) type NotesReactionsDeleteRequest = operations['notes___reactions___delete']['requestBody']['content']['application/json']; +// @public (undocumented) +type NotesReactionsErrors = EndpointsErrors['notes___reactions'][keyof EndpointsErrors['notes___reactions']]; + // @public (undocumented) type NotesReactionsRequest = operations['notes___reactions']['requestBody']['content']['application/json']; // @public (undocumented) type NotesReactionsResponse = operations['notes___reactions']['responses']['200']['content']['application/json']; +// @public (undocumented) +type NotesRenotesErrors = EndpointsErrors['notes___renotes'][keyof EndpointsErrors['notes___renotes']]; + // @public (undocumented) type NotesRenotesRequest = operations['notes___renotes']['requestBody']['content']['application/json']; // @public (undocumented) type NotesRenotesResponse = operations['notes___renotes']['responses']['200']['content']['application/json']; +// @public (undocumented) +type NotesRepliesErrors = EndpointsErrors['notes___replies'][keyof EndpointsErrors['notes___replies']]; + // @public (undocumented) type NotesRepliesRequest = operations['notes___replies']['requestBody']['content']['application/json']; @@ -2743,51 +4054,81 @@ type NotesRequest = operations['notes']['requestBody']['content']['application/j // @public (undocumented) type NotesResponse = operations['notes']['responses']['200']['content']['application/json']; +// @public (undocumented) +type NotesSearchByTagErrors = EndpointsErrors['notes___search-by-tag'][keyof EndpointsErrors['notes___search-by-tag']]; + // @public (undocumented) type NotesSearchByTagRequest = operations['notes___search-by-tag']['requestBody']['content']['application/json']; // @public (undocumented) type NotesSearchByTagResponse = operations['notes___search-by-tag']['responses']['200']['content']['application/json']; +// @public (undocumented) +type NotesSearchErrors = EndpointsErrors['notes___search'][keyof EndpointsErrors['notes___search']]; + // @public (undocumented) type NotesSearchRequest = operations['notes___search']['requestBody']['content']['application/json']; // @public (undocumented) type NotesSearchResponse = operations['notes___search']['responses']['200']['content']['application/json']; +// @public (undocumented) +type NotesShowErrors = EndpointsErrors['notes___show'][keyof EndpointsErrors['notes___show']]; + // @public (undocumented) type NotesShowRequest = operations['notes___show']['requestBody']['content']['application/json']; // @public (undocumented) type NotesShowResponse = operations['notes___show']['responses']['200']['content']['application/json']; +// @public (undocumented) +type NotesStateErrors = EndpointsErrors['notes___state'][keyof EndpointsErrors['notes___state']]; + // @public (undocumented) type NotesStateRequest = operations['notes___state']['requestBody']['content']['application/json']; // @public (undocumented) type NotesStateResponse = operations['notes___state']['responses']['200']['content']['application/json']; +// @public (undocumented) +type NotesThreadMutingCreateErrors = EndpointsErrors['notes___thread-muting___create'][keyof EndpointsErrors['notes___thread-muting___create']]; + // @public (undocumented) type NotesThreadMutingCreateRequest = operations['notes___thread-muting___create']['requestBody']['content']['application/json']; +// @public (undocumented) +type NotesThreadMutingDeleteErrors = EndpointsErrors['notes___thread-muting___delete'][keyof EndpointsErrors['notes___thread-muting___delete']]; + // @public (undocumented) type NotesThreadMutingDeleteRequest = operations['notes___thread-muting___delete']['requestBody']['content']['application/json']; +// @public (undocumented) +type NotesTimelineErrors = EndpointsErrors['notes___timeline'][keyof EndpointsErrors['notes___timeline']]; + // @public (undocumented) type NotesTimelineRequest = operations['notes___timeline']['requestBody']['content']['application/json']; // @public (undocumented) type NotesTimelineResponse = operations['notes___timeline']['responses']['200']['content']['application/json']; +// @public (undocumented) +type NotesTranslateErrors = EndpointsErrors['notes___translate'][keyof EndpointsErrors['notes___translate']]; + // @public (undocumented) type NotesTranslateRequest = operations['notes___translate']['requestBody']['content']['application/json']; // @public (undocumented) type NotesTranslateResponse = operations['notes___translate']['responses']['200']['content']['application/json']; +// @public (undocumented) +type NotesUnrenoteErrors = EndpointsErrors['notes___unrenote'][keyof EndpointsErrors['notes___unrenote']]; + // @public (undocumented) type NotesUnrenoteRequest = operations['notes___unrenote']['requestBody']['content']['application/json']; +// @public (undocumented) +type NotesUserListTimelineErrors = EndpointsErrors['notes___user-list-timeline'][keyof EndpointsErrors['notes___user-list-timeline']]; + // @public (undocumented) type NotesUserListTimelineRequest = operations['notes___user-list-timeline']['requestBody']['content']['application/json']; @@ -2800,9 +4141,21 @@ export const noteVisibilities: readonly ["public", "home", "followers", "specifi // @public (undocumented) type Notification_2 = components['schemas']['Notification']; +// @public (undocumented) +type NotificationsCreateErrors = EndpointsErrors['notifications___create'][keyof EndpointsErrors['notifications___create']]; + // @public (undocumented) type NotificationsCreateRequest = operations['notifications___create']['requestBody']['content']['application/json']; +// @public (undocumented) +type NotificationsFlushErrors = EndpointsErrors['notifications___flush'][keyof EndpointsErrors['notifications___flush']]; + +// @public (undocumented) +type NotificationsMarkAllAsReadErrors = EndpointsErrors['notifications___mark-all-as-read'][keyof EndpointsErrors['notifications___mark-all-as-read']]; + +// @public (undocumented) +type NotificationsTestNotificationErrors = EndpointsErrors['notifications___test-notification'][keyof EndpointsErrors['notifications___test-notification']]; + // @public (undocumented) export const notificationTypes: readonly ["note", "follow", "mention", "reply", "renote", "quote", "reaction", "pollVote", "pollEnded", "receiveFollowRequest", "followRequestAccepted", "groupInvited", "app", "roleAssigned", "achievementEarned"]; @@ -2824,33 +4177,57 @@ type PageEvent = { user: User; }; +// @public (undocumented) +type PagePushErrors = EndpointsErrors['page-push'][keyof EndpointsErrors['page-push']]; + // @public (undocumented) type PagePushRequest = operations['page-push']['requestBody']['content']['application/json']; +// @public (undocumented) +type PagesCreateErrors = EndpointsErrors['pages___create'][keyof EndpointsErrors['pages___create']]; + // @public (undocumented) type PagesCreateRequest = operations['pages___create']['requestBody']['content']['application/json']; // @public (undocumented) type PagesCreateResponse = operations['pages___create']['responses']['200']['content']['application/json']; +// @public (undocumented) +type PagesDeleteErrors = EndpointsErrors['pages___delete'][keyof EndpointsErrors['pages___delete']]; + // @public (undocumented) type PagesDeleteRequest = operations['pages___delete']['requestBody']['content']['application/json']; +// @public (undocumented) +type PagesFeaturedErrors = EndpointsErrors['pages___featured'][keyof EndpointsErrors['pages___featured']]; + // @public (undocumented) type PagesFeaturedResponse = operations['pages___featured']['responses']['200']['content']['application/json']; +// @public (undocumented) +type PagesLikeErrors = EndpointsErrors['pages___like'][keyof EndpointsErrors['pages___like']]; + // @public (undocumented) type PagesLikeRequest = operations['pages___like']['requestBody']['content']['application/json']; +// @public (undocumented) +type PagesShowErrors = EndpointsErrors['pages___show'][keyof EndpointsErrors['pages___show']]; + // @public (undocumented) type PagesShowRequest = operations['pages___show']['requestBody']['content']['application/json']; // @public (undocumented) type PagesShowResponse = operations['pages___show']['responses']['200']['content']['application/json']; +// @public (undocumented) +type PagesUnlikeErrors = EndpointsErrors['pages___unlike'][keyof EndpointsErrors['pages___unlike']]; + // @public (undocumented) type PagesUnlikeRequest = operations['pages___unlike']['requestBody']['content']['application/json']; +// @public (undocumented) +type PagesUpdateErrors = EndpointsErrors['pages___update'][keyof EndpointsErrors['pages___update']]; + // @public (undocumented) type PagesUpdateRequest = operations['pages___update']['requestBody']['content']['application/json']; @@ -2869,12 +4246,21 @@ type PartialRolePolicyOverride = Partial<{ // @public (undocumented) export const permissions: readonly ["read:account", "write:account", "read:blocks", "write:blocks", "read:drive", "write:drive", "read:favorites", "write:favorites", "read:following", "write:following", "read:messaging", "write:messaging", "read:mutes", "write:mutes", "write:notes", "read:notifications", "write:notifications", "read:reactions", "write:reactions", "write:votes", "read:pages", "write:pages", "write:page-likes", "read:page-likes", "read:user-groups", "write:user-groups", "read:channels", "write:channels", "read:gallery", "write:gallery", "read:gallery-likes", "write:gallery-likes", "read:flash", "write:flash", "read:flash-likes", "write:flash-likes", "read:admin:abuse-user-reports", "write:admin:delete-account", "write:admin:delete-all-files-of-a-user", "read:admin:index-stats", "read:admin:table-stats", "read:admin:user-ips", "read:admin:meta", "write:admin:reset-password", "write:admin:resolve-abuse-user-report", "write:admin:send-email", "read:admin:server-info", "read:admin:show-moderation-log", "read:admin:show-user", "write:admin:suspend-user", "write:admin:unset-user-avatar", "write:admin:unset-user-banner", "write:admin:unsuspend-user", "write:admin:meta", "write:admin:user-note", "write:admin:roles", "read:admin:roles", "write:admin:relays", "read:admin:relays", "write:admin:invite-codes", "read:admin:invite-codes", "write:admin:announcements", "read:admin:announcements", "write:admin:avatar-decorations", "read:admin:avatar-decorations", "write:admin:federation", "write:admin:account", "read:admin:account", "write:admin:emoji", "read:admin:emoji", "write:admin:queue", "read:admin:queue", "write:admin:promo", "write:admin:drive", "read:admin:drive", "write:admin:ad", "read:admin:ad", "write:invite-codes", "read:invite-codes", "write:clip-favorite", "read:clip-favorite", "read:federation", "write:report-abuse"]; +// @public (undocumented) +type PingErrors = EndpointsErrors['ping'][keyof EndpointsErrors['ping']]; + // @public (undocumented) type PingResponse = operations['ping']['responses']['200']['content']['application/json']; +// @public (undocumented) +type PinnedUsersErrors = EndpointsErrors['pinned-users'][keyof EndpointsErrors['pinned-users']]; + // @public (undocumented) type PinnedUsersResponse = operations['pinned-users']['responses']['200']['content']['application/json']; +// @public (undocumented) +type PromoReadErrors = EndpointsErrors['promo___read'][keyof EndpointsErrors['promo___read']]; + // @public (undocumented) type PromoReadRequest = operations['promo___read']['requestBody']['content']['application/json']; @@ -2909,12 +4295,21 @@ type QueueStats = { // @public (undocumented) type QueueStatsLog = QueueStats[]; +// @public (undocumented) +type RenoteMuteCreateErrors = EndpointsErrors['renote-mute___create'][keyof EndpointsErrors['renote-mute___create']]; + // @public (undocumented) type RenoteMuteCreateRequest = operations['renote-mute___create']['requestBody']['content']['application/json']; +// @public (undocumented) +type RenoteMuteDeleteErrors = EndpointsErrors['renote-mute___delete'][keyof EndpointsErrors['renote-mute___delete']]; + // @public (undocumented) type RenoteMuteDeleteRequest = operations['renote-mute___delete']['requestBody']['content']['application/json']; +// @public (undocumented) +type RenoteMuteListErrors = EndpointsErrors['renote-mute___list'][keyof EndpointsErrors['renote-mute___list']]; + // @public (undocumented) type RenoteMuteListRequest = operations['renote-mute___list']['requestBody']['content']['application/json']; @@ -2924,15 +4319,30 @@ type RenoteMuteListResponse = operations['renote-mute___list']['responses']['200 // @public (undocumented) type RenoteMuting = components['schemas']['RenoteMuting']; +// @public (undocumented) +type RequestResetPasswordErrors = EndpointsErrors['request-reset-password'][keyof EndpointsErrors['request-reset-password']]; + // @public (undocumented) type RequestResetPasswordRequest = operations['request-reset-password']['requestBody']['content']['application/json']; +// @public (undocumented) +type ResetDbErrors = EndpointsErrors['reset-db'][keyof EndpointsErrors['reset-db']]; + +// @public (undocumented) +type ResetPasswordErrors = EndpointsErrors['reset-password'][keyof EndpointsErrors['reset-password']]; + // @public (undocumented) type ResetPasswordRequest = operations['reset-password']['requestBody']['content']['application/json']; +// @public (undocumented) +type RetentionErrors = EndpointsErrors['retention'][keyof EndpointsErrors['retention']]; + // @public (undocumented) type RetentionResponse = operations['retention']['responses']['200']['content']['application/json']; +// @public (undocumented) +type ReversiCancelMatchErrors = EndpointsErrors['reversi___cancel-match'][keyof EndpointsErrors['reversi___cancel-match']]; + // @public (undocumented) type ReversiCancelMatchRequest = operations['reversi___cancel-match']['requestBody']['content']['application/json']; @@ -2942,33 +4352,51 @@ type ReversiGameDetailed = components['schemas']['ReversiGameDetailed']; // @public (undocumented) type ReversiGameLite = components['schemas']['ReversiGameLite']; +// @public (undocumented) +type ReversiGamesErrors = EndpointsErrors['reversi___games'][keyof EndpointsErrors['reversi___games']]; + // @public (undocumented) type ReversiGamesRequest = operations['reversi___games']['requestBody']['content']['application/json']; // @public (undocumented) type ReversiGamesResponse = operations['reversi___games']['responses']['200']['content']['application/json']; +// @public (undocumented) +type ReversiInvitationsErrors = EndpointsErrors['reversi___invitations'][keyof EndpointsErrors['reversi___invitations']]; + // @public (undocumented) type ReversiInvitationsResponse = operations['reversi___invitations']['responses']['200']['content']['application/json']; +// @public (undocumented) +type ReversiMatchErrors = EndpointsErrors['reversi___match'][keyof EndpointsErrors['reversi___match']]; + // @public (undocumented) type ReversiMatchRequest = operations['reversi___match']['requestBody']['content']['application/json']; // @public (undocumented) type ReversiMatchResponse = operations['reversi___match']['responses']['200']['content']['application/json']; +// @public (undocumented) +type ReversiShowGameErrors = EndpointsErrors['reversi___show-game'][keyof EndpointsErrors['reversi___show-game']]; + // @public (undocumented) type ReversiShowGameRequest = operations['reversi___show-game']['requestBody']['content']['application/json']; // @public (undocumented) type ReversiShowGameResponse = operations['reversi___show-game']['responses']['200']['content']['application/json']; +// @public (undocumented) +type ReversiSurrenderErrors = EndpointsErrors['reversi___surrender'][keyof EndpointsErrors['reversi___surrender']]; + // @public (undocumented) type ReversiSurrenderRequest = operations['reversi___surrender']['requestBody']['content']['application/json']; // @public (undocumented) export const reversiUpdateKeys: ["map", "bw", "isLlotheo", "canPutEverywhere", "loopedBoard", "timeLimitForEachTurn"]; +// @public (undocumented) +type ReversiVerifyErrors = EndpointsErrors['reversi___verify'][keyof EndpointsErrors['reversi___verify']]; + // @public (undocumented) type ReversiVerifyRequest = operations['reversi___verify']['requestBody']['content']['application/json']; @@ -3008,27 +4436,42 @@ type RoleLite = components['schemas']['RoleLite']; // @public (undocumented) type RolePolicies = components['schemas']['RolePolicies']; +// @public (undocumented) +type RolesListErrors = EndpointsErrors['roles___list'][keyof EndpointsErrors['roles___list']]; + // @public (undocumented) type RolesListResponse = operations['roles___list']['responses']['200']['content']['application/json']; +// @public (undocumented) +type RolesNotesErrors = EndpointsErrors['roles___notes'][keyof EndpointsErrors['roles___notes']]; + // @public (undocumented) type RolesNotesRequest = operations['roles___notes']['requestBody']['content']['application/json']; // @public (undocumented) type RolesNotesResponse = operations['roles___notes']['responses']['200']['content']['application/json']; +// @public (undocumented) +type RolesShowErrors = EndpointsErrors['roles___show'][keyof EndpointsErrors['roles___show']]; + // @public (undocumented) type RolesShowRequest = operations['roles___show']['requestBody']['content']['application/json']; // @public (undocumented) type RolesShowResponse = operations['roles___show']['responses']['200']['content']['application/json']; +// @public (undocumented) +type RolesUsersErrors = EndpointsErrors['roles___users'][keyof EndpointsErrors['roles___users']]; + // @public (undocumented) type RolesUsersRequest = operations['roles___users']['requestBody']['content']['application/json']; // @public (undocumented) type RolesUsersResponse = operations['roles___users']['responses']['200']['content']['application/json']; +// @public (undocumented) +type ServerInfoErrors = EndpointsErrors['server-info'][keyof EndpointsErrors['server-info']]; + // @public (undocumented) type ServerInfoResponse = operations['server-info']['responses']['200']['content']['application/json']; @@ -3055,6 +4498,27 @@ type ServerStatsLog = ServerStats[]; // @public (undocumented) type Signin = components['schemas']['Signin']; +// Warning: (ae-forgotten-export) The symbol "WebAuthnServiceErrors" needs to be exported by the entry point index.d.ts +// +// @public (undocumented) +type SigninFlowErrors = { + message: 'Too many failed attempts to sign in. Try again later.'; + code: 'TOO_MANY_AUTHENTICATION_FAILURES'; + id: '22d05606-fbcf-421a-a2db-b32610dcfd1b'; +} | { + id: '6cc579cc-885d-43d8-95c2-b8c7fc963280'; +} | { + id: 'e03a5f46-d309-4865-9b69-56282d94e1eb'; +} | { + id: '4e30e80c-e338-45a0-8c8f-44455efa3b76'; +} | { + id: '932c904e-9460-45b7-9ce6-7ed33be7eb2c'; +} | { + id: 'cdf1235b-ac71-46d4-a3a6-84ccce48df6f'; +} | { + id: '93b86c4b-72f9-40eb-9815-798928603d1e'; +} | WebAuthnServiceErrors; + // @public (undocumented) type SigninFlowRequest = { username: string; @@ -3081,6 +4545,25 @@ type SigninFlowResponse = { authRequest: PublicKeyCredentialRequestOptionsJSON; }; +// @public (undocumented) +type SigninWithPasskeyErrors = { + message: 'Too many failed attempts to sign in. Try again later.'; + code: 'TOO_MANY_AUTHENTICATION_FAILURES'; + id: '22d05606-fbcf-421a-a2db-b32610dcfd1b'; +} | { + id: '4e30e80c-e338-45a0-8c8f-44455efa3b76'; +} | { + id: '1658cc2e-4495-461f-aee4-d403cdf073c1'; +} | { + id: '932c904e-9460-45b7-9ce6-7ed33be7eb2c'; +} | { + id: '652f899f-66d4-490e-993e-6606c8ec04c3'; +} | { + id: 'e03a5f46-d309-4865-9b69-56282d94e1eb'; +} | { + id: '2d84773e-f7b7-4d0b-8f72-bb69b584c912'; +} | WebAuthnServiceErrors; + // @public (undocumented) type SigninWithPasskeyInitResponse = { option: PublicKeyCredentialRequestOptionsJSON; @@ -3100,6 +4583,18 @@ type SigninWithPasskeyResponse = { }; }; +// @public (undocumented) +type SignupErrors = { + message: 'DUPLICATED_USERNAME'; + code: 400; +} | { + message: 'USED_USERNAME'; + code: 400; +} | { + message: 'DENIED_USERNAME'; + code: 400; +} | Record; + // @public (undocumented) type SignupPendingRequest = { code: string; @@ -3129,6 +4624,9 @@ type SignupResponse = MeDetailed & { token: string; }; +// @public (undocumented) +type StatsErrors = EndpointsErrors['stats'][keyof EndpointsErrors['stats']]; + // @public (undocumented) type StatsResponse = operations['stats']['responses']['200']['content']['application/json']; @@ -3178,21 +4676,33 @@ export type StreamEvents = { // @public (undocumented) type SwitchCaseResponseType = Endpoints[E]['res'] extends SwitchCase ? IsCaseMatched extends true ? GetCaseResult : IsCaseMatched extends true ? GetCaseResult : IsCaseMatched extends true ? GetCaseResult : IsCaseMatched extends true ? GetCaseResult : IsCaseMatched extends true ? GetCaseResult : IsCaseMatched extends true ? GetCaseResult : IsCaseMatched extends true ? GetCaseResult : IsCaseMatched extends true ? GetCaseResult : IsCaseMatched extends true ? GetCaseResult : IsCaseMatched extends true ? GetCaseResult : Endpoints[E]['res']['$switch']['$default'] : Endpoints[E]['res']; +// @public (undocumented) +type SwRegisterErrors = EndpointsErrors['sw___register'][keyof EndpointsErrors['sw___register']]; + // @public (undocumented) type SwRegisterRequest = operations['sw___register']['requestBody']['content']['application/json']; // @public (undocumented) type SwRegisterResponse = operations['sw___register']['responses']['200']['content']['application/json']; +// @public (undocumented) +type SwShowRegistrationErrors = EndpointsErrors['sw___show-registration'][keyof EndpointsErrors['sw___show-registration']]; + // @public (undocumented) type SwShowRegistrationRequest = operations['sw___show-registration']['requestBody']['content']['application/json']; // @public (undocumented) type SwShowRegistrationResponse = operations['sw___show-registration']['responses']['200']['content']['application/json']; +// @public (undocumented) +type SwUnregisterErrors = EndpointsErrors['sw___unregister'][keyof EndpointsErrors['sw___unregister']]; + // @public (undocumented) type SwUnregisterRequest = operations['sw___unregister']['requestBody']['content']['application/json']; +// @public (undocumented) +type SwUpdateRegistrationErrors = EndpointsErrors['sw___update-registration'][keyof EndpointsErrors['sw___update-registration']]; + // @public (undocumented) type SwUpdateRegistrationRequest = operations['sw___update-registration']['requestBody']['content']['application/json']; @@ -3202,6 +4712,9 @@ type SwUpdateRegistrationResponse = operations['sw___update-registration']['resp // @public (undocumented) type SystemWebhook = components['schemas']['SystemWebhook']; +// @public (undocumented) +type TestErrors = EndpointsErrors['test'][keyof EndpointsErrors['test']]; + // @public (undocumented) type TestRequest = operations['test']['requestBody']['content']['application/json']; @@ -3229,60 +4742,96 @@ type UserList = components['schemas']['UserList']; // @public (undocumented) type UserLite = components['schemas']['UserLite']; +// @public (undocumented) +type UsernameAvailableErrors = EndpointsErrors['username___available'][keyof EndpointsErrors['username___available']]; + // @public (undocumented) type UsernameAvailableRequest = operations['username___available']['requestBody']['content']['application/json']; // @public (undocumented) type UsernameAvailableResponse = operations['username___available']['responses']['200']['content']['application/json']; +// @public (undocumented) +type UsersAchievementsErrors = EndpointsErrors['users___achievements'][keyof EndpointsErrors['users___achievements']]; + // @public (undocumented) type UsersAchievementsRequest = operations['users___achievements']['requestBody']['content']['application/json']; // @public (undocumented) type UsersAchievementsResponse = operations['users___achievements']['responses']['200']['content']['application/json']; +// @public (undocumented) +type UsersClipsErrors = EndpointsErrors['users___clips'][keyof EndpointsErrors['users___clips']]; + // @public (undocumented) type UsersClipsRequest = operations['users___clips']['requestBody']['content']['application/json']; // @public (undocumented) type UsersClipsResponse = operations['users___clips']['responses']['200']['content']['application/json']; +// @public (undocumented) +type UsersErrors = EndpointsErrors['users'][keyof EndpointsErrors['users']]; + +// @public (undocumented) +type UsersFeaturedNotesErrors = EndpointsErrors['users___featured-notes'][keyof EndpointsErrors['users___featured-notes']]; + // @public (undocumented) type UsersFeaturedNotesRequest = operations['users___featured-notes']['requestBody']['content']['application/json']; // @public (undocumented) type UsersFeaturedNotesResponse = operations['users___featured-notes']['responses']['200']['content']['application/json']; +// @public (undocumented) +type UsersFlashsErrors = EndpointsErrors['users___flashs'][keyof EndpointsErrors['users___flashs']]; + // @public (undocumented) type UsersFlashsRequest = operations['users___flashs']['requestBody']['content']['application/json']; // @public (undocumented) type UsersFlashsResponse = operations['users___flashs']['responses']['200']['content']['application/json']; +// @public (undocumented) +type UsersFollowersErrors = EndpointsErrors['users___followers'][keyof EndpointsErrors['users___followers']]; + // @public (undocumented) type UsersFollowersRequest = operations['users___followers']['requestBody']['content']['application/json']; // @public (undocumented) type UsersFollowersResponse = operations['users___followers']['responses']['200']['content']['application/json']; +// @public (undocumented) +type UsersFollowingErrors = EndpointsErrors['users___following'][keyof EndpointsErrors['users___following']]; + // @public (undocumented) type UsersFollowingRequest = operations['users___following']['requestBody']['content']['application/json']; // @public (undocumented) type UsersFollowingResponse = operations['users___following']['responses']['200']['content']['application/json']; +// @public (undocumented) +type UsersGalleryPostsErrors = EndpointsErrors['users___gallery___posts'][keyof EndpointsErrors['users___gallery___posts']]; + // @public (undocumented) type UsersGalleryPostsRequest = operations['users___gallery___posts']['requestBody']['content']['application/json']; // @public (undocumented) type UsersGalleryPostsResponse = operations['users___gallery___posts']['responses']['200']['content']['application/json']; +// @public (undocumented) +type UsersGetFrequentlyRepliedUsersErrors = EndpointsErrors['users___get-frequently-replied-users'][keyof EndpointsErrors['users___get-frequently-replied-users']]; + // @public (undocumented) type UsersGetFrequentlyRepliedUsersRequest = operations['users___get-frequently-replied-users']['requestBody']['content']['application/json']; // @public (undocumented) type UsersGetFrequentlyRepliedUsersResponse = operations['users___get-frequently-replied-users']['responses']['200']['content']['application/json']; +// @public (undocumented) +type UsersListsCreateErrors = EndpointsErrors['users___lists___create'][keyof EndpointsErrors['users___lists___create']]; + +// @public (undocumented) +type UsersListsCreateFromPublicErrors = EndpointsErrors['users___lists___create-from-public'][keyof EndpointsErrors['users___lists___create-from-public']]; + // @public (undocumented) type UsersListsCreateFromPublicRequest = operations['users___lists___create-from-public']['requestBody']['content']['application/json']; @@ -3295,39 +4844,69 @@ type UsersListsCreateRequest = operations['users___lists___create']['requestBody // @public (undocumented) type UsersListsCreateResponse = operations['users___lists___create']['responses']['200']['content']['application/json']; +// @public (undocumented) +type UsersListsDeleteErrors = EndpointsErrors['users___lists___delete'][keyof EndpointsErrors['users___lists___delete']]; + // @public (undocumented) type UsersListsDeleteRequest = operations['users___lists___delete']['requestBody']['content']['application/json']; +// @public (undocumented) +type UsersListsFavoriteErrors = EndpointsErrors['users___lists___favorite'][keyof EndpointsErrors['users___lists___favorite']]; + // @public (undocumented) type UsersListsFavoriteRequest = operations['users___lists___favorite']['requestBody']['content']['application/json']; +// @public (undocumented) +type UsersListsGetMembershipsErrors = EndpointsErrors['users___lists___get-memberships'][keyof EndpointsErrors['users___lists___get-memberships']]; + // @public (undocumented) type UsersListsGetMembershipsRequest = operations['users___lists___get-memberships']['requestBody']['content']['application/json']; // @public (undocumented) type UsersListsGetMembershipsResponse = operations['users___lists___get-memberships']['responses']['200']['content']['application/json']; +// @public (undocumented) +type UsersListsListErrors = EndpointsErrors['users___lists___list'][keyof EndpointsErrors['users___lists___list']]; + // @public (undocumented) type UsersListsListRequest = operations['users___lists___list']['requestBody']['content']['application/json']; // @public (undocumented) type UsersListsListResponse = operations['users___lists___list']['responses']['200']['content']['application/json']; +// @public (undocumented) +type UsersListsPullErrors = EndpointsErrors['users___lists___pull'][keyof EndpointsErrors['users___lists___pull']]; + // @public (undocumented) type UsersListsPullRequest = operations['users___lists___pull']['requestBody']['content']['application/json']; +// @public (undocumented) +type UsersListsPushErrors = EndpointsErrors['users___lists___push'][keyof EndpointsErrors['users___lists___push']]; + // @public (undocumented) type UsersListsPushRequest = operations['users___lists___push']['requestBody']['content']['application/json']; +// @public (undocumented) +type UsersListsShowErrors = EndpointsErrors['users___lists___show'][keyof EndpointsErrors['users___lists___show']]; + // @public (undocumented) type UsersListsShowRequest = operations['users___lists___show']['requestBody']['content']['application/json']; // @public (undocumented) type UsersListsShowResponse = operations['users___lists___show']['responses']['200']['content']['application/json']; +// @public (undocumented) +type UsersListsUnfavoriteErrors = EndpointsErrors['users___lists___unfavorite'][keyof EndpointsErrors['users___lists___unfavorite']]; + // @public (undocumented) type UsersListsUnfavoriteRequest = operations['users___lists___unfavorite']['requestBody']['content']['application/json']; +// @public (undocumented) +type UsersListsUpdateErrors = EndpointsErrors['users___lists___update'][keyof EndpointsErrors['users___lists___update']]; + +// @public (undocumented) +type UsersListsUpdateMembershipErrors = EndpointsErrors['users___lists___update-membership'][keyof EndpointsErrors['users___lists___update-membership']]; + // @public (undocumented) type UsersListsUpdateMembershipRequest = operations['users___lists___update-membership']['requestBody']['content']['application/json']; @@ -3337,36 +4916,54 @@ type UsersListsUpdateRequest = operations['users___lists___update']['requestBody // @public (undocumented) type UsersListsUpdateResponse = operations['users___lists___update']['responses']['200']['content']['application/json']; +// @public (undocumented) +type UsersNotesErrors = EndpointsErrors['users___notes'][keyof EndpointsErrors['users___notes']]; + // @public (undocumented) type UsersNotesRequest = operations['users___notes']['requestBody']['content']['application/json']; // @public (undocumented) type UsersNotesResponse = operations['users___notes']['responses']['200']['content']['application/json']; +// @public (undocumented) +type UsersPagesErrors = EndpointsErrors['users___pages'][keyof EndpointsErrors['users___pages']]; + // @public (undocumented) type UsersPagesRequest = operations['users___pages']['requestBody']['content']['application/json']; // @public (undocumented) type UsersPagesResponse = operations['users___pages']['responses']['200']['content']['application/json']; +// @public (undocumented) +type UsersReactionsErrors = EndpointsErrors['users___reactions'][keyof EndpointsErrors['users___reactions']]; + // @public (undocumented) type UsersReactionsRequest = operations['users___reactions']['requestBody']['content']['application/json']; // @public (undocumented) type UsersReactionsResponse = operations['users___reactions']['responses']['200']['content']['application/json']; +// @public (undocumented) +type UsersRecommendationErrors = EndpointsErrors['users___recommendation'][keyof EndpointsErrors['users___recommendation']]; + // @public (undocumented) type UsersRecommendationRequest = operations['users___recommendation']['requestBody']['content']['application/json']; // @public (undocumented) type UsersRecommendationResponse = operations['users___recommendation']['responses']['200']['content']['application/json']; +// @public (undocumented) +type UsersRelationErrors = EndpointsErrors['users___relation'][keyof EndpointsErrors['users___relation']]; + // @public (undocumented) type UsersRelationRequest = operations['users___relation']['requestBody']['content']['application/json']; // @public (undocumented) type UsersRelationResponse = operations['users___relation']['responses']['200']['content']['application/json']; +// @public (undocumented) +type UsersReportAbuseErrors = EndpointsErrors['users___report-abuse'][keyof EndpointsErrors['users___report-abuse']]; + // @public (undocumented) type UsersReportAbuseRequest = operations['users___report-abuse']['requestBody']['content']['application/json']; @@ -3376,30 +4973,43 @@ type UsersRequest = operations['users']['requestBody']['content']['application/j // @public (undocumented) type UsersResponse = operations['users']['responses']['200']['content']['application/json']; +// @public (undocumented) +type UsersSearchByUsernameAndHostErrors = EndpointsErrors['users___search-by-username-and-host'][keyof EndpointsErrors['users___search-by-username-and-host']]; + // @public (undocumented) type UsersSearchByUsernameAndHostRequest = operations['users___search-by-username-and-host']['requestBody']['content']['application/json']; // @public (undocumented) type UsersSearchByUsernameAndHostResponse = operations['users___search-by-username-and-host']['responses']['200']['content']['application/json']; +// @public (undocumented) +type UsersSearchErrors = EndpointsErrors['users___search'][keyof EndpointsErrors['users___search']]; + // @public (undocumented) type UsersSearchRequest = operations['users___search']['requestBody']['content']['application/json']; // @public (undocumented) type UsersSearchResponse = operations['users___search']['responses']['200']['content']['application/json']; +// @public (undocumented) +type UsersShowErrors = EndpointsErrors['users___show'][keyof EndpointsErrors['users___show']]; + // @public (undocumented) type UsersShowRequest = operations['users___show']['requestBody']['content']['application/json']; // @public (undocumented) type UsersShowResponse = operations['users___show']['responses']['200']['content']['application/json']; +// @public (undocumented) +type UsersUpdateMemoErrors = EndpointsErrors['users___update-memo'][keyof EndpointsErrors['users___update-memo']]; + // @public (undocumented) type UsersUpdateMemoRequest = operations['users___update-memo']['requestBody']['content']['application/json']; // Warnings were encountered during analysis: // -// src/entities.ts:50:2 - (ae-forgotten-export) The symbol "ModerationLogPayloads" needs to be exported by the entry point index.d.ts +// src/autogen/endpointErrors.ts:994:2 - (ae-forgotten-export) The symbol "IdentifiableError" needs to be exported by the entry point index.d.ts +// src/entities.ts:51:2 - (ae-forgotten-export) The symbol "ModerationLogPayloads" needs to be exported by the entry point index.d.ts // src/streaming.types.ts:220:4 - (ae-forgotten-export) The symbol "ReversiUpdateKey" needs to be exported by the entry point index.d.ts // src/streaming.types.ts:230:4 - (ae-forgotten-export) The symbol "ReversiUpdateSettings" needs to be exported by the entry point index.d.ts diff --git a/packages/misskey-js/generator/src/generator.ts b/packages/misskey-js/generator/src/generator.ts index 88f2ae9ee9..dfa3090a51 100644 --- a/packages/misskey-js/generator/src/generator.ts +++ b/packages/misskey-js/generator/src/generator.ts @@ -4,16 +4,26 @@ import { toPascal } from 'ts-case-convert'; import OpenAPIParser from '@readme/openapi-parser'; import openapiTS from 'openapi-typescript'; +const disabledLints = [ + '@typescript-eslint/naming-convention', + '@typescript-eslint/no-explicit-any', +]; + +const commonErrorNames = [ + 'INVALID_PARAM', + 'CREDENTIAL_REQUIRED', + 'AUTHENTICATION_FAILED', + 'I_AM_AI', + 'INTERNAL_ERROR', +]; + +const commonErrorTypesName = 'CommonErrorTypes'; + async function generateBaseTypes( openApiDocs: OpenAPIV3_1.Document, openApiJsonPath: string, typeFileName: string, ) { - const disabledLints = [ - '@typescript-eslint/naming-convention', - '@typescript-eslint/no-explicit-any', - ]; - const lines: string[] = []; for (const lint of disabledLints) { lines.push(`/* eslint ${lint}: 0 */`); @@ -56,24 +66,135 @@ async function generateSchemaEntities( await writeFile(outputPath, typeAliasLines.join('\n')); } +function getEndpoints(openApiDocs: OpenAPIV3_1.Document) { + // misskey-jsはPOST固定で送っているので、こちらも決め打ちする。別メソッドに対応することがあればこちらも直す必要あり + const paths = openApiDocs.paths ?? {}; + return Object.keys(paths) + .map(it => ({ + _path_: it.replace(/^\//, ''), + ...paths[it]?.post, + })) + .filter(filterUndefined); +} + +async function generateEndpointErrors( + openApiDocs: OpenAPIV3_1.Document, + endpointErrorsOutputPath: string, +) { + const endpoints: Endpoint[] = []; + + const postPathItems = getEndpoints(openApiDocs); + + const endpointsErrorsOutputLine: string[] = []; + + for (const lint of disabledLints) { + endpointsErrorsOutputLine.push(`/* eslint ${lint}: 0 */`); + } + endpointsErrorsOutputLine.push(''); + + const errorWithIdTypes = new Map(); + + const foundCommonErrorNamesAndErrorId = new Map(); + + endpointsErrorsOutputLine.push('export type EndpointsErrors = {'); + + for (const operation of postPathItems) { + const path = operation._path_; + // eslint-disable-next-line @typescript-eslint/no-non-null-assertion + const operationId = operation.operationId!; + const endpoint = new Endpoint(path); + endpoints.push(endpoint); + + if (operation.responses) { + const okResponses = [ + '200', + '201', + '202', + '204', + ]; + + const errorResponseCodes = Object.keys(operation.responses).filter((key) => !okResponses.includes(key)); + // eslint-disable-next-line @typescript-eslint/no-explicit-any + const errorTypes = new Map>(); + errorResponseCodes.forEach((code) => { + if (operation.responses == null) return; + const response = operation.responses[code]; + if ('content' in response && response.content != null && 'application/json' in response.content) { + const errors = response.content['application/json'].examples; + if (errors != null) { + Object.keys(errors).forEach((key) => { + const error = errors[key]; + // eslint-disable-next-line @typescript-eslint/no-unnecessary-condition + if (error != null && 'value' in error && error.value != null) { + errorTypes.set(key, error.value); + } + }); + } + } + }); + + if (errorTypes.size > 0) { + const endpointErrorsLine: string[] = []; + let hasCommonError = false; + for (const [key, value] of errorTypes) { + if ('error' in value && value.error != null) { + let typeString = JSON.stringify(value.error); + typeString = typeString.substring(0, typeString.length - 1) + ', [x: string]: any ' + typeString.substring(typeString.length - 1); + if ('id' in value.error && value.error.id != null) { + errorWithIdTypes.set(value.error.id, typeString); + if (commonErrorNames.includes(key)) { + foundCommonErrorNamesAndErrorId.set(key, value.error.id); + hasCommonError = true; + } else { + endpointErrorsLine.push(`\t\t'${key}': IdentifiableError['${value.error.id}'],`); + } + } else { + endpointErrorsLine.push(`\t\t'${key}': ${typeString},`); + } + } + } + + if (endpointErrorsLine.length > 0) { + endpointsErrorsOutputLine.push(`\t'${operationId}': {`); + endpointsErrorsOutputLine.push(...endpointErrorsLine); + endpointsErrorsOutputLine.push(hasCommonError ? `\t} & ${commonErrorTypesName},` : '\t},'); + } else if (hasCommonError) { + endpointsErrorsOutputLine.push(`\t'${operationId}': ${commonErrorTypesName},`); + } + } + } + } + + endpointsErrorsOutputLine.push('};'); + endpointsErrorsOutputLine.push(''); + + endpointsErrorsOutputLine.push(`export type ${commonErrorTypesName} = {`); + for (const [key, value] of foundCommonErrorNamesAndErrorId) { + endpointsErrorsOutputLine.push(`\t'${key}': IdentifiableError['${value}'],`); + } + endpointsErrorsOutputLine.push('};'); + endpointsErrorsOutputLine.push(''); + + endpointsErrorsOutputLine.push('export type IdentifiableError = {'); + for (const [key, value] of errorWithIdTypes) { + endpointsErrorsOutputLine.push(`\t'${key}': ${value},`); + } + endpointsErrorsOutputLine.push('};'); + await writeFile(endpointErrorsOutputPath, endpointsErrorsOutputLine.join('\n')); +} + async function generateEndpoints( openApiDocs: OpenAPIV3_1.Document, typeFileName: string, entitiesOutputPath: string, + endpointErrorsOutputPath: string, endpointOutputPath: string, ) { const endpoints: Endpoint[] = []; const endpointReqMediaTypes: EndpointReqMediaType[] = []; const endpointReqMediaTypesSet = new Set(); - // misskey-jsはPOST固定で送っているので、こちらも決め打ちする。別メソッドに対応することがあればこちらも直す必要あり - const paths = openApiDocs.paths ?? {}; - const postPathItems = Object.keys(paths) - .map(it => ({ - _path_: it.replace(/^\//, ''), - ...paths[it]?.post, - })) - .filter(filterUndefined); + const postPathItems = getEndpoints(openApiDocs); for (const operation of postPathItems) { const path = operation._path_; @@ -116,6 +237,18 @@ async function generateEndpoints( ); } } + + if (operation.responses) { + const errorResponseCodes = Object.keys(operation.responses).filter((key) => key !== '200'); + if (errorResponseCodes.length > 0) { + endpoint.errors = new OperationTypeAlias( + operationId, + path, + 'application/json', + OperationsAliasType.ERRORS, + ); + } + } } const entitiesOutputLine: string[] = []; @@ -123,14 +256,16 @@ async function generateEndpoints( entitiesOutputLine.push('/* eslint @typescript-eslint/naming-convention: 0 */'); entitiesOutputLine.push(`import { operations } from '${toImportPath(typeFileName)}';`); + entitiesOutputLine.push(`import { EndpointsErrors as _Operations_EndpointsErrors } from '${toImportPath(endpointErrorsOutputPath)}';`); entitiesOutputLine.push(''); entitiesOutputLine.push(new EmptyTypeAlias(OperationsAliasType.REQUEST).toLine()); entitiesOutputLine.push(new EmptyTypeAlias(OperationsAliasType.RESPONSE).toLine()); + entitiesOutputLine.push(new EmptyTypeAlias(OperationsAliasType.ERRORS).toLine()); entitiesOutputLine.push(''); const entities = endpoints - .flatMap(it => [it.request, it.response].filter(i => i)) + .flatMap(it => [it.request, it.response, it.errors].filter(i => i)) .filter(filterUndefined); entitiesOutputLine.push(...entities.map(it => it.toLine())); entitiesOutputLine.push(''); @@ -139,9 +274,12 @@ async function generateEndpoints( const endpointOutputLine: string[] = []; + endpointOutputLine.push('/* eslint @typescript-eslint/no-unused-vars: 0 */'); + endpointOutputLine.push(''); + endpointOutputLine.push('import type {'); endpointOutputLine.push( - ...[emptyRequest, emptyResponse, ...entities].map(it => '\t' + it.generateName() + ','), + ...[emptyRequest, emptyResponse, emptyErrors, ...entities].map(it => '\t' + it.generateName() + ','), ); endpointOutputLine.push(`} from '${toImportPath(entitiesOutputPath)}';`); endpointOutputLine.push(''); @@ -267,7 +405,8 @@ function toImportPath(fileName: string, fromPath = '/built/autogen', toPath = '' enum OperationsAliasType { REQUEST = 'Request', - RESPONSE = 'Response' + RESPONSE = 'Response', + ERRORS = 'Errors', } interface IOperationTypeAlias { @@ -303,9 +442,15 @@ class OperationTypeAlias implements IOperationTypeAlias { toLine(): string { const name = this.generateName(); - return (this.type === OperationsAliasType.REQUEST) - ? `export type ${name} = operations['${this.operationId}']['requestBody']['content']['${this.mediaType}'];` - : `export type ${name} = operations['${this.operationId}']['responses']['200']['content']['${this.mediaType}'];`; + + switch (this.type) { + case OperationsAliasType.REQUEST: + return `export type ${name} = operations['${this.operationId}']['requestBody']['content']['${this.mediaType}'];`; + case OperationsAliasType.RESPONSE: + return `export type ${name} = operations['${this.operationId}']['responses']['200']['content']['${this.mediaType}'];`; + case OperationsAliasType.ERRORS: + return `export type ${name} = _Operations_EndpointsErrors['${this.operationId}'][keyof _Operations_EndpointsErrors['${this.operationId}']];`; + } } } @@ -328,11 +473,13 @@ class EmptyTypeAlias implements IOperationTypeAlias { const emptyRequest = new EmptyTypeAlias(OperationsAliasType.REQUEST); const emptyResponse = new EmptyTypeAlias(OperationsAliasType.RESPONSE); +const emptyErrors = new EmptyTypeAlias(OperationsAliasType.ERRORS); class Endpoint { public readonly path: string; public request?: IOperationTypeAlias; public response?: IOperationTypeAlias; + public errors?: IOperationTypeAlias; constructor(path: string) { this.path = path; @@ -341,8 +488,9 @@ class Endpoint { toLine(): string { const reqName = this.request?.generateName() ?? emptyRequest.generateName(); const resName = this.response?.generateName() ?? emptyResponse.generateName(); + const errorsName = this.errors?.generateName() ?? emptyErrors.generateName(); - return `'${this.path}': { req: ${reqName}; res: ${resName} };`; + return `'${this.path}': { req: ${reqName}; res: ${resName}; errors: ${errorsName} };`; } } @@ -376,12 +524,15 @@ async function main() { const typeFileName = './built/autogen/types.ts'; await generateBaseTypes(openApiDocs, openApiJsonPath, typeFileName); + const endpointErrorsFileName = `${generatePath}/endpointErrors.ts`; + await generateEndpointErrors(openApiDocs, endpointErrorsFileName); + const modelFileName = `${generatePath}/models.ts`; await generateSchemaEntities(openApiDocs, typeFileName, modelFileName); const entitiesFileName = `${generatePath}/entities.ts`; const endpointFileName = `${generatePath}/endpoint.ts`; - await generateEndpoints(openApiDocs, typeFileName, entitiesFileName, endpointFileName); + await generateEndpoints(openApiDocs, typeFileName, entitiesFileName, endpointErrorsFileName, endpointFileName); const apiClientWarningFileName = `${generatePath}/apiClientJSDoc.ts`; await generateApiClientJSDoc(openApiDocs, '../api.ts', endpointFileName, apiClientWarningFileName); diff --git a/packages/misskey-js/src/api.types.ts b/packages/misskey-js/src/api.types.ts index 838949f8e1..3432cad4ce 100644 --- a/packages/misskey-js/src/api.types.ts +++ b/packages/misskey-js/src/api.types.ts @@ -1,17 +1,20 @@ import { Endpoints as Gen } from './autogen/endpoint.js'; import { UserDetailed } from './autogen/models.js'; -import { AdminRolesCreateRequest, AdminRolesCreateResponse, UsersShowRequest } from './autogen/entities.js'; +import { AdminRolesCreateRequest, AdminRolesCreateResponse, UsersShowRequest, UsersShowErrors, AdminRolesCreateErrors } from './autogen/entities.js'; import { PartialRolePolicyOverride, SigninFlowRequest, SigninFlowResponse, + SigninFlowErrors, SigninWithPasskeyInitResponse, SigninWithPasskeyRequest, SigninWithPasskeyResponse, + SigninWithPasskeyErrors, SignupPendingRequest, SignupPendingResponse, SignupRequest, SignupResponse, + SignupErrors, } from './entities.js'; type Overwrite = Omit< @@ -69,21 +72,25 @@ export type Endpoints = Overwrite< $default: UserDetailed; }; }; + errors: UsersShowErrors; }, // api.jsonには載せないものなのでここで定義 'signup': { req: SignupRequest; res: SignupResponse; + errors: SignupErrors; }, // api.jsonには載せないものなのでここで定義 'signup-pending': { req: SignupPendingRequest; res: SignupPendingResponse; + errors: SignupErrors; }, // api.jsonには載せないものなのでここで定義 'signin-flow': { req: SigninFlowRequest; res: SigninFlowResponse; + errors: SigninFlowErrors; }, 'signin-with-passkey': { req: SigninWithPasskeyRequest; @@ -100,10 +107,12 @@ export type Endpoints = Overwrite< $default: SigninWithPasskeyInitResponse; }, }, + errors: SigninWithPasskeyErrors; }, 'admin/roles/create': { req: Overwrite; res: AdminRolesCreateResponse; + errors: AdminRolesCreateErrors; } } > diff --git a/packages/misskey-js/src/autogen/endpoint.ts b/packages/misskey-js/src/autogen/endpoint.ts index d0367d8496..9311bfbee9 100644 --- a/packages/misskey-js/src/autogen/endpoint.ts +++ b/packages/misskey-js/src/autogen/endpoint.ts @@ -1,967 +1,1353 @@ +/* eslint @typescript-eslint/no-unused-vars: 0 */ + import type { EmptyRequest, EmptyResponse, + EmptyErrors, AdminMetaResponse, + AdminMetaErrors, AdminAbuseUserReportsRequest, AdminAbuseUserReportsResponse, + AdminAbuseUserReportsErrors, AdminAbuseReportNotificationRecipientListRequest, AdminAbuseReportNotificationRecipientListResponse, + AdminAbuseReportNotificationRecipientListErrors, AdminAbuseReportNotificationRecipientShowRequest, AdminAbuseReportNotificationRecipientShowResponse, + AdminAbuseReportNotificationRecipientShowErrors, AdminAbuseReportNotificationRecipientCreateRequest, AdminAbuseReportNotificationRecipientCreateResponse, + AdminAbuseReportNotificationRecipientCreateErrors, AdminAbuseReportNotificationRecipientUpdateRequest, AdminAbuseReportNotificationRecipientUpdateResponse, + AdminAbuseReportNotificationRecipientUpdateErrors, AdminAbuseReportNotificationRecipientDeleteRequest, + AdminAbuseReportNotificationRecipientDeleteErrors, AdminAccountsCreateRequest, AdminAccountsCreateResponse, + AdminAccountsCreateErrors, AdminAccountsDeleteRequest, + AdminAccountsDeleteErrors, AdminAccountsFindByEmailRequest, AdminAccountsFindByEmailResponse, + AdminAccountsFindByEmailErrors, AdminAdCreateRequest, AdminAdCreateResponse, + AdminAdCreateErrors, AdminAdDeleteRequest, + AdminAdDeleteErrors, AdminAdListRequest, AdminAdListResponse, + AdminAdListErrors, AdminAdUpdateRequest, + AdminAdUpdateErrors, AdminAnnouncementsCreateRequest, AdminAnnouncementsCreateResponse, + AdminAnnouncementsCreateErrors, AdminAnnouncementsDeleteRequest, + AdminAnnouncementsDeleteErrors, AdminAnnouncementsListRequest, AdminAnnouncementsListResponse, + AdminAnnouncementsListErrors, AdminAnnouncementsUpdateRequest, + AdminAnnouncementsUpdateErrors, AdminAvatarDecorationsCreateRequest, + AdminAvatarDecorationsCreateErrors, AdminAvatarDecorationsDeleteRequest, + AdminAvatarDecorationsDeleteErrors, AdminAvatarDecorationsListRequest, AdminAvatarDecorationsListResponse, + AdminAvatarDecorationsListErrors, AdminAvatarDecorationsUpdateRequest, + AdminAvatarDecorationsUpdateErrors, AdminDeleteAllFilesOfAUserRequest, + AdminDeleteAllFilesOfAUserErrors, AdminUnsetUserAvatarRequest, + AdminUnsetUserAvatarErrors, AdminUnsetUserBannerRequest, + AdminUnsetUserBannerErrors, + AdminDriveCleanRemoteFilesErrors, + AdminDriveCleanupErrors, AdminDriveFilesRequest, AdminDriveFilesResponse, + AdminDriveFilesErrors, AdminDriveShowFileRequest, AdminDriveShowFileResponse, + AdminDriveShowFileErrors, AdminEmojiAddAliasesBulkRequest, + AdminEmojiAddAliasesBulkErrors, AdminEmojiAddRequest, AdminEmojiAddResponse, + AdminEmojiAddErrors, AdminEmojiCopyRequest, AdminEmojiCopyResponse, + AdminEmojiCopyErrors, AdminEmojiDeleteBulkRequest, + AdminEmojiDeleteBulkErrors, AdminEmojiDeleteRequest, + AdminEmojiDeleteErrors, AdminEmojiImportZipRequest, + AdminEmojiImportZipErrors, AdminEmojiListRemoteRequest, AdminEmojiListRemoteResponse, + AdminEmojiListRemoteErrors, AdminEmojiListRequest, AdminEmojiListResponse, + AdminEmojiListErrors, AdminEmojiRemoveAliasesBulkRequest, + AdminEmojiRemoveAliasesBulkErrors, AdminEmojiSetAliasesBulkRequest, + AdminEmojiSetAliasesBulkErrors, AdminEmojiSetCategoryBulkRequest, + AdminEmojiSetCategoryBulkErrors, AdminEmojiSetLicenseBulkRequest, + AdminEmojiSetLicenseBulkErrors, AdminEmojiUpdateRequest, + AdminEmojiUpdateErrors, AdminFederationDeleteAllFilesRequest, + AdminFederationDeleteAllFilesErrors, AdminFederationRefreshRemoteInstanceMetadataRequest, + AdminFederationRefreshRemoteInstanceMetadataErrors, AdminFederationRemoveAllFollowingRequest, + AdminFederationRemoveAllFollowingErrors, AdminFederationUpdateInstanceRequest, + AdminFederationUpdateInstanceErrors, AdminGetIndexStatsResponse, + AdminGetIndexStatsErrors, AdminGetTableStatsResponse, + AdminGetTableStatsErrors, AdminGetUserIpsRequest, AdminGetUserIpsResponse, + AdminGetUserIpsErrors, AdminInviteCreateRequest, AdminInviteCreateResponse, + AdminInviteCreateErrors, AdminInviteListRequest, AdminInviteListResponse, + AdminInviteListErrors, AdminPromoCreateRequest, + AdminPromoCreateErrors, + AdminQueueClearErrors, AdminQueueDeliverDelayedResponse, + AdminQueueDeliverDelayedErrors, AdminQueueInboxDelayedResponse, + AdminQueueInboxDelayedErrors, AdminQueuePromoteRequest, + AdminQueuePromoteErrors, AdminQueueStatsResponse, + AdminQueueStatsErrors, AdminRelaysAddRequest, AdminRelaysAddResponse, + AdminRelaysAddErrors, AdminRelaysListResponse, + AdminRelaysListErrors, AdminRelaysRemoveRequest, + AdminRelaysRemoveErrors, AdminResetPasswordRequest, AdminResetPasswordResponse, + AdminResetPasswordErrors, AdminResolveAbuseUserReportRequest, + AdminResolveAbuseUserReportErrors, AdminForwardAbuseUserReportRequest, + AdminForwardAbuseUserReportErrors, AdminUpdateAbuseUserReportRequest, + AdminUpdateAbuseUserReportErrors, AdminSendEmailRequest, + AdminSendEmailErrors, AdminServerInfoResponse, + AdminServerInfoErrors, AdminShowModerationLogsRequest, AdminShowModerationLogsResponse, + AdminShowModerationLogsErrors, AdminShowUserRequest, AdminShowUserResponse, + AdminShowUserErrors, AdminShowUsersRequest, AdminShowUsersResponse, + AdminShowUsersErrors, AdminSuspendUserRequest, + AdminSuspendUserErrors, AdminUnsuspendUserRequest, + AdminUnsuspendUserErrors, AdminUpdateMetaRequest, + AdminUpdateMetaErrors, AdminDeleteAccountRequest, + AdminDeleteAccountErrors, AdminUpdateUserNoteRequest, + AdminUpdateUserNoteErrors, AdminRolesCreateRequest, AdminRolesCreateResponse, + AdminRolesCreateErrors, AdminRolesDeleteRequest, + AdminRolesDeleteErrors, AdminRolesListResponse, + AdminRolesListErrors, AdminRolesShowRequest, AdminRolesShowResponse, + AdminRolesShowErrors, AdminRolesUpdateRequest, + AdminRolesUpdateErrors, AdminRolesAssignRequest, + AdminRolesAssignErrors, AdminRolesUnassignRequest, + AdminRolesUnassignErrors, AdminRolesUpdateDefaultPoliciesRequest, + AdminRolesUpdateDefaultPoliciesErrors, AdminRolesUsersRequest, AdminRolesUsersResponse, + AdminRolesUsersErrors, AdminSystemWebhookCreateRequest, AdminSystemWebhookCreateResponse, + AdminSystemWebhookCreateErrors, AdminSystemWebhookDeleteRequest, + AdminSystemWebhookDeleteErrors, AdminSystemWebhookListRequest, AdminSystemWebhookListResponse, + AdminSystemWebhookListErrors, AdminSystemWebhookShowRequest, AdminSystemWebhookShowResponse, + AdminSystemWebhookShowErrors, AdminSystemWebhookUpdateRequest, AdminSystemWebhookUpdateResponse, + AdminSystemWebhookUpdateErrors, AdminSystemWebhookTestRequest, + AdminSystemWebhookTestErrors, AnnouncementsRequest, AnnouncementsResponse, + AnnouncementsErrors, AnnouncementsShowRequest, AnnouncementsShowResponse, + AnnouncementsShowErrors, AntennasCreateRequest, AntennasCreateResponse, + AntennasCreateErrors, AntennasDeleteRequest, + AntennasDeleteErrors, AntennasListResponse, + AntennasListErrors, AntennasNotesRequest, AntennasNotesResponse, + AntennasNotesErrors, AntennasShowRequest, AntennasShowResponse, + AntennasShowErrors, AntennasUpdateRequest, AntennasUpdateResponse, + AntennasUpdateErrors, ApGetRequest, ApGetResponse, + ApGetErrors, ApShowRequest, ApShowResponse, + ApShowErrors, AppCreateRequest, AppCreateResponse, + AppCreateErrors, AppShowRequest, AppShowResponse, + AppShowErrors, AuthAcceptRequest, + AuthAcceptErrors, AuthSessionGenerateRequest, AuthSessionGenerateResponse, + AuthSessionGenerateErrors, AuthSessionShowRequest, AuthSessionShowResponse, + AuthSessionShowErrors, AuthSessionUserkeyRequest, AuthSessionUserkeyResponse, + AuthSessionUserkeyErrors, BlockingCreateRequest, BlockingCreateResponse, + BlockingCreateErrors, BlockingDeleteRequest, BlockingDeleteResponse, + BlockingDeleteErrors, BlockingListRequest, BlockingListResponse, + BlockingListErrors, ChannelsCreateRequest, ChannelsCreateResponse, + ChannelsCreateErrors, ChannelsFeaturedResponse, + ChannelsFeaturedErrors, ChannelsFollowRequest, + ChannelsFollowErrors, ChannelsFollowedRequest, ChannelsFollowedResponse, + ChannelsFollowedErrors, ChannelsOwnedRequest, ChannelsOwnedResponse, + ChannelsOwnedErrors, ChannelsShowRequest, ChannelsShowResponse, + ChannelsShowErrors, ChannelsTimelineRequest, ChannelsTimelineResponse, + ChannelsTimelineErrors, ChannelsUnfollowRequest, + ChannelsUnfollowErrors, ChannelsUpdateRequest, ChannelsUpdateResponse, + ChannelsUpdateErrors, ChannelsFavoriteRequest, + ChannelsFavoriteErrors, ChannelsUnfavoriteRequest, + ChannelsUnfavoriteErrors, ChannelsMyFavoritesResponse, + ChannelsMyFavoritesErrors, ChannelsSearchRequest, ChannelsSearchResponse, + ChannelsSearchErrors, ChartsActiveUsersRequest, ChartsActiveUsersResponse, + ChartsActiveUsersErrors, ChartsApRequestRequest, ChartsApRequestResponse, + ChartsApRequestErrors, ChartsDriveRequest, ChartsDriveResponse, + ChartsDriveErrors, ChartsFederationRequest, ChartsFederationResponse, + ChartsFederationErrors, ChartsInstanceRequest, ChartsInstanceResponse, + ChartsInstanceErrors, ChartsNotesRequest, ChartsNotesResponse, + ChartsNotesErrors, ChartsUserDriveRequest, ChartsUserDriveResponse, + ChartsUserDriveErrors, ChartsUserFollowingRequest, ChartsUserFollowingResponse, + ChartsUserFollowingErrors, ChartsUserNotesRequest, ChartsUserNotesResponse, + ChartsUserNotesErrors, ChartsUserPvRequest, ChartsUserPvResponse, + ChartsUserPvErrors, ChartsUserReactionsRequest, ChartsUserReactionsResponse, + ChartsUserReactionsErrors, ChartsUsersRequest, ChartsUsersResponse, + ChartsUsersErrors, ClipsAddNoteRequest, + ClipsAddNoteErrors, ClipsRemoveNoteRequest, + ClipsRemoveNoteErrors, ClipsCreateRequest, ClipsCreateResponse, + ClipsCreateErrors, ClipsDeleteRequest, + ClipsDeleteErrors, ClipsListResponse, + ClipsListErrors, ClipsNotesRequest, ClipsNotesResponse, + ClipsNotesErrors, ClipsShowRequest, ClipsShowResponse, + ClipsShowErrors, ClipsUpdateRequest, ClipsUpdateResponse, + ClipsUpdateErrors, ClipsFavoriteRequest, + ClipsFavoriteErrors, ClipsUnfavoriteRequest, + ClipsUnfavoriteErrors, ClipsMyFavoritesResponse, + ClipsMyFavoritesErrors, DriveResponse, + DriveErrors, DriveFilesRequest, DriveFilesResponse, + DriveFilesErrors, DriveFilesAttachedNotesRequest, DriveFilesAttachedNotesResponse, + DriveFilesAttachedNotesErrors, DriveFilesCheckExistenceRequest, DriveFilesCheckExistenceResponse, + DriveFilesCheckExistenceErrors, DriveFilesCreateRequest, DriveFilesCreateResponse, + DriveFilesCreateErrors, DriveFilesDeleteRequest, + DriveFilesDeleteErrors, DriveFilesFindByHashRequest, DriveFilesFindByHashResponse, + DriveFilesFindByHashErrors, DriveFilesFindRequest, DriveFilesFindResponse, + DriveFilesFindErrors, DriveFilesShowRequest, DriveFilesShowResponse, + DriveFilesShowErrors, DriveFilesUpdateRequest, DriveFilesUpdateResponse, + DriveFilesUpdateErrors, DriveFilesUploadFromUrlRequest, + DriveFilesUploadFromUrlErrors, DriveFoldersRequest, DriveFoldersResponse, + DriveFoldersErrors, DriveFoldersCreateRequest, DriveFoldersCreateResponse, + DriveFoldersCreateErrors, DriveFoldersDeleteRequest, + DriveFoldersDeleteErrors, DriveFoldersFindRequest, DriveFoldersFindResponse, + DriveFoldersFindErrors, DriveFoldersShowRequest, DriveFoldersShowResponse, + DriveFoldersShowErrors, DriveFoldersUpdateRequest, DriveFoldersUpdateResponse, + DriveFoldersUpdateErrors, DriveStreamRequest, DriveStreamResponse, + DriveStreamErrors, EmailAddressAvailableRequest, EmailAddressAvailableResponse, + EmailAddressAvailableErrors, EndpointRequest, EndpointResponse, + EndpointErrors, EndpointsResponse, + EndpointsErrors, + ExportCustomEmojisErrors, FederationFollowersRequest, FederationFollowersResponse, + FederationFollowersErrors, FederationFollowingRequest, FederationFollowingResponse, + FederationFollowingErrors, FederationInstancesRequest, FederationInstancesResponse, + FederationInstancesErrors, FederationShowInstanceRequest, FederationShowInstanceResponse, + FederationShowInstanceErrors, FederationUpdateRemoteUserRequest, + FederationUpdateRemoteUserErrors, FederationUsersRequest, FederationUsersResponse, + FederationUsersErrors, FederationStatsRequest, FederationStatsResponse, + FederationStatsErrors, FollowingCreateRequest, FollowingCreateResponse, + FollowingCreateErrors, FollowingDeleteRequest, FollowingDeleteResponse, + FollowingDeleteErrors, FollowingUpdateRequest, FollowingUpdateResponse, + FollowingUpdateErrors, FollowingUpdateAllRequest, + FollowingUpdateAllErrors, FollowingInvalidateRequest, FollowingInvalidateResponse, + FollowingInvalidateErrors, FollowingRequestsAcceptRequest, + FollowingRequestsAcceptErrors, FollowingRequestsCancelRequest, FollowingRequestsCancelResponse, + FollowingRequestsCancelErrors, FollowingRequestsListRequest, FollowingRequestsListResponse, + FollowingRequestsListErrors, FollowingRequestsRejectRequest, + FollowingRequestsRejectErrors, GalleryFeaturedRequest, GalleryFeaturedResponse, + GalleryFeaturedErrors, GalleryPopularResponse, + GalleryPopularErrors, GalleryPostsRequest, GalleryPostsResponse, + GalleryPostsErrors, GalleryPostsCreateRequest, GalleryPostsCreateResponse, + GalleryPostsCreateErrors, GalleryPostsDeleteRequest, + GalleryPostsDeleteErrors, GalleryPostsLikeRequest, + GalleryPostsLikeErrors, GalleryPostsShowRequest, GalleryPostsShowResponse, + GalleryPostsShowErrors, GalleryPostsUnlikeRequest, + GalleryPostsUnlikeErrors, GalleryPostsUpdateRequest, GalleryPostsUpdateResponse, + GalleryPostsUpdateErrors, GetOnlineUsersCountResponse, + GetOnlineUsersCountErrors, GetAvatarDecorationsResponse, + GetAvatarDecorationsErrors, HashtagsListRequest, HashtagsListResponse, + HashtagsListErrors, HashtagsSearchRequest, HashtagsSearchResponse, + HashtagsSearchErrors, HashtagsShowRequest, HashtagsShowResponse, + HashtagsShowErrors, HashtagsTrendResponse, + HashtagsTrendErrors, HashtagsUsersRequest, HashtagsUsersResponse, + HashtagsUsersErrors, IResponse, + IErrors, I2faDoneRequest, I2faDoneResponse, + I2faDoneErrors, I2faKeyDoneRequest, I2faKeyDoneResponse, + I2faKeyDoneErrors, I2faPasswordLessRequest, + I2faPasswordLessErrors, I2faRegisterKeyRequest, I2faRegisterKeyResponse, + I2faRegisterKeyErrors, I2faRegisterRequest, I2faRegisterResponse, + I2faRegisterErrors, I2faUpdateKeyRequest, + I2faUpdateKeyErrors, I2faRemoveKeyRequest, + I2faRemoveKeyErrors, I2faUnregisterRequest, + I2faUnregisterErrors, IAppsRequest, IAppsResponse, + IAppsErrors, IAuthorizedAppsRequest, IAuthorizedAppsResponse, + IAuthorizedAppsErrors, IClaimAchievementRequest, + IClaimAchievementErrors, IChangePasswordRequest, + IChangePasswordErrors, IDeleteAccountRequest, + IDeleteAccountErrors, + IExportBlockingErrors, IExportFollowingRequest, + IExportFollowingErrors, + IExportMuteErrors, + IExportNotesErrors, + IExportClipsErrors, + IExportFavoritesErrors, + IExportUserListsErrors, + IExportAntennasErrors, IFavoritesRequest, IFavoritesResponse, + IFavoritesErrors, IGalleryLikesRequest, IGalleryLikesResponse, + IGalleryLikesErrors, IGalleryPostsRequest, IGalleryPostsResponse, + IGalleryPostsErrors, IImportBlockingRequest, + IImportBlockingErrors, IImportFollowingRequest, + IImportFollowingErrors, IImportMutingRequest, + IImportMutingErrors, IImportUserListsRequest, + IImportUserListsErrors, IImportAntennasRequest, + IImportAntennasErrors, INotificationsRequest, INotificationsResponse, + INotificationsErrors, INotificationsGroupedRequest, INotificationsGroupedResponse, + INotificationsGroupedErrors, IPageLikesRequest, IPageLikesResponse, + IPageLikesErrors, IPagesRequest, IPagesResponse, + IPagesErrors, IPinRequest, IPinResponse, + IPinErrors, + IReadAllUnreadNotesErrors, IReadAnnouncementRequest, + IReadAnnouncementErrors, IRegenerateTokenRequest, + IRegenerateTokenErrors, IRegistryGetAllRequest, IRegistryGetAllResponse, + IRegistryGetAllErrors, IRegistryGetDetailRequest, IRegistryGetDetailResponse, + IRegistryGetDetailErrors, IRegistryGetRequest, IRegistryGetResponse, + IRegistryGetErrors, IRegistryKeysWithTypeRequest, IRegistryKeysWithTypeResponse, + IRegistryKeysWithTypeErrors, IRegistryKeysRequest, IRegistryKeysResponse, + IRegistryKeysErrors, IRegistryRemoveRequest, + IRegistryRemoveErrors, IRegistryScopesWithDomainResponse, + IRegistryScopesWithDomainErrors, IRegistrySetRequest, + IRegistrySetErrors, IRevokeTokenRequest, + IRevokeTokenErrors, ISigninHistoryRequest, ISigninHistoryResponse, + ISigninHistoryErrors, IUnpinRequest, IUnpinResponse, + IUnpinErrors, IUpdateEmailRequest, IUpdateEmailResponse, + IUpdateEmailErrors, IUpdateRequest, IUpdateResponse, + IUpdateErrors, IMoveRequest, IMoveResponse, + IMoveErrors, IWebhooksCreateRequest, IWebhooksCreateResponse, + IWebhooksCreateErrors, IWebhooksListResponse, + IWebhooksListErrors, IWebhooksShowRequest, IWebhooksShowResponse, + IWebhooksShowErrors, IWebhooksUpdateRequest, + IWebhooksUpdateErrors, IWebhooksDeleteRequest, + IWebhooksDeleteErrors, IWebhooksTestRequest, + IWebhooksTestErrors, InviteCreateResponse, + InviteCreateErrors, InviteDeleteRequest, + InviteDeleteErrors, InviteListRequest, InviteListResponse, + InviteListErrors, InviteLimitResponse, + InviteLimitErrors, MetaRequest, MetaResponse, + MetaErrors, EmojisResponse, + EmojisErrors, EmojiRequest, EmojiResponse, + EmojiErrors, MiauthGenTokenRequest, MiauthGenTokenResponse, + MiauthGenTokenErrors, MuteCreateRequest, + MuteCreateErrors, MuteDeleteRequest, + MuteDeleteErrors, MuteListRequest, MuteListResponse, + MuteListErrors, RenoteMuteCreateRequest, + RenoteMuteCreateErrors, RenoteMuteDeleteRequest, + RenoteMuteDeleteErrors, RenoteMuteListRequest, RenoteMuteListResponse, + RenoteMuteListErrors, MyAppsRequest, MyAppsResponse, + MyAppsErrors, NotesRequest, NotesResponse, + NotesErrors, NotesChildrenRequest, NotesChildrenResponse, + NotesChildrenErrors, NotesClipsRequest, NotesClipsResponse, + NotesClipsErrors, NotesConversationRequest, NotesConversationResponse, + NotesConversationErrors, NotesCreateRequest, NotesCreateResponse, + NotesCreateErrors, NotesDeleteRequest, + NotesDeleteErrors, NotesFavoritesCreateRequest, + NotesFavoritesCreateErrors, NotesFavoritesDeleteRequest, + NotesFavoritesDeleteErrors, NotesFeaturedRequest, NotesFeaturedResponse, + NotesFeaturedErrors, NotesGlobalTimelineRequest, NotesGlobalTimelineResponse, + NotesGlobalTimelineErrors, NotesHybridTimelineRequest, NotesHybridTimelineResponse, + NotesHybridTimelineErrors, NotesLocalTimelineRequest, NotesLocalTimelineResponse, + NotesLocalTimelineErrors, NotesMentionsRequest, NotesMentionsResponse, + NotesMentionsErrors, NotesPollsRecommendationRequest, NotesPollsRecommendationResponse, + NotesPollsRecommendationErrors, NotesPollsVoteRequest, + NotesPollsVoteErrors, NotesReactionsRequest, NotesReactionsResponse, + NotesReactionsErrors, NotesReactionsCreateRequest, + NotesReactionsCreateErrors, NotesReactionsDeleteRequest, + NotesReactionsDeleteErrors, NotesRenotesRequest, NotesRenotesResponse, + NotesRenotesErrors, NotesRepliesRequest, NotesRepliesResponse, + NotesRepliesErrors, NotesSearchByTagRequest, NotesSearchByTagResponse, + NotesSearchByTagErrors, NotesSearchRequest, NotesSearchResponse, + NotesSearchErrors, NotesShowRequest, NotesShowResponse, + NotesShowErrors, NotesStateRequest, NotesStateResponse, + NotesStateErrors, NotesThreadMutingCreateRequest, + NotesThreadMutingCreateErrors, NotesThreadMutingDeleteRequest, + NotesThreadMutingDeleteErrors, NotesTimelineRequest, NotesTimelineResponse, + NotesTimelineErrors, NotesTranslateRequest, NotesTranslateResponse, + NotesTranslateErrors, NotesUnrenoteRequest, + NotesUnrenoteErrors, NotesUserListTimelineRequest, NotesUserListTimelineResponse, + NotesUserListTimelineErrors, NotificationsCreateRequest, + NotificationsCreateErrors, + NotificationsFlushErrors, + NotificationsMarkAllAsReadErrors, + NotificationsTestNotificationErrors, PagePushRequest, + PagePushErrors, PagesCreateRequest, PagesCreateResponse, + PagesCreateErrors, PagesDeleteRequest, + PagesDeleteErrors, PagesFeaturedResponse, + PagesFeaturedErrors, PagesLikeRequest, + PagesLikeErrors, PagesShowRequest, PagesShowResponse, + PagesShowErrors, PagesUnlikeRequest, + PagesUnlikeErrors, PagesUpdateRequest, + PagesUpdateErrors, FlashCreateRequest, FlashCreateResponse, + FlashCreateErrors, FlashDeleteRequest, + FlashDeleteErrors, FlashFeaturedRequest, FlashFeaturedResponse, + FlashFeaturedErrors, FlashLikeRequest, + FlashLikeErrors, FlashShowRequest, FlashShowResponse, + FlashShowErrors, FlashUnlikeRequest, + FlashUnlikeErrors, FlashUpdateRequest, + FlashUpdateErrors, FlashMyRequest, FlashMyResponse, + FlashMyErrors, FlashMyLikesRequest, FlashMyLikesResponse, + FlashMyLikesErrors, PingResponse, + PingErrors, PinnedUsersResponse, + PinnedUsersErrors, PromoReadRequest, + PromoReadErrors, RolesListResponse, + RolesListErrors, RolesShowRequest, RolesShowResponse, + RolesShowErrors, RolesUsersRequest, RolesUsersResponse, + RolesUsersErrors, RolesNotesRequest, RolesNotesResponse, + RolesNotesErrors, RequestResetPasswordRequest, + RequestResetPasswordErrors, + ResetDbErrors, ResetPasswordRequest, + ResetPasswordErrors, ServerInfoResponse, + ServerInfoErrors, StatsResponse, + StatsErrors, SwShowRegistrationRequest, SwShowRegistrationResponse, + SwShowRegistrationErrors, SwUpdateRegistrationRequest, SwUpdateRegistrationResponse, + SwUpdateRegistrationErrors, SwRegisterRequest, SwRegisterResponse, + SwRegisterErrors, SwUnregisterRequest, + SwUnregisterErrors, TestRequest, TestResponse, + TestErrors, UsernameAvailableRequest, UsernameAvailableResponse, + UsernameAvailableErrors, UsersRequest, UsersResponse, + UsersErrors, UsersClipsRequest, UsersClipsResponse, + UsersClipsErrors, UsersFollowersRequest, UsersFollowersResponse, + UsersFollowersErrors, UsersFollowingRequest, UsersFollowingResponse, + UsersFollowingErrors, UsersGalleryPostsRequest, UsersGalleryPostsResponse, + UsersGalleryPostsErrors, UsersGetFrequentlyRepliedUsersRequest, UsersGetFrequentlyRepliedUsersResponse, + UsersGetFrequentlyRepliedUsersErrors, UsersFeaturedNotesRequest, UsersFeaturedNotesResponse, + UsersFeaturedNotesErrors, UsersListsCreateRequest, UsersListsCreateResponse, + UsersListsCreateErrors, UsersListsDeleteRequest, + UsersListsDeleteErrors, UsersListsListRequest, UsersListsListResponse, + UsersListsListErrors, UsersListsPullRequest, + UsersListsPullErrors, UsersListsPushRequest, + UsersListsPushErrors, UsersListsShowRequest, UsersListsShowResponse, + UsersListsShowErrors, UsersListsFavoriteRequest, + UsersListsFavoriteErrors, UsersListsUnfavoriteRequest, + UsersListsUnfavoriteErrors, UsersListsUpdateRequest, UsersListsUpdateResponse, + UsersListsUpdateErrors, UsersListsCreateFromPublicRequest, UsersListsCreateFromPublicResponse, + UsersListsCreateFromPublicErrors, UsersListsUpdateMembershipRequest, + UsersListsUpdateMembershipErrors, UsersListsGetMembershipsRequest, UsersListsGetMembershipsResponse, + UsersListsGetMembershipsErrors, UsersNotesRequest, UsersNotesResponse, + UsersNotesErrors, UsersPagesRequest, UsersPagesResponse, + UsersPagesErrors, UsersFlashsRequest, UsersFlashsResponse, + UsersFlashsErrors, UsersReactionsRequest, UsersReactionsResponse, + UsersReactionsErrors, UsersRecommendationRequest, UsersRecommendationResponse, + UsersRecommendationErrors, UsersRelationRequest, UsersRelationResponse, + UsersRelationErrors, UsersReportAbuseRequest, + UsersReportAbuseErrors, UsersSearchByUsernameAndHostRequest, UsersSearchByUsernameAndHostResponse, + UsersSearchByUsernameAndHostErrors, UsersSearchRequest, UsersSearchResponse, + UsersSearchErrors, UsersShowRequest, UsersShowResponse, + UsersShowErrors, UsersAchievementsRequest, UsersAchievementsResponse, + UsersAchievementsErrors, UsersUpdateMemoRequest, + UsersUpdateMemoErrors, FetchRssRequest, FetchRssResponse, + FetchRssErrors, FetchExternalResourcesRequest, FetchExternalResourcesResponse, + FetchExternalResourcesErrors, RetentionResponse, + RetentionErrors, BubbleGameRegisterRequest, + BubbleGameRegisterErrors, BubbleGameRankingRequest, BubbleGameRankingResponse, + BubbleGameRankingErrors, ReversiCancelMatchRequest, + ReversiCancelMatchErrors, ReversiGamesRequest, ReversiGamesResponse, + ReversiGamesErrors, ReversiMatchRequest, ReversiMatchResponse, + ReversiMatchErrors, ReversiInvitationsResponse, + ReversiInvitationsErrors, ReversiShowGameRequest, ReversiShowGameResponse, + ReversiShowGameErrors, ReversiSurrenderRequest, + ReversiSurrenderErrors, ReversiVerifyRequest, ReversiVerifyResponse, + ReversiVerifyErrors, } from './entities.js'; export type Endpoints = { - 'admin/meta': { req: EmptyRequest; res: AdminMetaResponse }; - 'admin/abuse-user-reports': { req: AdminAbuseUserReportsRequest; res: AdminAbuseUserReportsResponse }; - 'admin/abuse-report/notification-recipient/list': { req: AdminAbuseReportNotificationRecipientListRequest; res: AdminAbuseReportNotificationRecipientListResponse }; - 'admin/abuse-report/notification-recipient/show': { req: AdminAbuseReportNotificationRecipientShowRequest; res: AdminAbuseReportNotificationRecipientShowResponse }; - 'admin/abuse-report/notification-recipient/create': { req: AdminAbuseReportNotificationRecipientCreateRequest; res: AdminAbuseReportNotificationRecipientCreateResponse }; - 'admin/abuse-report/notification-recipient/update': { req: AdminAbuseReportNotificationRecipientUpdateRequest; res: AdminAbuseReportNotificationRecipientUpdateResponse }; - 'admin/abuse-report/notification-recipient/delete': { req: AdminAbuseReportNotificationRecipientDeleteRequest; res: EmptyResponse }; - 'admin/accounts/create': { req: AdminAccountsCreateRequest; res: AdminAccountsCreateResponse }; - 'admin/accounts/delete': { req: AdminAccountsDeleteRequest; res: EmptyResponse }; - 'admin/accounts/find-by-email': { req: AdminAccountsFindByEmailRequest; res: AdminAccountsFindByEmailResponse }; - 'admin/ad/create': { req: AdminAdCreateRequest; res: AdminAdCreateResponse }; - 'admin/ad/delete': { req: AdminAdDeleteRequest; res: EmptyResponse }; - 'admin/ad/list': { req: AdminAdListRequest; res: AdminAdListResponse }; - 'admin/ad/update': { req: AdminAdUpdateRequest; res: EmptyResponse }; - 'admin/announcements/create': { req: AdminAnnouncementsCreateRequest; res: AdminAnnouncementsCreateResponse }; - 'admin/announcements/delete': { req: AdminAnnouncementsDeleteRequest; res: EmptyResponse }; - 'admin/announcements/list': { req: AdminAnnouncementsListRequest; res: AdminAnnouncementsListResponse }; - 'admin/announcements/update': { req: AdminAnnouncementsUpdateRequest; res: EmptyResponse }; - 'admin/avatar-decorations/create': { req: AdminAvatarDecorationsCreateRequest; res: EmptyResponse }; - 'admin/avatar-decorations/delete': { req: AdminAvatarDecorationsDeleteRequest; res: EmptyResponse }; - 'admin/avatar-decorations/list': { req: AdminAvatarDecorationsListRequest; res: AdminAvatarDecorationsListResponse }; - 'admin/avatar-decorations/update': { req: AdminAvatarDecorationsUpdateRequest; res: EmptyResponse }; - 'admin/delete-all-files-of-a-user': { req: AdminDeleteAllFilesOfAUserRequest; res: EmptyResponse }; - 'admin/unset-user-avatar': { req: AdminUnsetUserAvatarRequest; res: EmptyResponse }; - 'admin/unset-user-banner': { req: AdminUnsetUserBannerRequest; res: EmptyResponse }; - 'admin/drive/clean-remote-files': { req: EmptyRequest; res: EmptyResponse }; - 'admin/drive/cleanup': { req: EmptyRequest; res: EmptyResponse }; - 'admin/drive/files': { req: AdminDriveFilesRequest; res: AdminDriveFilesResponse }; - 'admin/drive/show-file': { req: AdminDriveShowFileRequest; res: AdminDriveShowFileResponse }; - 'admin/emoji/add-aliases-bulk': { req: AdminEmojiAddAliasesBulkRequest; res: EmptyResponse }; - 'admin/emoji/add': { req: AdminEmojiAddRequest; res: AdminEmojiAddResponse }; - 'admin/emoji/copy': { req: AdminEmojiCopyRequest; res: AdminEmojiCopyResponse }; - 'admin/emoji/delete-bulk': { req: AdminEmojiDeleteBulkRequest; res: EmptyResponse }; - 'admin/emoji/delete': { req: AdminEmojiDeleteRequest; res: EmptyResponse }; - 'admin/emoji/import-zip': { req: AdminEmojiImportZipRequest; res: EmptyResponse }; - 'admin/emoji/list-remote': { req: AdminEmojiListRemoteRequest; res: AdminEmojiListRemoteResponse }; - 'admin/emoji/list': { req: AdminEmojiListRequest; res: AdminEmojiListResponse }; - 'admin/emoji/remove-aliases-bulk': { req: AdminEmojiRemoveAliasesBulkRequest; res: EmptyResponse }; - 'admin/emoji/set-aliases-bulk': { req: AdminEmojiSetAliasesBulkRequest; res: EmptyResponse }; - 'admin/emoji/set-category-bulk': { req: AdminEmojiSetCategoryBulkRequest; res: EmptyResponse }; - 'admin/emoji/set-license-bulk': { req: AdminEmojiSetLicenseBulkRequest; res: EmptyResponse }; - 'admin/emoji/update': { req: AdminEmojiUpdateRequest; res: EmptyResponse }; - 'admin/federation/delete-all-files': { req: AdminFederationDeleteAllFilesRequest; res: EmptyResponse }; - 'admin/federation/refresh-remote-instance-metadata': { req: AdminFederationRefreshRemoteInstanceMetadataRequest; res: EmptyResponse }; - 'admin/federation/remove-all-following': { req: AdminFederationRemoveAllFollowingRequest; res: EmptyResponse }; - 'admin/federation/update-instance': { req: AdminFederationUpdateInstanceRequest; res: EmptyResponse }; - 'admin/get-index-stats': { req: EmptyRequest; res: AdminGetIndexStatsResponse }; - 'admin/get-table-stats': { req: EmptyRequest; res: AdminGetTableStatsResponse }; - 'admin/get-user-ips': { req: AdminGetUserIpsRequest; res: AdminGetUserIpsResponse }; - 'admin/invite/create': { req: AdminInviteCreateRequest; res: AdminInviteCreateResponse }; - 'admin/invite/list': { req: AdminInviteListRequest; res: AdminInviteListResponse }; - 'admin/promo/create': { req: AdminPromoCreateRequest; res: EmptyResponse }; - 'admin/queue/clear': { req: EmptyRequest; res: EmptyResponse }; - 'admin/queue/deliver-delayed': { req: EmptyRequest; res: AdminQueueDeliverDelayedResponse }; - 'admin/queue/inbox-delayed': { req: EmptyRequest; res: AdminQueueInboxDelayedResponse }; - 'admin/queue/promote': { req: AdminQueuePromoteRequest; res: EmptyResponse }; - 'admin/queue/stats': { req: EmptyRequest; res: AdminQueueStatsResponse }; - 'admin/relays/add': { req: AdminRelaysAddRequest; res: AdminRelaysAddResponse }; - 'admin/relays/list': { req: EmptyRequest; res: AdminRelaysListResponse }; - 'admin/relays/remove': { req: AdminRelaysRemoveRequest; res: EmptyResponse }; - 'admin/reset-password': { req: AdminResetPasswordRequest; res: AdminResetPasswordResponse }; - 'admin/resolve-abuse-user-report': { req: AdminResolveAbuseUserReportRequest; res: EmptyResponse }; - 'admin/forward-abuse-user-report': { req: AdminForwardAbuseUserReportRequest; res: EmptyResponse }; - 'admin/update-abuse-user-report': { req: AdminUpdateAbuseUserReportRequest; res: EmptyResponse }; - 'admin/send-email': { req: AdminSendEmailRequest; res: EmptyResponse }; - 'admin/server-info': { req: EmptyRequest; res: AdminServerInfoResponse }; - 'admin/show-moderation-logs': { req: AdminShowModerationLogsRequest; res: AdminShowModerationLogsResponse }; - 'admin/show-user': { req: AdminShowUserRequest; res: AdminShowUserResponse }; - 'admin/show-users': { req: AdminShowUsersRequest; res: AdminShowUsersResponse }; - 'admin/suspend-user': { req: AdminSuspendUserRequest; res: EmptyResponse }; - 'admin/unsuspend-user': { req: AdminUnsuspendUserRequest; res: EmptyResponse }; - 'admin/update-meta': { req: AdminUpdateMetaRequest; res: EmptyResponse }; - 'admin/delete-account': { req: AdminDeleteAccountRequest; res: EmptyResponse }; - 'admin/update-user-note': { req: AdminUpdateUserNoteRequest; res: EmptyResponse }; - 'admin/roles/create': { req: AdminRolesCreateRequest; res: AdminRolesCreateResponse }; - 'admin/roles/delete': { req: AdminRolesDeleteRequest; res: EmptyResponse }; - 'admin/roles/list': { req: EmptyRequest; res: AdminRolesListResponse }; - 'admin/roles/show': { req: AdminRolesShowRequest; res: AdminRolesShowResponse }; - 'admin/roles/update': { req: AdminRolesUpdateRequest; res: EmptyResponse }; - 'admin/roles/assign': { req: AdminRolesAssignRequest; res: EmptyResponse }; - 'admin/roles/unassign': { req: AdminRolesUnassignRequest; res: EmptyResponse }; - 'admin/roles/update-default-policies': { req: AdminRolesUpdateDefaultPoliciesRequest; res: EmptyResponse }; - 'admin/roles/users': { req: AdminRolesUsersRequest; res: AdminRolesUsersResponse }; - 'admin/system-webhook/create': { req: AdminSystemWebhookCreateRequest; res: AdminSystemWebhookCreateResponse }; - 'admin/system-webhook/delete': { req: AdminSystemWebhookDeleteRequest; res: EmptyResponse }; - 'admin/system-webhook/list': { req: AdminSystemWebhookListRequest; res: AdminSystemWebhookListResponse }; - 'admin/system-webhook/show': { req: AdminSystemWebhookShowRequest; res: AdminSystemWebhookShowResponse }; - 'admin/system-webhook/update': { req: AdminSystemWebhookUpdateRequest; res: AdminSystemWebhookUpdateResponse }; - 'admin/system-webhook/test': { req: AdminSystemWebhookTestRequest; res: EmptyResponse }; - 'announcements': { req: AnnouncementsRequest; res: AnnouncementsResponse }; - 'announcements/show': { req: AnnouncementsShowRequest; res: AnnouncementsShowResponse }; - 'antennas/create': { req: AntennasCreateRequest; res: AntennasCreateResponse }; - 'antennas/delete': { req: AntennasDeleteRequest; res: EmptyResponse }; - 'antennas/list': { req: EmptyRequest; res: AntennasListResponse }; - 'antennas/notes': { req: AntennasNotesRequest; res: AntennasNotesResponse }; - 'antennas/show': { req: AntennasShowRequest; res: AntennasShowResponse }; - 'antennas/update': { req: AntennasUpdateRequest; res: AntennasUpdateResponse }; - 'ap/get': { req: ApGetRequest; res: ApGetResponse }; - 'ap/show': { req: ApShowRequest; res: ApShowResponse }; - 'app/create': { req: AppCreateRequest; res: AppCreateResponse }; - 'app/show': { req: AppShowRequest; res: AppShowResponse }; - 'auth/accept': { req: AuthAcceptRequest; res: EmptyResponse }; - 'auth/session/generate': { req: AuthSessionGenerateRequest; res: AuthSessionGenerateResponse }; - 'auth/session/show': { req: AuthSessionShowRequest; res: AuthSessionShowResponse }; - 'auth/session/userkey': { req: AuthSessionUserkeyRequest; res: AuthSessionUserkeyResponse }; - 'blocking/create': { req: BlockingCreateRequest; res: BlockingCreateResponse }; - 'blocking/delete': { req: BlockingDeleteRequest; res: BlockingDeleteResponse }; - 'blocking/list': { req: BlockingListRequest; res: BlockingListResponse }; - 'channels/create': { req: ChannelsCreateRequest; res: ChannelsCreateResponse }; - 'channels/featured': { req: EmptyRequest; res: ChannelsFeaturedResponse }; - 'channels/follow': { req: ChannelsFollowRequest; res: EmptyResponse }; - 'channels/followed': { req: ChannelsFollowedRequest; res: ChannelsFollowedResponse }; - 'channels/owned': { req: ChannelsOwnedRequest; res: ChannelsOwnedResponse }; - 'channels/show': { req: ChannelsShowRequest; res: ChannelsShowResponse }; - 'channels/timeline': { req: ChannelsTimelineRequest; res: ChannelsTimelineResponse }; - 'channels/unfollow': { req: ChannelsUnfollowRequest; res: EmptyResponse }; - 'channels/update': { req: ChannelsUpdateRequest; res: ChannelsUpdateResponse }; - 'channels/favorite': { req: ChannelsFavoriteRequest; res: EmptyResponse }; - 'channels/unfavorite': { req: ChannelsUnfavoriteRequest; res: EmptyResponse }; - 'channels/my-favorites': { req: EmptyRequest; res: ChannelsMyFavoritesResponse }; - 'channels/search': { req: ChannelsSearchRequest; res: ChannelsSearchResponse }; - 'charts/active-users': { req: ChartsActiveUsersRequest; res: ChartsActiveUsersResponse }; - 'charts/ap-request': { req: ChartsApRequestRequest; res: ChartsApRequestResponse }; - 'charts/drive': { req: ChartsDriveRequest; res: ChartsDriveResponse }; - 'charts/federation': { req: ChartsFederationRequest; res: ChartsFederationResponse }; - 'charts/instance': { req: ChartsInstanceRequest; res: ChartsInstanceResponse }; - 'charts/notes': { req: ChartsNotesRequest; res: ChartsNotesResponse }; - 'charts/user/drive': { req: ChartsUserDriveRequest; res: ChartsUserDriveResponse }; - 'charts/user/following': { req: ChartsUserFollowingRequest; res: ChartsUserFollowingResponse }; - 'charts/user/notes': { req: ChartsUserNotesRequest; res: ChartsUserNotesResponse }; - 'charts/user/pv': { req: ChartsUserPvRequest; res: ChartsUserPvResponse }; - 'charts/user/reactions': { req: ChartsUserReactionsRequest; res: ChartsUserReactionsResponse }; - 'charts/users': { req: ChartsUsersRequest; res: ChartsUsersResponse }; - 'clips/add-note': { req: ClipsAddNoteRequest; res: EmptyResponse }; - 'clips/remove-note': { req: ClipsRemoveNoteRequest; res: EmptyResponse }; - 'clips/create': { req: ClipsCreateRequest; res: ClipsCreateResponse }; - 'clips/delete': { req: ClipsDeleteRequest; res: EmptyResponse }; - 'clips/list': { req: EmptyRequest; res: ClipsListResponse }; - 'clips/notes': { req: ClipsNotesRequest; res: ClipsNotesResponse }; - 'clips/show': { req: ClipsShowRequest; res: ClipsShowResponse }; - 'clips/update': { req: ClipsUpdateRequest; res: ClipsUpdateResponse }; - 'clips/favorite': { req: ClipsFavoriteRequest; res: EmptyResponse }; - 'clips/unfavorite': { req: ClipsUnfavoriteRequest; res: EmptyResponse }; - 'clips/my-favorites': { req: EmptyRequest; res: ClipsMyFavoritesResponse }; - 'drive': { req: EmptyRequest; res: DriveResponse }; - 'drive/files': { req: DriveFilesRequest; res: DriveFilesResponse }; - 'drive/files/attached-notes': { req: DriveFilesAttachedNotesRequest; res: DriveFilesAttachedNotesResponse }; - 'drive/files/check-existence': { req: DriveFilesCheckExistenceRequest; res: DriveFilesCheckExistenceResponse }; - 'drive/files/create': { req: DriveFilesCreateRequest; res: DriveFilesCreateResponse }; - 'drive/files/delete': { req: DriveFilesDeleteRequest; res: EmptyResponse }; - 'drive/files/find-by-hash': { req: DriveFilesFindByHashRequest; res: DriveFilesFindByHashResponse }; - 'drive/files/find': { req: DriveFilesFindRequest; res: DriveFilesFindResponse }; - 'drive/files/show': { req: DriveFilesShowRequest; res: DriveFilesShowResponse }; - 'drive/files/update': { req: DriveFilesUpdateRequest; res: DriveFilesUpdateResponse }; - 'drive/files/upload-from-url': { req: DriveFilesUploadFromUrlRequest; res: EmptyResponse }; - 'drive/folders': { req: DriveFoldersRequest; res: DriveFoldersResponse }; - 'drive/folders/create': { req: DriveFoldersCreateRequest; res: DriveFoldersCreateResponse }; - 'drive/folders/delete': { req: DriveFoldersDeleteRequest; res: EmptyResponse }; - 'drive/folders/find': { req: DriveFoldersFindRequest; res: DriveFoldersFindResponse }; - 'drive/folders/show': { req: DriveFoldersShowRequest; res: DriveFoldersShowResponse }; - 'drive/folders/update': { req: DriveFoldersUpdateRequest; res: DriveFoldersUpdateResponse }; - 'drive/stream': { req: DriveStreamRequest; res: DriveStreamResponse }; - 'email-address/available': { req: EmailAddressAvailableRequest; res: EmailAddressAvailableResponse }; - 'endpoint': { req: EndpointRequest; res: EndpointResponse }; - 'endpoints': { req: EmptyRequest; res: EndpointsResponse }; - 'export-custom-emojis': { req: EmptyRequest; res: EmptyResponse }; - 'federation/followers': { req: FederationFollowersRequest; res: FederationFollowersResponse }; - 'federation/following': { req: FederationFollowingRequest; res: FederationFollowingResponse }; - 'federation/instances': { req: FederationInstancesRequest; res: FederationInstancesResponse }; - 'federation/show-instance': { req: FederationShowInstanceRequest; res: FederationShowInstanceResponse }; - 'federation/update-remote-user': { req: FederationUpdateRemoteUserRequest; res: EmptyResponse }; - 'federation/users': { req: FederationUsersRequest; res: FederationUsersResponse }; - 'federation/stats': { req: FederationStatsRequest; res: FederationStatsResponse }; - 'following/create': { req: FollowingCreateRequest; res: FollowingCreateResponse }; - 'following/delete': { req: FollowingDeleteRequest; res: FollowingDeleteResponse }; - 'following/update': { req: FollowingUpdateRequest; res: FollowingUpdateResponse }; - 'following/update-all': { req: FollowingUpdateAllRequest; res: EmptyResponse }; - 'following/invalidate': { req: FollowingInvalidateRequest; res: FollowingInvalidateResponse }; - 'following/requests/accept': { req: FollowingRequestsAcceptRequest; res: EmptyResponse }; - 'following/requests/cancel': { req: FollowingRequestsCancelRequest; res: FollowingRequestsCancelResponse }; - 'following/requests/list': { req: FollowingRequestsListRequest; res: FollowingRequestsListResponse }; - 'following/requests/reject': { req: FollowingRequestsRejectRequest; res: EmptyResponse }; - 'gallery/featured': { req: GalleryFeaturedRequest; res: GalleryFeaturedResponse }; - 'gallery/popular': { req: EmptyRequest; res: GalleryPopularResponse }; - 'gallery/posts': { req: GalleryPostsRequest; res: GalleryPostsResponse }; - 'gallery/posts/create': { req: GalleryPostsCreateRequest; res: GalleryPostsCreateResponse }; - 'gallery/posts/delete': { req: GalleryPostsDeleteRequest; res: EmptyResponse }; - 'gallery/posts/like': { req: GalleryPostsLikeRequest; res: EmptyResponse }; - 'gallery/posts/show': { req: GalleryPostsShowRequest; res: GalleryPostsShowResponse }; - 'gallery/posts/unlike': { req: GalleryPostsUnlikeRequest; res: EmptyResponse }; - 'gallery/posts/update': { req: GalleryPostsUpdateRequest; res: GalleryPostsUpdateResponse }; - 'get-online-users-count': { req: EmptyRequest; res: GetOnlineUsersCountResponse }; - 'get-avatar-decorations': { req: EmptyRequest; res: GetAvatarDecorationsResponse }; - 'hashtags/list': { req: HashtagsListRequest; res: HashtagsListResponse }; - 'hashtags/search': { req: HashtagsSearchRequest; res: HashtagsSearchResponse }; - 'hashtags/show': { req: HashtagsShowRequest; res: HashtagsShowResponse }; - 'hashtags/trend': { req: EmptyRequest; res: HashtagsTrendResponse }; - 'hashtags/users': { req: HashtagsUsersRequest; res: HashtagsUsersResponse }; - 'i': { req: EmptyRequest; res: IResponse }; - 'i/2fa/done': { req: I2faDoneRequest; res: I2faDoneResponse }; - 'i/2fa/key-done': { req: I2faKeyDoneRequest; res: I2faKeyDoneResponse }; - 'i/2fa/password-less': { req: I2faPasswordLessRequest; res: EmptyResponse }; - 'i/2fa/register-key': { req: I2faRegisterKeyRequest; res: I2faRegisterKeyResponse }; - 'i/2fa/register': { req: I2faRegisterRequest; res: I2faRegisterResponse }; - 'i/2fa/update-key': { req: I2faUpdateKeyRequest; res: EmptyResponse }; - 'i/2fa/remove-key': { req: I2faRemoveKeyRequest; res: EmptyResponse }; - 'i/2fa/unregister': { req: I2faUnregisterRequest; res: EmptyResponse }; - 'i/apps': { req: IAppsRequest; res: IAppsResponse }; - 'i/authorized-apps': { req: IAuthorizedAppsRequest; res: IAuthorizedAppsResponse }; - 'i/claim-achievement': { req: IClaimAchievementRequest; res: EmptyResponse }; - 'i/change-password': { req: IChangePasswordRequest; res: EmptyResponse }; - 'i/delete-account': { req: IDeleteAccountRequest; res: EmptyResponse }; - 'i/export-blocking': { req: EmptyRequest; res: EmptyResponse }; - 'i/export-following': { req: IExportFollowingRequest; res: EmptyResponse }; - 'i/export-mute': { req: EmptyRequest; res: EmptyResponse }; - 'i/export-notes': { req: EmptyRequest; res: EmptyResponse }; - 'i/export-clips': { req: EmptyRequest; res: EmptyResponse }; - 'i/export-favorites': { req: EmptyRequest; res: EmptyResponse }; - 'i/export-user-lists': { req: EmptyRequest; res: EmptyResponse }; - 'i/export-antennas': { req: EmptyRequest; res: EmptyResponse }; - 'i/favorites': { req: IFavoritesRequest; res: IFavoritesResponse }; - 'i/gallery/likes': { req: IGalleryLikesRequest; res: IGalleryLikesResponse }; - 'i/gallery/posts': { req: IGalleryPostsRequest; res: IGalleryPostsResponse }; - 'i/import-blocking': { req: IImportBlockingRequest; res: EmptyResponse }; - 'i/import-following': { req: IImportFollowingRequest; res: EmptyResponse }; - 'i/import-muting': { req: IImportMutingRequest; res: EmptyResponse }; - 'i/import-user-lists': { req: IImportUserListsRequest; res: EmptyResponse }; - 'i/import-antennas': { req: IImportAntennasRequest; res: EmptyResponse }; - 'i/notifications': { req: INotificationsRequest; res: INotificationsResponse }; - 'i/notifications-grouped': { req: INotificationsGroupedRequest; res: INotificationsGroupedResponse }; - 'i/page-likes': { req: IPageLikesRequest; res: IPageLikesResponse }; - 'i/pages': { req: IPagesRequest; res: IPagesResponse }; - 'i/pin': { req: IPinRequest; res: IPinResponse }; - 'i/read-all-unread-notes': { req: EmptyRequest; res: EmptyResponse }; - 'i/read-announcement': { req: IReadAnnouncementRequest; res: EmptyResponse }; - 'i/regenerate-token': { req: IRegenerateTokenRequest; res: EmptyResponse }; - 'i/registry/get-all': { req: IRegistryGetAllRequest; res: IRegistryGetAllResponse }; - 'i/registry/get-detail': { req: IRegistryGetDetailRequest; res: IRegistryGetDetailResponse }; - 'i/registry/get': { req: IRegistryGetRequest; res: IRegistryGetResponse }; - 'i/registry/keys-with-type': { req: IRegistryKeysWithTypeRequest; res: IRegistryKeysWithTypeResponse }; - 'i/registry/keys': { req: IRegistryKeysRequest; res: IRegistryKeysResponse }; - 'i/registry/remove': { req: IRegistryRemoveRequest; res: EmptyResponse }; - 'i/registry/scopes-with-domain': { req: EmptyRequest; res: IRegistryScopesWithDomainResponse }; - 'i/registry/set': { req: IRegistrySetRequest; res: EmptyResponse }; - 'i/revoke-token': { req: IRevokeTokenRequest; res: EmptyResponse }; - 'i/signin-history': { req: ISigninHistoryRequest; res: ISigninHistoryResponse }; - 'i/unpin': { req: IUnpinRequest; res: IUnpinResponse }; - 'i/update-email': { req: IUpdateEmailRequest; res: IUpdateEmailResponse }; - 'i/update': { req: IUpdateRequest; res: IUpdateResponse }; - 'i/move': { req: IMoveRequest; res: IMoveResponse }; - 'i/webhooks/create': { req: IWebhooksCreateRequest; res: IWebhooksCreateResponse }; - 'i/webhooks/list': { req: EmptyRequest; res: IWebhooksListResponse }; - 'i/webhooks/show': { req: IWebhooksShowRequest; res: IWebhooksShowResponse }; - 'i/webhooks/update': { req: IWebhooksUpdateRequest; res: EmptyResponse }; - 'i/webhooks/delete': { req: IWebhooksDeleteRequest; res: EmptyResponse }; - 'i/webhooks/test': { req: IWebhooksTestRequest; res: EmptyResponse }; - 'invite/create': { req: EmptyRequest; res: InviteCreateResponse }; - 'invite/delete': { req: InviteDeleteRequest; res: EmptyResponse }; - 'invite/list': { req: InviteListRequest; res: InviteListResponse }; - 'invite/limit': { req: EmptyRequest; res: InviteLimitResponse }; - 'meta': { req: MetaRequest; res: MetaResponse }; - 'emojis': { req: EmptyRequest; res: EmojisResponse }; - 'emoji': { req: EmojiRequest; res: EmojiResponse }; - 'miauth/gen-token': { req: MiauthGenTokenRequest; res: MiauthGenTokenResponse }; - 'mute/create': { req: MuteCreateRequest; res: EmptyResponse }; - 'mute/delete': { req: MuteDeleteRequest; res: EmptyResponse }; - 'mute/list': { req: MuteListRequest; res: MuteListResponse }; - 'renote-mute/create': { req: RenoteMuteCreateRequest; res: EmptyResponse }; - 'renote-mute/delete': { req: RenoteMuteDeleteRequest; res: EmptyResponse }; - 'renote-mute/list': { req: RenoteMuteListRequest; res: RenoteMuteListResponse }; - 'my/apps': { req: MyAppsRequest; res: MyAppsResponse }; - 'notes': { req: NotesRequest; res: NotesResponse }; - 'notes/children': { req: NotesChildrenRequest; res: NotesChildrenResponse }; - 'notes/clips': { req: NotesClipsRequest; res: NotesClipsResponse }; - 'notes/conversation': { req: NotesConversationRequest; res: NotesConversationResponse }; - 'notes/create': { req: NotesCreateRequest; res: NotesCreateResponse }; - 'notes/delete': { req: NotesDeleteRequest; res: EmptyResponse }; - 'notes/favorites/create': { req: NotesFavoritesCreateRequest; res: EmptyResponse }; - 'notes/favorites/delete': { req: NotesFavoritesDeleteRequest; res: EmptyResponse }; - 'notes/featured': { req: NotesFeaturedRequest; res: NotesFeaturedResponse }; - 'notes/global-timeline': { req: NotesGlobalTimelineRequest; res: NotesGlobalTimelineResponse }; - 'notes/hybrid-timeline': { req: NotesHybridTimelineRequest; res: NotesHybridTimelineResponse }; - 'notes/local-timeline': { req: NotesLocalTimelineRequest; res: NotesLocalTimelineResponse }; - 'notes/mentions': { req: NotesMentionsRequest; res: NotesMentionsResponse }; - 'notes/polls/recommendation': { req: NotesPollsRecommendationRequest; res: NotesPollsRecommendationResponse }; - 'notes/polls/vote': { req: NotesPollsVoteRequest; res: EmptyResponse }; - 'notes/reactions': { req: NotesReactionsRequest; res: NotesReactionsResponse }; - 'notes/reactions/create': { req: NotesReactionsCreateRequest; res: EmptyResponse }; - 'notes/reactions/delete': { req: NotesReactionsDeleteRequest; res: EmptyResponse }; - 'notes/renotes': { req: NotesRenotesRequest; res: NotesRenotesResponse }; - 'notes/replies': { req: NotesRepliesRequest; res: NotesRepliesResponse }; - 'notes/search-by-tag': { req: NotesSearchByTagRequest; res: NotesSearchByTagResponse }; - 'notes/search': { req: NotesSearchRequest; res: NotesSearchResponse }; - 'notes/show': { req: NotesShowRequest; res: NotesShowResponse }; - 'notes/state': { req: NotesStateRequest; res: NotesStateResponse }; - 'notes/thread-muting/create': { req: NotesThreadMutingCreateRequest; res: EmptyResponse }; - 'notes/thread-muting/delete': { req: NotesThreadMutingDeleteRequest; res: EmptyResponse }; - 'notes/timeline': { req: NotesTimelineRequest; res: NotesTimelineResponse }; - 'notes/translate': { req: NotesTranslateRequest; res: NotesTranslateResponse }; - 'notes/unrenote': { req: NotesUnrenoteRequest; res: EmptyResponse }; - 'notes/user-list-timeline': { req: NotesUserListTimelineRequest; res: NotesUserListTimelineResponse }; - 'notifications/create': { req: NotificationsCreateRequest; res: EmptyResponse }; - 'notifications/flush': { req: EmptyRequest; res: EmptyResponse }; - 'notifications/mark-all-as-read': { req: EmptyRequest; res: EmptyResponse }; - 'notifications/test-notification': { req: EmptyRequest; res: EmptyResponse }; - 'page-push': { req: PagePushRequest; res: EmptyResponse }; - 'pages/create': { req: PagesCreateRequest; res: PagesCreateResponse }; - 'pages/delete': { req: PagesDeleteRequest; res: EmptyResponse }; - 'pages/featured': { req: EmptyRequest; res: PagesFeaturedResponse }; - 'pages/like': { req: PagesLikeRequest; res: EmptyResponse }; - 'pages/show': { req: PagesShowRequest; res: PagesShowResponse }; - 'pages/unlike': { req: PagesUnlikeRequest; res: EmptyResponse }; - 'pages/update': { req: PagesUpdateRequest; res: EmptyResponse }; - 'flash/create': { req: FlashCreateRequest; res: FlashCreateResponse }; - 'flash/delete': { req: FlashDeleteRequest; res: EmptyResponse }; - 'flash/featured': { req: FlashFeaturedRequest; res: FlashFeaturedResponse }; - 'flash/like': { req: FlashLikeRequest; res: EmptyResponse }; - 'flash/show': { req: FlashShowRequest; res: FlashShowResponse }; - 'flash/unlike': { req: FlashUnlikeRequest; res: EmptyResponse }; - 'flash/update': { req: FlashUpdateRequest; res: EmptyResponse }; - 'flash/my': { req: FlashMyRequest; res: FlashMyResponse }; - 'flash/my-likes': { req: FlashMyLikesRequest; res: FlashMyLikesResponse }; - 'ping': { req: EmptyRequest; res: PingResponse }; - 'pinned-users': { req: EmptyRequest; res: PinnedUsersResponse }; - 'promo/read': { req: PromoReadRequest; res: EmptyResponse }; - 'roles/list': { req: EmptyRequest; res: RolesListResponse }; - 'roles/show': { req: RolesShowRequest; res: RolesShowResponse }; - 'roles/users': { req: RolesUsersRequest; res: RolesUsersResponse }; - 'roles/notes': { req: RolesNotesRequest; res: RolesNotesResponse }; - 'request-reset-password': { req: RequestResetPasswordRequest; res: EmptyResponse }; - 'reset-db': { req: EmptyRequest; res: EmptyResponse }; - 'reset-password': { req: ResetPasswordRequest; res: EmptyResponse }; - 'server-info': { req: EmptyRequest; res: ServerInfoResponse }; - 'stats': { req: EmptyRequest; res: StatsResponse }; - 'sw/show-registration': { req: SwShowRegistrationRequest; res: SwShowRegistrationResponse }; - 'sw/update-registration': { req: SwUpdateRegistrationRequest; res: SwUpdateRegistrationResponse }; - 'sw/register': { req: SwRegisterRequest; res: SwRegisterResponse }; - 'sw/unregister': { req: SwUnregisterRequest; res: EmptyResponse }; - 'test': { req: TestRequest; res: TestResponse }; - 'username/available': { req: UsernameAvailableRequest; res: UsernameAvailableResponse }; - 'users': { req: UsersRequest; res: UsersResponse }; - 'users/clips': { req: UsersClipsRequest; res: UsersClipsResponse }; - 'users/followers': { req: UsersFollowersRequest; res: UsersFollowersResponse }; - 'users/following': { req: UsersFollowingRequest; res: UsersFollowingResponse }; - 'users/gallery/posts': { req: UsersGalleryPostsRequest; res: UsersGalleryPostsResponse }; - 'users/get-frequently-replied-users': { req: UsersGetFrequentlyRepliedUsersRequest; res: UsersGetFrequentlyRepliedUsersResponse }; - 'users/featured-notes': { req: UsersFeaturedNotesRequest; res: UsersFeaturedNotesResponse }; - 'users/lists/create': { req: UsersListsCreateRequest; res: UsersListsCreateResponse }; - 'users/lists/delete': { req: UsersListsDeleteRequest; res: EmptyResponse }; - 'users/lists/list': { req: UsersListsListRequest; res: UsersListsListResponse }; - 'users/lists/pull': { req: UsersListsPullRequest; res: EmptyResponse }; - 'users/lists/push': { req: UsersListsPushRequest; res: EmptyResponse }; - 'users/lists/show': { req: UsersListsShowRequest; res: UsersListsShowResponse }; - 'users/lists/favorite': { req: UsersListsFavoriteRequest; res: EmptyResponse }; - 'users/lists/unfavorite': { req: UsersListsUnfavoriteRequest; res: EmptyResponse }; - 'users/lists/update': { req: UsersListsUpdateRequest; res: UsersListsUpdateResponse }; - 'users/lists/create-from-public': { req: UsersListsCreateFromPublicRequest; res: UsersListsCreateFromPublicResponse }; - 'users/lists/update-membership': { req: UsersListsUpdateMembershipRequest; res: EmptyResponse }; - 'users/lists/get-memberships': { req: UsersListsGetMembershipsRequest; res: UsersListsGetMembershipsResponse }; - 'users/notes': { req: UsersNotesRequest; res: UsersNotesResponse }; - 'users/pages': { req: UsersPagesRequest; res: UsersPagesResponse }; - 'users/flashs': { req: UsersFlashsRequest; res: UsersFlashsResponse }; - 'users/reactions': { req: UsersReactionsRequest; res: UsersReactionsResponse }; - 'users/recommendation': { req: UsersRecommendationRequest; res: UsersRecommendationResponse }; - 'users/relation': { req: UsersRelationRequest; res: UsersRelationResponse }; - 'users/report-abuse': { req: UsersReportAbuseRequest; res: EmptyResponse }; - 'users/search-by-username-and-host': { req: UsersSearchByUsernameAndHostRequest; res: UsersSearchByUsernameAndHostResponse }; - 'users/search': { req: UsersSearchRequest; res: UsersSearchResponse }; - 'users/show': { req: UsersShowRequest; res: UsersShowResponse }; - 'users/achievements': { req: UsersAchievementsRequest; res: UsersAchievementsResponse }; - 'users/update-memo': { req: UsersUpdateMemoRequest; res: EmptyResponse }; - 'fetch-rss': { req: FetchRssRequest; res: FetchRssResponse }; - 'fetch-external-resources': { req: FetchExternalResourcesRequest; res: FetchExternalResourcesResponse }; - 'retention': { req: EmptyRequest; res: RetentionResponse }; - 'bubble-game/register': { req: BubbleGameRegisterRequest; res: EmptyResponse }; - 'bubble-game/ranking': { req: BubbleGameRankingRequest; res: BubbleGameRankingResponse }; - 'reversi/cancel-match': { req: ReversiCancelMatchRequest; res: EmptyResponse }; - 'reversi/games': { req: ReversiGamesRequest; res: ReversiGamesResponse }; - 'reversi/match': { req: ReversiMatchRequest; res: ReversiMatchResponse }; - 'reversi/invitations': { req: EmptyRequest; res: ReversiInvitationsResponse }; - 'reversi/show-game': { req: ReversiShowGameRequest; res: ReversiShowGameResponse }; - 'reversi/surrender': { req: ReversiSurrenderRequest; res: EmptyResponse }; - 'reversi/verify': { req: ReversiVerifyRequest; res: ReversiVerifyResponse }; + 'admin/meta': { req: EmptyRequest; res: AdminMetaResponse; errors: AdminMetaErrors }; + 'admin/abuse-user-reports': { req: AdminAbuseUserReportsRequest; res: AdminAbuseUserReportsResponse; errors: AdminAbuseUserReportsErrors }; + 'admin/abuse-report/notification-recipient/list': { req: AdminAbuseReportNotificationRecipientListRequest; res: AdminAbuseReportNotificationRecipientListResponse; errors: AdminAbuseReportNotificationRecipientListErrors }; + 'admin/abuse-report/notification-recipient/show': { req: AdminAbuseReportNotificationRecipientShowRequest; res: AdminAbuseReportNotificationRecipientShowResponse; errors: AdminAbuseReportNotificationRecipientShowErrors }; + 'admin/abuse-report/notification-recipient/create': { req: AdminAbuseReportNotificationRecipientCreateRequest; res: AdminAbuseReportNotificationRecipientCreateResponse; errors: AdminAbuseReportNotificationRecipientCreateErrors }; + 'admin/abuse-report/notification-recipient/update': { req: AdminAbuseReportNotificationRecipientUpdateRequest; res: AdminAbuseReportNotificationRecipientUpdateResponse; errors: AdminAbuseReportNotificationRecipientUpdateErrors }; + 'admin/abuse-report/notification-recipient/delete': { req: AdminAbuseReportNotificationRecipientDeleteRequest; res: EmptyResponse; errors: AdminAbuseReportNotificationRecipientDeleteErrors }; + 'admin/accounts/create': { req: AdminAccountsCreateRequest; res: AdminAccountsCreateResponse; errors: AdminAccountsCreateErrors }; + 'admin/accounts/delete': { req: AdminAccountsDeleteRequest; res: EmptyResponse; errors: AdminAccountsDeleteErrors }; + 'admin/accounts/find-by-email': { req: AdminAccountsFindByEmailRequest; res: AdminAccountsFindByEmailResponse; errors: AdminAccountsFindByEmailErrors }; + 'admin/ad/create': { req: AdminAdCreateRequest; res: AdminAdCreateResponse; errors: AdminAdCreateErrors }; + 'admin/ad/delete': { req: AdminAdDeleteRequest; res: EmptyResponse; errors: AdminAdDeleteErrors }; + 'admin/ad/list': { req: AdminAdListRequest; res: AdminAdListResponse; errors: AdminAdListErrors }; + 'admin/ad/update': { req: AdminAdUpdateRequest; res: EmptyResponse; errors: AdminAdUpdateErrors }; + 'admin/announcements/create': { req: AdminAnnouncementsCreateRequest; res: AdminAnnouncementsCreateResponse; errors: AdminAnnouncementsCreateErrors }; + 'admin/announcements/delete': { req: AdminAnnouncementsDeleteRequest; res: EmptyResponse; errors: AdminAnnouncementsDeleteErrors }; + 'admin/announcements/list': { req: AdminAnnouncementsListRequest; res: AdminAnnouncementsListResponse; errors: AdminAnnouncementsListErrors }; + 'admin/announcements/update': { req: AdminAnnouncementsUpdateRequest; res: EmptyResponse; errors: AdminAnnouncementsUpdateErrors }; + 'admin/avatar-decorations/create': { req: AdminAvatarDecorationsCreateRequest; res: EmptyResponse; errors: AdminAvatarDecorationsCreateErrors }; + 'admin/avatar-decorations/delete': { req: AdminAvatarDecorationsDeleteRequest; res: EmptyResponse; errors: AdminAvatarDecorationsDeleteErrors }; + 'admin/avatar-decorations/list': { req: AdminAvatarDecorationsListRequest; res: AdminAvatarDecorationsListResponse; errors: AdminAvatarDecorationsListErrors }; + 'admin/avatar-decorations/update': { req: AdminAvatarDecorationsUpdateRequest; res: EmptyResponse; errors: AdminAvatarDecorationsUpdateErrors }; + 'admin/delete-all-files-of-a-user': { req: AdminDeleteAllFilesOfAUserRequest; res: EmptyResponse; errors: AdminDeleteAllFilesOfAUserErrors }; + 'admin/unset-user-avatar': { req: AdminUnsetUserAvatarRequest; res: EmptyResponse; errors: AdminUnsetUserAvatarErrors }; + 'admin/unset-user-banner': { req: AdminUnsetUserBannerRequest; res: EmptyResponse; errors: AdminUnsetUserBannerErrors }; + 'admin/drive/clean-remote-files': { req: EmptyRequest; res: EmptyResponse; errors: AdminDriveCleanRemoteFilesErrors }; + 'admin/drive/cleanup': { req: EmptyRequest; res: EmptyResponse; errors: AdminDriveCleanupErrors }; + 'admin/drive/files': { req: AdminDriveFilesRequest; res: AdminDriveFilesResponse; errors: AdminDriveFilesErrors }; + 'admin/drive/show-file': { req: AdminDriveShowFileRequest; res: AdminDriveShowFileResponse; errors: AdminDriveShowFileErrors }; + 'admin/emoji/add-aliases-bulk': { req: AdminEmojiAddAliasesBulkRequest; res: EmptyResponse; errors: AdminEmojiAddAliasesBulkErrors }; + 'admin/emoji/add': { req: AdminEmojiAddRequest; res: AdminEmojiAddResponse; errors: AdminEmojiAddErrors }; + 'admin/emoji/copy': { req: AdminEmojiCopyRequest; res: AdminEmojiCopyResponse; errors: AdminEmojiCopyErrors }; + 'admin/emoji/delete-bulk': { req: AdminEmojiDeleteBulkRequest; res: EmptyResponse; errors: AdminEmojiDeleteBulkErrors }; + 'admin/emoji/delete': { req: AdminEmojiDeleteRequest; res: EmptyResponse; errors: AdminEmojiDeleteErrors }; + 'admin/emoji/import-zip': { req: AdminEmojiImportZipRequest; res: EmptyResponse; errors: AdminEmojiImportZipErrors }; + 'admin/emoji/list-remote': { req: AdminEmojiListRemoteRequest; res: AdminEmojiListRemoteResponse; errors: AdminEmojiListRemoteErrors }; + 'admin/emoji/list': { req: AdminEmojiListRequest; res: AdminEmojiListResponse; errors: AdminEmojiListErrors }; + 'admin/emoji/remove-aliases-bulk': { req: AdminEmojiRemoveAliasesBulkRequest; res: EmptyResponse; errors: AdminEmojiRemoveAliasesBulkErrors }; + 'admin/emoji/set-aliases-bulk': { req: AdminEmojiSetAliasesBulkRequest; res: EmptyResponse; errors: AdminEmojiSetAliasesBulkErrors }; + 'admin/emoji/set-category-bulk': { req: AdminEmojiSetCategoryBulkRequest; res: EmptyResponse; errors: AdminEmojiSetCategoryBulkErrors }; + 'admin/emoji/set-license-bulk': { req: AdminEmojiSetLicenseBulkRequest; res: EmptyResponse; errors: AdminEmojiSetLicenseBulkErrors }; + 'admin/emoji/update': { req: AdminEmojiUpdateRequest; res: EmptyResponse; errors: AdminEmojiUpdateErrors }; + 'admin/federation/delete-all-files': { req: AdminFederationDeleteAllFilesRequest; res: EmptyResponse; errors: AdminFederationDeleteAllFilesErrors }; + 'admin/federation/refresh-remote-instance-metadata': { req: AdminFederationRefreshRemoteInstanceMetadataRequest; res: EmptyResponse; errors: AdminFederationRefreshRemoteInstanceMetadataErrors }; + 'admin/federation/remove-all-following': { req: AdminFederationRemoveAllFollowingRequest; res: EmptyResponse; errors: AdminFederationRemoveAllFollowingErrors }; + 'admin/federation/update-instance': { req: AdminFederationUpdateInstanceRequest; res: EmptyResponse; errors: AdminFederationUpdateInstanceErrors }; + 'admin/get-index-stats': { req: EmptyRequest; res: AdminGetIndexStatsResponse; errors: AdminGetIndexStatsErrors }; + 'admin/get-table-stats': { req: EmptyRequest; res: AdminGetTableStatsResponse; errors: AdminGetTableStatsErrors }; + 'admin/get-user-ips': { req: AdminGetUserIpsRequest; res: AdminGetUserIpsResponse; errors: AdminGetUserIpsErrors }; + 'admin/invite/create': { req: AdminInviteCreateRequest; res: AdminInviteCreateResponse; errors: AdminInviteCreateErrors }; + 'admin/invite/list': { req: AdminInviteListRequest; res: AdminInviteListResponse; errors: AdminInviteListErrors }; + 'admin/promo/create': { req: AdminPromoCreateRequest; res: EmptyResponse; errors: AdminPromoCreateErrors }; + 'admin/queue/clear': { req: EmptyRequest; res: EmptyResponse; errors: AdminQueueClearErrors }; + 'admin/queue/deliver-delayed': { req: EmptyRequest; res: AdminQueueDeliverDelayedResponse; errors: AdminQueueDeliverDelayedErrors }; + 'admin/queue/inbox-delayed': { req: EmptyRequest; res: AdminQueueInboxDelayedResponse; errors: AdminQueueInboxDelayedErrors }; + 'admin/queue/promote': { req: AdminQueuePromoteRequest; res: EmptyResponse; errors: AdminQueuePromoteErrors }; + 'admin/queue/stats': { req: EmptyRequest; res: AdminQueueStatsResponse; errors: AdminQueueStatsErrors }; + 'admin/relays/add': { req: AdminRelaysAddRequest; res: AdminRelaysAddResponse; errors: AdminRelaysAddErrors }; + 'admin/relays/list': { req: EmptyRequest; res: AdminRelaysListResponse; errors: AdminRelaysListErrors }; + 'admin/relays/remove': { req: AdminRelaysRemoveRequest; res: EmptyResponse; errors: AdminRelaysRemoveErrors }; + 'admin/reset-password': { req: AdminResetPasswordRequest; res: AdminResetPasswordResponse; errors: AdminResetPasswordErrors }; + 'admin/resolve-abuse-user-report': { req: AdminResolveAbuseUserReportRequest; res: EmptyResponse; errors: AdminResolveAbuseUserReportErrors }; + 'admin/forward-abuse-user-report': { req: AdminForwardAbuseUserReportRequest; res: EmptyResponse; errors: AdminForwardAbuseUserReportErrors }; + 'admin/update-abuse-user-report': { req: AdminUpdateAbuseUserReportRequest; res: EmptyResponse; errors: AdminUpdateAbuseUserReportErrors }; + 'admin/send-email': { req: AdminSendEmailRequest; res: EmptyResponse; errors: AdminSendEmailErrors }; + 'admin/server-info': { req: EmptyRequest; res: AdminServerInfoResponse; errors: AdminServerInfoErrors }; + 'admin/show-moderation-logs': { req: AdminShowModerationLogsRequest; res: AdminShowModerationLogsResponse; errors: AdminShowModerationLogsErrors }; + 'admin/show-user': { req: AdminShowUserRequest; res: AdminShowUserResponse; errors: AdminShowUserErrors }; + 'admin/show-users': { req: AdminShowUsersRequest; res: AdminShowUsersResponse; errors: AdminShowUsersErrors }; + 'admin/suspend-user': { req: AdminSuspendUserRequest; res: EmptyResponse; errors: AdminSuspendUserErrors }; + 'admin/unsuspend-user': { req: AdminUnsuspendUserRequest; res: EmptyResponse; errors: AdminUnsuspendUserErrors }; + 'admin/update-meta': { req: AdminUpdateMetaRequest; res: EmptyResponse; errors: AdminUpdateMetaErrors }; + 'admin/delete-account': { req: AdminDeleteAccountRequest; res: EmptyResponse; errors: AdminDeleteAccountErrors }; + 'admin/update-user-note': { req: AdminUpdateUserNoteRequest; res: EmptyResponse; errors: AdminUpdateUserNoteErrors }; + 'admin/roles/create': { req: AdminRolesCreateRequest; res: AdminRolesCreateResponse; errors: AdminRolesCreateErrors }; + 'admin/roles/delete': { req: AdminRolesDeleteRequest; res: EmptyResponse; errors: AdminRolesDeleteErrors }; + 'admin/roles/list': { req: EmptyRequest; res: AdminRolesListResponse; errors: AdminRolesListErrors }; + 'admin/roles/show': { req: AdminRolesShowRequest; res: AdminRolesShowResponse; errors: AdminRolesShowErrors }; + 'admin/roles/update': { req: AdminRolesUpdateRequest; res: EmptyResponse; errors: AdminRolesUpdateErrors }; + 'admin/roles/assign': { req: AdminRolesAssignRequest; res: EmptyResponse; errors: AdminRolesAssignErrors }; + 'admin/roles/unassign': { req: AdminRolesUnassignRequest; res: EmptyResponse; errors: AdminRolesUnassignErrors }; + 'admin/roles/update-default-policies': { req: AdminRolesUpdateDefaultPoliciesRequest; res: EmptyResponse; errors: AdminRolesUpdateDefaultPoliciesErrors }; + 'admin/roles/users': { req: AdminRolesUsersRequest; res: AdminRolesUsersResponse; errors: AdminRolesUsersErrors }; + 'admin/system-webhook/create': { req: AdminSystemWebhookCreateRequest; res: AdminSystemWebhookCreateResponse; errors: AdminSystemWebhookCreateErrors }; + 'admin/system-webhook/delete': { req: AdminSystemWebhookDeleteRequest; res: EmptyResponse; errors: AdminSystemWebhookDeleteErrors }; + 'admin/system-webhook/list': { req: AdminSystemWebhookListRequest; res: AdminSystemWebhookListResponse; errors: AdminSystemWebhookListErrors }; + 'admin/system-webhook/show': { req: AdminSystemWebhookShowRequest; res: AdminSystemWebhookShowResponse; errors: AdminSystemWebhookShowErrors }; + 'admin/system-webhook/update': { req: AdminSystemWebhookUpdateRequest; res: AdminSystemWebhookUpdateResponse; errors: AdminSystemWebhookUpdateErrors }; + 'admin/system-webhook/test': { req: AdminSystemWebhookTestRequest; res: EmptyResponse; errors: AdminSystemWebhookTestErrors }; + 'announcements': { req: AnnouncementsRequest; res: AnnouncementsResponse; errors: AnnouncementsErrors }; + 'announcements/show': { req: AnnouncementsShowRequest; res: AnnouncementsShowResponse; errors: AnnouncementsShowErrors }; + 'antennas/create': { req: AntennasCreateRequest; res: AntennasCreateResponse; errors: AntennasCreateErrors }; + 'antennas/delete': { req: AntennasDeleteRequest; res: EmptyResponse; errors: AntennasDeleteErrors }; + 'antennas/list': { req: EmptyRequest; res: AntennasListResponse; errors: AntennasListErrors }; + 'antennas/notes': { req: AntennasNotesRequest; res: AntennasNotesResponse; errors: AntennasNotesErrors }; + 'antennas/show': { req: AntennasShowRequest; res: AntennasShowResponse; errors: AntennasShowErrors }; + 'antennas/update': { req: AntennasUpdateRequest; res: AntennasUpdateResponse; errors: AntennasUpdateErrors }; + 'ap/get': { req: ApGetRequest; res: ApGetResponse; errors: ApGetErrors }; + 'ap/show': { req: ApShowRequest; res: ApShowResponse; errors: ApShowErrors }; + 'app/create': { req: AppCreateRequest; res: AppCreateResponse; errors: AppCreateErrors }; + 'app/show': { req: AppShowRequest; res: AppShowResponse; errors: AppShowErrors }; + 'auth/accept': { req: AuthAcceptRequest; res: EmptyResponse; errors: AuthAcceptErrors }; + 'auth/session/generate': { req: AuthSessionGenerateRequest; res: AuthSessionGenerateResponse; errors: AuthSessionGenerateErrors }; + 'auth/session/show': { req: AuthSessionShowRequest; res: AuthSessionShowResponse; errors: AuthSessionShowErrors }; + 'auth/session/userkey': { req: AuthSessionUserkeyRequest; res: AuthSessionUserkeyResponse; errors: AuthSessionUserkeyErrors }; + 'blocking/create': { req: BlockingCreateRequest; res: BlockingCreateResponse; errors: BlockingCreateErrors }; + 'blocking/delete': { req: BlockingDeleteRequest; res: BlockingDeleteResponse; errors: BlockingDeleteErrors }; + 'blocking/list': { req: BlockingListRequest; res: BlockingListResponse; errors: BlockingListErrors }; + 'channels/create': { req: ChannelsCreateRequest; res: ChannelsCreateResponse; errors: ChannelsCreateErrors }; + 'channels/featured': { req: EmptyRequest; res: ChannelsFeaturedResponse; errors: ChannelsFeaturedErrors }; + 'channels/follow': { req: ChannelsFollowRequest; res: EmptyResponse; errors: ChannelsFollowErrors }; + 'channels/followed': { req: ChannelsFollowedRequest; res: ChannelsFollowedResponse; errors: ChannelsFollowedErrors }; + 'channels/owned': { req: ChannelsOwnedRequest; res: ChannelsOwnedResponse; errors: ChannelsOwnedErrors }; + 'channels/show': { req: ChannelsShowRequest; res: ChannelsShowResponse; errors: ChannelsShowErrors }; + 'channels/timeline': { req: ChannelsTimelineRequest; res: ChannelsTimelineResponse; errors: ChannelsTimelineErrors }; + 'channels/unfollow': { req: ChannelsUnfollowRequest; res: EmptyResponse; errors: ChannelsUnfollowErrors }; + 'channels/update': { req: ChannelsUpdateRequest; res: ChannelsUpdateResponse; errors: ChannelsUpdateErrors }; + 'channels/favorite': { req: ChannelsFavoriteRequest; res: EmptyResponse; errors: ChannelsFavoriteErrors }; + 'channels/unfavorite': { req: ChannelsUnfavoriteRequest; res: EmptyResponse; errors: ChannelsUnfavoriteErrors }; + 'channels/my-favorites': { req: EmptyRequest; res: ChannelsMyFavoritesResponse; errors: ChannelsMyFavoritesErrors }; + 'channels/search': { req: ChannelsSearchRequest; res: ChannelsSearchResponse; errors: ChannelsSearchErrors }; + 'charts/active-users': { req: ChartsActiveUsersRequest; res: ChartsActiveUsersResponse; errors: ChartsActiveUsersErrors }; + 'charts/ap-request': { req: ChartsApRequestRequest; res: ChartsApRequestResponse; errors: ChartsApRequestErrors }; + 'charts/drive': { req: ChartsDriveRequest; res: ChartsDriveResponse; errors: ChartsDriveErrors }; + 'charts/federation': { req: ChartsFederationRequest; res: ChartsFederationResponse; errors: ChartsFederationErrors }; + 'charts/instance': { req: ChartsInstanceRequest; res: ChartsInstanceResponse; errors: ChartsInstanceErrors }; + 'charts/notes': { req: ChartsNotesRequest; res: ChartsNotesResponse; errors: ChartsNotesErrors }; + 'charts/user/drive': { req: ChartsUserDriveRequest; res: ChartsUserDriveResponse; errors: ChartsUserDriveErrors }; + 'charts/user/following': { req: ChartsUserFollowingRequest; res: ChartsUserFollowingResponse; errors: ChartsUserFollowingErrors }; + 'charts/user/notes': { req: ChartsUserNotesRequest; res: ChartsUserNotesResponse; errors: ChartsUserNotesErrors }; + 'charts/user/pv': { req: ChartsUserPvRequest; res: ChartsUserPvResponse; errors: ChartsUserPvErrors }; + 'charts/user/reactions': { req: ChartsUserReactionsRequest; res: ChartsUserReactionsResponse; errors: ChartsUserReactionsErrors }; + 'charts/users': { req: ChartsUsersRequest; res: ChartsUsersResponse; errors: ChartsUsersErrors }; + 'clips/add-note': { req: ClipsAddNoteRequest; res: EmptyResponse; errors: ClipsAddNoteErrors }; + 'clips/remove-note': { req: ClipsRemoveNoteRequest; res: EmptyResponse; errors: ClipsRemoveNoteErrors }; + 'clips/create': { req: ClipsCreateRequest; res: ClipsCreateResponse; errors: ClipsCreateErrors }; + 'clips/delete': { req: ClipsDeleteRequest; res: EmptyResponse; errors: ClipsDeleteErrors }; + 'clips/list': { req: EmptyRequest; res: ClipsListResponse; errors: ClipsListErrors }; + 'clips/notes': { req: ClipsNotesRequest; res: ClipsNotesResponse; errors: ClipsNotesErrors }; + 'clips/show': { req: ClipsShowRequest; res: ClipsShowResponse; errors: ClipsShowErrors }; + 'clips/update': { req: ClipsUpdateRequest; res: ClipsUpdateResponse; errors: ClipsUpdateErrors }; + 'clips/favorite': { req: ClipsFavoriteRequest; res: EmptyResponse; errors: ClipsFavoriteErrors }; + 'clips/unfavorite': { req: ClipsUnfavoriteRequest; res: EmptyResponse; errors: ClipsUnfavoriteErrors }; + 'clips/my-favorites': { req: EmptyRequest; res: ClipsMyFavoritesResponse; errors: ClipsMyFavoritesErrors }; + 'drive': { req: EmptyRequest; res: DriveResponse; errors: DriveErrors }; + 'drive/files': { req: DriveFilesRequest; res: DriveFilesResponse; errors: DriveFilesErrors }; + 'drive/files/attached-notes': { req: DriveFilesAttachedNotesRequest; res: DriveFilesAttachedNotesResponse; errors: DriveFilesAttachedNotesErrors }; + 'drive/files/check-existence': { req: DriveFilesCheckExistenceRequest; res: DriveFilesCheckExistenceResponse; errors: DriveFilesCheckExistenceErrors }; + 'drive/files/create': { req: DriveFilesCreateRequest; res: DriveFilesCreateResponse; errors: DriveFilesCreateErrors }; + 'drive/files/delete': { req: DriveFilesDeleteRequest; res: EmptyResponse; errors: DriveFilesDeleteErrors }; + 'drive/files/find-by-hash': { req: DriveFilesFindByHashRequest; res: DriveFilesFindByHashResponse; errors: DriveFilesFindByHashErrors }; + 'drive/files/find': { req: DriveFilesFindRequest; res: DriveFilesFindResponse; errors: DriveFilesFindErrors }; + 'drive/files/show': { req: DriveFilesShowRequest; res: DriveFilesShowResponse; errors: DriveFilesShowErrors }; + 'drive/files/update': { req: DriveFilesUpdateRequest; res: DriveFilesUpdateResponse; errors: DriveFilesUpdateErrors }; + 'drive/files/upload-from-url': { req: DriveFilesUploadFromUrlRequest; res: EmptyResponse; errors: DriveFilesUploadFromUrlErrors }; + 'drive/folders': { req: DriveFoldersRequest; res: DriveFoldersResponse; errors: DriveFoldersErrors }; + 'drive/folders/create': { req: DriveFoldersCreateRequest; res: DriveFoldersCreateResponse; errors: DriveFoldersCreateErrors }; + 'drive/folders/delete': { req: DriveFoldersDeleteRequest; res: EmptyResponse; errors: DriveFoldersDeleteErrors }; + 'drive/folders/find': { req: DriveFoldersFindRequest; res: DriveFoldersFindResponse; errors: DriveFoldersFindErrors }; + 'drive/folders/show': { req: DriveFoldersShowRequest; res: DriveFoldersShowResponse; errors: DriveFoldersShowErrors }; + 'drive/folders/update': { req: DriveFoldersUpdateRequest; res: DriveFoldersUpdateResponse; errors: DriveFoldersUpdateErrors }; + 'drive/stream': { req: DriveStreamRequest; res: DriveStreamResponse; errors: DriveStreamErrors }; + 'email-address/available': { req: EmailAddressAvailableRequest; res: EmailAddressAvailableResponse; errors: EmailAddressAvailableErrors }; + 'endpoint': { req: EndpointRequest; res: EndpointResponse; errors: EndpointErrors }; + 'endpoints': { req: EmptyRequest; res: EndpointsResponse; errors: EndpointsErrors }; + 'export-custom-emojis': { req: EmptyRequest; res: EmptyResponse; errors: ExportCustomEmojisErrors }; + 'federation/followers': { req: FederationFollowersRequest; res: FederationFollowersResponse; errors: FederationFollowersErrors }; + 'federation/following': { req: FederationFollowingRequest; res: FederationFollowingResponse; errors: FederationFollowingErrors }; + 'federation/instances': { req: FederationInstancesRequest; res: FederationInstancesResponse; errors: FederationInstancesErrors }; + 'federation/show-instance': { req: FederationShowInstanceRequest; res: FederationShowInstanceResponse; errors: FederationShowInstanceErrors }; + 'federation/update-remote-user': { req: FederationUpdateRemoteUserRequest; res: EmptyResponse; errors: FederationUpdateRemoteUserErrors }; + 'federation/users': { req: FederationUsersRequest; res: FederationUsersResponse; errors: FederationUsersErrors }; + 'federation/stats': { req: FederationStatsRequest; res: FederationStatsResponse; errors: FederationStatsErrors }; + 'following/create': { req: FollowingCreateRequest; res: FollowingCreateResponse; errors: FollowingCreateErrors }; + 'following/delete': { req: FollowingDeleteRequest; res: FollowingDeleteResponse; errors: FollowingDeleteErrors }; + 'following/update': { req: FollowingUpdateRequest; res: FollowingUpdateResponse; errors: FollowingUpdateErrors }; + 'following/update-all': { req: FollowingUpdateAllRequest; res: EmptyResponse; errors: FollowingUpdateAllErrors }; + 'following/invalidate': { req: FollowingInvalidateRequest; res: FollowingInvalidateResponse; errors: FollowingInvalidateErrors }; + 'following/requests/accept': { req: FollowingRequestsAcceptRequest; res: EmptyResponse; errors: FollowingRequestsAcceptErrors }; + 'following/requests/cancel': { req: FollowingRequestsCancelRequest; res: FollowingRequestsCancelResponse; errors: FollowingRequestsCancelErrors }; + 'following/requests/list': { req: FollowingRequestsListRequest; res: FollowingRequestsListResponse; errors: FollowingRequestsListErrors }; + 'following/requests/reject': { req: FollowingRequestsRejectRequest; res: EmptyResponse; errors: FollowingRequestsRejectErrors }; + 'gallery/featured': { req: GalleryFeaturedRequest; res: GalleryFeaturedResponse; errors: GalleryFeaturedErrors }; + 'gallery/popular': { req: EmptyRequest; res: GalleryPopularResponse; errors: GalleryPopularErrors }; + 'gallery/posts': { req: GalleryPostsRequest; res: GalleryPostsResponse; errors: GalleryPostsErrors }; + 'gallery/posts/create': { req: GalleryPostsCreateRequest; res: GalleryPostsCreateResponse; errors: GalleryPostsCreateErrors }; + 'gallery/posts/delete': { req: GalleryPostsDeleteRequest; res: EmptyResponse; errors: GalleryPostsDeleteErrors }; + 'gallery/posts/like': { req: GalleryPostsLikeRequest; res: EmptyResponse; errors: GalleryPostsLikeErrors }; + 'gallery/posts/show': { req: GalleryPostsShowRequest; res: GalleryPostsShowResponse; errors: GalleryPostsShowErrors }; + 'gallery/posts/unlike': { req: GalleryPostsUnlikeRequest; res: EmptyResponse; errors: GalleryPostsUnlikeErrors }; + 'gallery/posts/update': { req: GalleryPostsUpdateRequest; res: GalleryPostsUpdateResponse; errors: GalleryPostsUpdateErrors }; + 'get-online-users-count': { req: EmptyRequest; res: GetOnlineUsersCountResponse; errors: GetOnlineUsersCountErrors }; + 'get-avatar-decorations': { req: EmptyRequest; res: GetAvatarDecorationsResponse; errors: GetAvatarDecorationsErrors }; + 'hashtags/list': { req: HashtagsListRequest; res: HashtagsListResponse; errors: HashtagsListErrors }; + 'hashtags/search': { req: HashtagsSearchRequest; res: HashtagsSearchResponse; errors: HashtagsSearchErrors }; + 'hashtags/show': { req: HashtagsShowRequest; res: HashtagsShowResponse; errors: HashtagsShowErrors }; + 'hashtags/trend': { req: EmptyRequest; res: HashtagsTrendResponse; errors: HashtagsTrendErrors }; + 'hashtags/users': { req: HashtagsUsersRequest; res: HashtagsUsersResponse; errors: HashtagsUsersErrors }; + 'i': { req: EmptyRequest; res: IResponse; errors: IErrors }; + 'i/2fa/done': { req: I2faDoneRequest; res: I2faDoneResponse; errors: I2faDoneErrors }; + 'i/2fa/key-done': { req: I2faKeyDoneRequest; res: I2faKeyDoneResponse; errors: I2faKeyDoneErrors }; + 'i/2fa/password-less': { req: I2faPasswordLessRequest; res: EmptyResponse; errors: I2faPasswordLessErrors }; + 'i/2fa/register-key': { req: I2faRegisterKeyRequest; res: I2faRegisterKeyResponse; errors: I2faRegisterKeyErrors }; + 'i/2fa/register': { req: I2faRegisterRequest; res: I2faRegisterResponse; errors: I2faRegisterErrors }; + 'i/2fa/update-key': { req: I2faUpdateKeyRequest; res: EmptyResponse; errors: I2faUpdateKeyErrors }; + 'i/2fa/remove-key': { req: I2faRemoveKeyRequest; res: EmptyResponse; errors: I2faRemoveKeyErrors }; + 'i/2fa/unregister': { req: I2faUnregisterRequest; res: EmptyResponse; errors: I2faUnregisterErrors }; + 'i/apps': { req: IAppsRequest; res: IAppsResponse; errors: IAppsErrors }; + 'i/authorized-apps': { req: IAuthorizedAppsRequest; res: IAuthorizedAppsResponse; errors: IAuthorizedAppsErrors }; + 'i/claim-achievement': { req: IClaimAchievementRequest; res: EmptyResponse; errors: IClaimAchievementErrors }; + 'i/change-password': { req: IChangePasswordRequest; res: EmptyResponse; errors: IChangePasswordErrors }; + 'i/delete-account': { req: IDeleteAccountRequest; res: EmptyResponse; errors: IDeleteAccountErrors }; + 'i/export-blocking': { req: EmptyRequest; res: EmptyResponse; errors: IExportBlockingErrors }; + 'i/export-following': { req: IExportFollowingRequest; res: EmptyResponse; errors: IExportFollowingErrors }; + 'i/export-mute': { req: EmptyRequest; res: EmptyResponse; errors: IExportMuteErrors }; + 'i/export-notes': { req: EmptyRequest; res: EmptyResponse; errors: IExportNotesErrors }; + 'i/export-clips': { req: EmptyRequest; res: EmptyResponse; errors: IExportClipsErrors }; + 'i/export-favorites': { req: EmptyRequest; res: EmptyResponse; errors: IExportFavoritesErrors }; + 'i/export-user-lists': { req: EmptyRequest; res: EmptyResponse; errors: IExportUserListsErrors }; + 'i/export-antennas': { req: EmptyRequest; res: EmptyResponse; errors: IExportAntennasErrors }; + 'i/favorites': { req: IFavoritesRequest; res: IFavoritesResponse; errors: IFavoritesErrors }; + 'i/gallery/likes': { req: IGalleryLikesRequest; res: IGalleryLikesResponse; errors: IGalleryLikesErrors }; + 'i/gallery/posts': { req: IGalleryPostsRequest; res: IGalleryPostsResponse; errors: IGalleryPostsErrors }; + 'i/import-blocking': { req: IImportBlockingRequest; res: EmptyResponse; errors: IImportBlockingErrors }; + 'i/import-following': { req: IImportFollowingRequest; res: EmptyResponse; errors: IImportFollowingErrors }; + 'i/import-muting': { req: IImportMutingRequest; res: EmptyResponse; errors: IImportMutingErrors }; + 'i/import-user-lists': { req: IImportUserListsRequest; res: EmptyResponse; errors: IImportUserListsErrors }; + 'i/import-antennas': { req: IImportAntennasRequest; res: EmptyResponse; errors: IImportAntennasErrors }; + 'i/notifications': { req: INotificationsRequest; res: INotificationsResponse; errors: INotificationsErrors }; + 'i/notifications-grouped': { req: INotificationsGroupedRequest; res: INotificationsGroupedResponse; errors: INotificationsGroupedErrors }; + 'i/page-likes': { req: IPageLikesRequest; res: IPageLikesResponse; errors: IPageLikesErrors }; + 'i/pages': { req: IPagesRequest; res: IPagesResponse; errors: IPagesErrors }; + 'i/pin': { req: IPinRequest; res: IPinResponse; errors: IPinErrors }; + 'i/read-all-unread-notes': { req: EmptyRequest; res: EmptyResponse; errors: IReadAllUnreadNotesErrors }; + 'i/read-announcement': { req: IReadAnnouncementRequest; res: EmptyResponse; errors: IReadAnnouncementErrors }; + 'i/regenerate-token': { req: IRegenerateTokenRequest; res: EmptyResponse; errors: IRegenerateTokenErrors }; + 'i/registry/get-all': { req: IRegistryGetAllRequest; res: IRegistryGetAllResponse; errors: IRegistryGetAllErrors }; + 'i/registry/get-detail': { req: IRegistryGetDetailRequest; res: IRegistryGetDetailResponse; errors: IRegistryGetDetailErrors }; + 'i/registry/get': { req: IRegistryGetRequest; res: IRegistryGetResponse; errors: IRegistryGetErrors }; + 'i/registry/keys-with-type': { req: IRegistryKeysWithTypeRequest; res: IRegistryKeysWithTypeResponse; errors: IRegistryKeysWithTypeErrors }; + 'i/registry/keys': { req: IRegistryKeysRequest; res: IRegistryKeysResponse; errors: IRegistryKeysErrors }; + 'i/registry/remove': { req: IRegistryRemoveRequest; res: EmptyResponse; errors: IRegistryRemoveErrors }; + 'i/registry/scopes-with-domain': { req: EmptyRequest; res: IRegistryScopesWithDomainResponse; errors: IRegistryScopesWithDomainErrors }; + 'i/registry/set': { req: IRegistrySetRequest; res: EmptyResponse; errors: IRegistrySetErrors }; + 'i/revoke-token': { req: IRevokeTokenRequest; res: EmptyResponse; errors: IRevokeTokenErrors }; + 'i/signin-history': { req: ISigninHistoryRequest; res: ISigninHistoryResponse; errors: ISigninHistoryErrors }; + 'i/unpin': { req: IUnpinRequest; res: IUnpinResponse; errors: IUnpinErrors }; + 'i/update-email': { req: IUpdateEmailRequest; res: IUpdateEmailResponse; errors: IUpdateEmailErrors }; + 'i/update': { req: IUpdateRequest; res: IUpdateResponse; errors: IUpdateErrors }; + 'i/move': { req: IMoveRequest; res: IMoveResponse; errors: IMoveErrors }; + 'i/webhooks/create': { req: IWebhooksCreateRequest; res: IWebhooksCreateResponse; errors: IWebhooksCreateErrors }; + 'i/webhooks/list': { req: EmptyRequest; res: IWebhooksListResponse; errors: IWebhooksListErrors }; + 'i/webhooks/show': { req: IWebhooksShowRequest; res: IWebhooksShowResponse; errors: IWebhooksShowErrors }; + 'i/webhooks/update': { req: IWebhooksUpdateRequest; res: EmptyResponse; errors: IWebhooksUpdateErrors }; + 'i/webhooks/delete': { req: IWebhooksDeleteRequest; res: EmptyResponse; errors: IWebhooksDeleteErrors }; + 'i/webhooks/test': { req: IWebhooksTestRequest; res: EmptyResponse; errors: IWebhooksTestErrors }; + 'invite/create': { req: EmptyRequest; res: InviteCreateResponse; errors: InviteCreateErrors }; + 'invite/delete': { req: InviteDeleteRequest; res: EmptyResponse; errors: InviteDeleteErrors }; + 'invite/list': { req: InviteListRequest; res: InviteListResponse; errors: InviteListErrors }; + 'invite/limit': { req: EmptyRequest; res: InviteLimitResponse; errors: InviteLimitErrors }; + 'meta': { req: MetaRequest; res: MetaResponse; errors: MetaErrors }; + 'emojis': { req: EmptyRequest; res: EmojisResponse; errors: EmojisErrors }; + 'emoji': { req: EmojiRequest; res: EmojiResponse; errors: EmojiErrors }; + 'miauth/gen-token': { req: MiauthGenTokenRequest; res: MiauthGenTokenResponse; errors: MiauthGenTokenErrors }; + 'mute/create': { req: MuteCreateRequest; res: EmptyResponse; errors: MuteCreateErrors }; + 'mute/delete': { req: MuteDeleteRequest; res: EmptyResponse; errors: MuteDeleteErrors }; + 'mute/list': { req: MuteListRequest; res: MuteListResponse; errors: MuteListErrors }; + 'renote-mute/create': { req: RenoteMuteCreateRequest; res: EmptyResponse; errors: RenoteMuteCreateErrors }; + 'renote-mute/delete': { req: RenoteMuteDeleteRequest; res: EmptyResponse; errors: RenoteMuteDeleteErrors }; + 'renote-mute/list': { req: RenoteMuteListRequest; res: RenoteMuteListResponse; errors: RenoteMuteListErrors }; + 'my/apps': { req: MyAppsRequest; res: MyAppsResponse; errors: MyAppsErrors }; + 'notes': { req: NotesRequest; res: NotesResponse; errors: NotesErrors }; + 'notes/children': { req: NotesChildrenRequest; res: NotesChildrenResponse; errors: NotesChildrenErrors }; + 'notes/clips': { req: NotesClipsRequest; res: NotesClipsResponse; errors: NotesClipsErrors }; + 'notes/conversation': { req: NotesConversationRequest; res: NotesConversationResponse; errors: NotesConversationErrors }; + 'notes/create': { req: NotesCreateRequest; res: NotesCreateResponse; errors: NotesCreateErrors }; + 'notes/delete': { req: NotesDeleteRequest; res: EmptyResponse; errors: NotesDeleteErrors }; + 'notes/favorites/create': { req: NotesFavoritesCreateRequest; res: EmptyResponse; errors: NotesFavoritesCreateErrors }; + 'notes/favorites/delete': { req: NotesFavoritesDeleteRequest; res: EmptyResponse; errors: NotesFavoritesDeleteErrors }; + 'notes/featured': { req: NotesFeaturedRequest; res: NotesFeaturedResponse; errors: NotesFeaturedErrors }; + 'notes/global-timeline': { req: NotesGlobalTimelineRequest; res: NotesGlobalTimelineResponse; errors: NotesGlobalTimelineErrors }; + 'notes/hybrid-timeline': { req: NotesHybridTimelineRequest; res: NotesHybridTimelineResponse; errors: NotesHybridTimelineErrors }; + 'notes/local-timeline': { req: NotesLocalTimelineRequest; res: NotesLocalTimelineResponse; errors: NotesLocalTimelineErrors }; + 'notes/mentions': { req: NotesMentionsRequest; res: NotesMentionsResponse; errors: NotesMentionsErrors }; + 'notes/polls/recommendation': { req: NotesPollsRecommendationRequest; res: NotesPollsRecommendationResponse; errors: NotesPollsRecommendationErrors }; + 'notes/polls/vote': { req: NotesPollsVoteRequest; res: EmptyResponse; errors: NotesPollsVoteErrors }; + 'notes/reactions': { req: NotesReactionsRequest; res: NotesReactionsResponse; errors: NotesReactionsErrors }; + 'notes/reactions/create': { req: NotesReactionsCreateRequest; res: EmptyResponse; errors: NotesReactionsCreateErrors }; + 'notes/reactions/delete': { req: NotesReactionsDeleteRequest; res: EmptyResponse; errors: NotesReactionsDeleteErrors }; + 'notes/renotes': { req: NotesRenotesRequest; res: NotesRenotesResponse; errors: NotesRenotesErrors }; + 'notes/replies': { req: NotesRepliesRequest; res: NotesRepliesResponse; errors: NotesRepliesErrors }; + 'notes/search-by-tag': { req: NotesSearchByTagRequest; res: NotesSearchByTagResponse; errors: NotesSearchByTagErrors }; + 'notes/search': { req: NotesSearchRequest; res: NotesSearchResponse; errors: NotesSearchErrors }; + 'notes/show': { req: NotesShowRequest; res: NotesShowResponse; errors: NotesShowErrors }; + 'notes/state': { req: NotesStateRequest; res: NotesStateResponse; errors: NotesStateErrors }; + 'notes/thread-muting/create': { req: NotesThreadMutingCreateRequest; res: EmptyResponse; errors: NotesThreadMutingCreateErrors }; + 'notes/thread-muting/delete': { req: NotesThreadMutingDeleteRequest; res: EmptyResponse; errors: NotesThreadMutingDeleteErrors }; + 'notes/timeline': { req: NotesTimelineRequest; res: NotesTimelineResponse; errors: NotesTimelineErrors }; + 'notes/translate': { req: NotesTranslateRequest; res: NotesTranslateResponse; errors: NotesTranslateErrors }; + 'notes/unrenote': { req: NotesUnrenoteRequest; res: EmptyResponse; errors: NotesUnrenoteErrors }; + 'notes/user-list-timeline': { req: NotesUserListTimelineRequest; res: NotesUserListTimelineResponse; errors: NotesUserListTimelineErrors }; + 'notifications/create': { req: NotificationsCreateRequest; res: EmptyResponse; errors: NotificationsCreateErrors }; + 'notifications/flush': { req: EmptyRequest; res: EmptyResponse; errors: NotificationsFlushErrors }; + 'notifications/mark-all-as-read': { req: EmptyRequest; res: EmptyResponse; errors: NotificationsMarkAllAsReadErrors }; + 'notifications/test-notification': { req: EmptyRequest; res: EmptyResponse; errors: NotificationsTestNotificationErrors }; + 'page-push': { req: PagePushRequest; res: EmptyResponse; errors: PagePushErrors }; + 'pages/create': { req: PagesCreateRequest; res: PagesCreateResponse; errors: PagesCreateErrors }; + 'pages/delete': { req: PagesDeleteRequest; res: EmptyResponse; errors: PagesDeleteErrors }; + 'pages/featured': { req: EmptyRequest; res: PagesFeaturedResponse; errors: PagesFeaturedErrors }; + 'pages/like': { req: PagesLikeRequest; res: EmptyResponse; errors: PagesLikeErrors }; + 'pages/show': { req: PagesShowRequest; res: PagesShowResponse; errors: PagesShowErrors }; + 'pages/unlike': { req: PagesUnlikeRequest; res: EmptyResponse; errors: PagesUnlikeErrors }; + 'pages/update': { req: PagesUpdateRequest; res: EmptyResponse; errors: PagesUpdateErrors }; + 'flash/create': { req: FlashCreateRequest; res: FlashCreateResponse; errors: FlashCreateErrors }; + 'flash/delete': { req: FlashDeleteRequest; res: EmptyResponse; errors: FlashDeleteErrors }; + 'flash/featured': { req: FlashFeaturedRequest; res: FlashFeaturedResponse; errors: FlashFeaturedErrors }; + 'flash/like': { req: FlashLikeRequest; res: EmptyResponse; errors: FlashLikeErrors }; + 'flash/show': { req: FlashShowRequest; res: FlashShowResponse; errors: FlashShowErrors }; + 'flash/unlike': { req: FlashUnlikeRequest; res: EmptyResponse; errors: FlashUnlikeErrors }; + 'flash/update': { req: FlashUpdateRequest; res: EmptyResponse; errors: FlashUpdateErrors }; + 'flash/my': { req: FlashMyRequest; res: FlashMyResponse; errors: FlashMyErrors }; + 'flash/my-likes': { req: FlashMyLikesRequest; res: FlashMyLikesResponse; errors: FlashMyLikesErrors }; + 'ping': { req: EmptyRequest; res: PingResponse; errors: PingErrors }; + 'pinned-users': { req: EmptyRequest; res: PinnedUsersResponse; errors: PinnedUsersErrors }; + 'promo/read': { req: PromoReadRequest; res: EmptyResponse; errors: PromoReadErrors }; + 'roles/list': { req: EmptyRequest; res: RolesListResponse; errors: RolesListErrors }; + 'roles/show': { req: RolesShowRequest; res: RolesShowResponse; errors: RolesShowErrors }; + 'roles/users': { req: RolesUsersRequest; res: RolesUsersResponse; errors: RolesUsersErrors }; + 'roles/notes': { req: RolesNotesRequest; res: RolesNotesResponse; errors: RolesNotesErrors }; + 'request-reset-password': { req: RequestResetPasswordRequest; res: EmptyResponse; errors: RequestResetPasswordErrors }; + 'reset-db': { req: EmptyRequest; res: EmptyResponse; errors: ResetDbErrors }; + 'reset-password': { req: ResetPasswordRequest; res: EmptyResponse; errors: ResetPasswordErrors }; + 'server-info': { req: EmptyRequest; res: ServerInfoResponse; errors: ServerInfoErrors }; + 'stats': { req: EmptyRequest; res: StatsResponse; errors: StatsErrors }; + 'sw/show-registration': { req: SwShowRegistrationRequest; res: SwShowRegistrationResponse; errors: SwShowRegistrationErrors }; + 'sw/update-registration': { req: SwUpdateRegistrationRequest; res: SwUpdateRegistrationResponse; errors: SwUpdateRegistrationErrors }; + 'sw/register': { req: SwRegisterRequest; res: SwRegisterResponse; errors: SwRegisterErrors }; + 'sw/unregister': { req: SwUnregisterRequest; res: EmptyResponse; errors: SwUnregisterErrors }; + 'test': { req: TestRequest; res: TestResponse; errors: TestErrors }; + 'username/available': { req: UsernameAvailableRequest; res: UsernameAvailableResponse; errors: UsernameAvailableErrors }; + 'users': { req: UsersRequest; res: UsersResponse; errors: UsersErrors }; + 'users/clips': { req: UsersClipsRequest; res: UsersClipsResponse; errors: UsersClipsErrors }; + 'users/followers': { req: UsersFollowersRequest; res: UsersFollowersResponse; errors: UsersFollowersErrors }; + 'users/following': { req: UsersFollowingRequest; res: UsersFollowingResponse; errors: UsersFollowingErrors }; + 'users/gallery/posts': { req: UsersGalleryPostsRequest; res: UsersGalleryPostsResponse; errors: UsersGalleryPostsErrors }; + 'users/get-frequently-replied-users': { req: UsersGetFrequentlyRepliedUsersRequest; res: UsersGetFrequentlyRepliedUsersResponse; errors: UsersGetFrequentlyRepliedUsersErrors }; + 'users/featured-notes': { req: UsersFeaturedNotesRequest; res: UsersFeaturedNotesResponse; errors: UsersFeaturedNotesErrors }; + 'users/lists/create': { req: UsersListsCreateRequest; res: UsersListsCreateResponse; errors: UsersListsCreateErrors }; + 'users/lists/delete': { req: UsersListsDeleteRequest; res: EmptyResponse; errors: UsersListsDeleteErrors }; + 'users/lists/list': { req: UsersListsListRequest; res: UsersListsListResponse; errors: UsersListsListErrors }; + 'users/lists/pull': { req: UsersListsPullRequest; res: EmptyResponse; errors: UsersListsPullErrors }; + 'users/lists/push': { req: UsersListsPushRequest; res: EmptyResponse; errors: UsersListsPushErrors }; + 'users/lists/show': { req: UsersListsShowRequest; res: UsersListsShowResponse; errors: UsersListsShowErrors }; + 'users/lists/favorite': { req: UsersListsFavoriteRequest; res: EmptyResponse; errors: UsersListsFavoriteErrors }; + 'users/lists/unfavorite': { req: UsersListsUnfavoriteRequest; res: EmptyResponse; errors: UsersListsUnfavoriteErrors }; + 'users/lists/update': { req: UsersListsUpdateRequest; res: UsersListsUpdateResponse; errors: UsersListsUpdateErrors }; + 'users/lists/create-from-public': { req: UsersListsCreateFromPublicRequest; res: UsersListsCreateFromPublicResponse; errors: UsersListsCreateFromPublicErrors }; + 'users/lists/update-membership': { req: UsersListsUpdateMembershipRequest; res: EmptyResponse; errors: UsersListsUpdateMembershipErrors }; + 'users/lists/get-memberships': { req: UsersListsGetMembershipsRequest; res: UsersListsGetMembershipsResponse; errors: UsersListsGetMembershipsErrors }; + 'users/notes': { req: UsersNotesRequest; res: UsersNotesResponse; errors: UsersNotesErrors }; + 'users/pages': { req: UsersPagesRequest; res: UsersPagesResponse; errors: UsersPagesErrors }; + 'users/flashs': { req: UsersFlashsRequest; res: UsersFlashsResponse; errors: UsersFlashsErrors }; + 'users/reactions': { req: UsersReactionsRequest; res: UsersReactionsResponse; errors: UsersReactionsErrors }; + 'users/recommendation': { req: UsersRecommendationRequest; res: UsersRecommendationResponse; errors: UsersRecommendationErrors }; + 'users/relation': { req: UsersRelationRequest; res: UsersRelationResponse; errors: UsersRelationErrors }; + 'users/report-abuse': { req: UsersReportAbuseRequest; res: EmptyResponse; errors: UsersReportAbuseErrors }; + 'users/search-by-username-and-host': { req: UsersSearchByUsernameAndHostRequest; res: UsersSearchByUsernameAndHostResponse; errors: UsersSearchByUsernameAndHostErrors }; + 'users/search': { req: UsersSearchRequest; res: UsersSearchResponse; errors: UsersSearchErrors }; + 'users/show': { req: UsersShowRequest; res: UsersShowResponse; errors: UsersShowErrors }; + 'users/achievements': { req: UsersAchievementsRequest; res: UsersAchievementsResponse; errors: UsersAchievementsErrors }; + 'users/update-memo': { req: UsersUpdateMemoRequest; res: EmptyResponse; errors: UsersUpdateMemoErrors }; + 'fetch-rss': { req: FetchRssRequest; res: FetchRssResponse; errors: FetchRssErrors }; + 'fetch-external-resources': { req: FetchExternalResourcesRequest; res: FetchExternalResourcesResponse; errors: FetchExternalResourcesErrors }; + 'retention': { req: EmptyRequest; res: RetentionResponse; errors: RetentionErrors }; + 'bubble-game/register': { req: BubbleGameRegisterRequest; res: EmptyResponse; errors: BubbleGameRegisterErrors }; + 'bubble-game/ranking': { req: BubbleGameRankingRequest; res: BubbleGameRankingResponse; errors: BubbleGameRankingErrors }; + 'reversi/cancel-match': { req: ReversiCancelMatchRequest; res: EmptyResponse; errors: ReversiCancelMatchErrors }; + 'reversi/games': { req: ReversiGamesRequest; res: ReversiGamesResponse; errors: ReversiGamesErrors }; + 'reversi/match': { req: ReversiMatchRequest; res: ReversiMatchResponse; errors: ReversiMatchErrors }; + 'reversi/invitations': { req: EmptyRequest; res: ReversiInvitationsResponse; errors: ReversiInvitationsErrors }; + 'reversi/show-game': { req: ReversiShowGameRequest; res: ReversiShowGameResponse; errors: ReversiShowGameErrors }; + 'reversi/surrender': { req: ReversiSurrenderRequest; res: EmptyResponse; errors: ReversiSurrenderErrors }; + 'reversi/verify': { req: ReversiVerifyRequest; res: ReversiVerifyResponse; errors: ReversiVerifyErrors }; } /** diff --git a/packages/misskey-js/src/autogen/endpointErrors.ts b/packages/misskey-js/src/autogen/endpointErrors.ts new file mode 100644 index 0000000000..2275aa9274 --- /dev/null +++ b/packages/misskey-js/src/autogen/endpointErrors.ts @@ -0,0 +1,1347 @@ +/* eslint @typescript-eslint/naming-convention: 0 */ +/* eslint @typescript-eslint/no-explicit-any: 0 */ + +export type EndpointsErrors = { + 'admin___meta': CommonErrorTypes, + 'admin___abuse-user-reports': CommonErrorTypes, + 'admin___abuse-report___notification-recipient___list': CommonErrorTypes, + 'admin___abuse-report___notification-recipient___show': { + 'NO_SUCH_RECIPIENT': IdentifiableError['013de6a8-f757-04cb-4d73-cc2a7e3368e4'], + } & CommonErrorTypes, + 'admin___abuse-report___notification-recipient___create': { + 'CORRELATION_CHECK_EMAIL': IdentifiableError['348bb8ae-575a-6fe9-4327-5811999def8f'], + 'CORRELATION_CHECK_WEBHOOK': IdentifiableError['b0c15051-de2d-29ef-260c-9585cddd701a'], + 'EMAIL_ADDRESS_NOT_SET': IdentifiableError['7cc1d85e-2f58-fc31-b644-3de8d0d3421f'], + } & CommonErrorTypes, + 'admin___abuse-report___notification-recipient___update': { + 'CORRELATION_CHECK_EMAIL': IdentifiableError['348bb8ae-575a-6fe9-4327-5811999def8f'], + 'CORRELATION_CHECK_WEBHOOK': IdentifiableError['b0c15051-de2d-29ef-260c-9585cddd701a'], + 'EMAIL_ADDRESS_NOT_SET': IdentifiableError['7cc1d85e-2f58-fc31-b644-3de8d0d3421f'], + } & CommonErrorTypes, + 'admin___abuse-report___notification-recipient___delete': CommonErrorTypes, + 'admin___accounts___create': { + 'ACCESS_DENIED': IdentifiableError['1fb7cb09-d46a-4fff-b8df-057708cce513'], + 'INCORRECT_INITIAL_PASSWORD': IdentifiableError['97147c55-1ae1-4f6f-91d6-e1c3e0e76d62'], + } & CommonErrorTypes, + 'admin___accounts___delete': CommonErrorTypes, + 'admin___accounts___find-by-email': { + 'USER_NOT_FOUND': IdentifiableError['cb865949-8af5-4062-a88c-ef55e8786d1d'], + } & CommonErrorTypes, + 'admin___ad___create': CommonErrorTypes, + 'admin___ad___delete': { + 'NO_SUCH_AD': IdentifiableError['ccac9863-3a03-416e-b899-8a64041118b1'], + } & CommonErrorTypes, + 'admin___ad___list': CommonErrorTypes, + 'admin___ad___update': { + 'NO_SUCH_AD': IdentifiableError['b7aa1727-1354-47bc-a182-3a9c3973d300'], + } & CommonErrorTypes, + 'admin___announcements___create': CommonErrorTypes, + 'admin___announcements___delete': { + 'NO_SUCH_ANNOUNCEMENT': IdentifiableError['ecad8040-a276-4e85-bda9-015a708d291e'], + } & CommonErrorTypes, + 'admin___announcements___list': CommonErrorTypes, + 'admin___announcements___update': { + 'NO_SUCH_ANNOUNCEMENT': IdentifiableError['d3aae5a7-6372-4cb4-b61c-f511ffc2d7cc'], + } & CommonErrorTypes, + 'admin___avatar-decorations___create': CommonErrorTypes, + 'admin___avatar-decorations___delete': CommonErrorTypes, + 'admin___avatar-decorations___list': CommonErrorTypes, + 'admin___avatar-decorations___update': CommonErrorTypes, + 'admin___delete-all-files-of-a-user': CommonErrorTypes, + 'admin___unset-user-avatar': CommonErrorTypes, + 'admin___unset-user-banner': CommonErrorTypes, + 'admin___drive___clean-remote-files': CommonErrorTypes, + 'admin___drive___cleanup': CommonErrorTypes, + 'admin___drive___files': CommonErrorTypes, + 'admin___drive___show-file': { + 'NO_SUCH_FILE': IdentifiableError['caf3ca38-c6e5-472e-a30c-b05377dcc240'], + } & CommonErrorTypes, + 'admin___emoji___add-aliases-bulk': CommonErrorTypes, + 'admin___emoji___add': { + 'NO_SUCH_FILE': IdentifiableError['fc46b5a4-6b92-4c33-ac66-b806659bb5cf'], + 'DUPLICATE_NAME': IdentifiableError['f7a3462c-4e6e-4069-8421-b9bd4f4c3975'], + } & CommonErrorTypes, + 'admin___emoji___copy': { + 'NO_SUCH_EMOJI': IdentifiableError['e2785b66-dca3-4087-9cac-b93c541cc425'], + 'DUPLICATE_NAME': IdentifiableError['f7a3462c-4e6e-4069-8421-b9bd4f4c3975'], + } & CommonErrorTypes, + 'admin___emoji___delete-bulk': CommonErrorTypes, + 'admin___emoji___delete': { + 'NO_SUCH_EMOJI': IdentifiableError['be83669b-773a-44b7-b1f8-e5e5170ac3c2'], + } & CommonErrorTypes, + 'admin___emoji___import-zip': CommonErrorTypes, + 'admin___emoji___list-remote': CommonErrorTypes, + 'admin___emoji___list': CommonErrorTypes, + 'admin___emoji___remove-aliases-bulk': CommonErrorTypes, + 'admin___emoji___set-aliases-bulk': CommonErrorTypes, + 'admin___emoji___set-category-bulk': CommonErrorTypes, + 'admin___emoji___set-license-bulk': CommonErrorTypes, + 'admin___emoji___update': { + 'NO_SUCH_EMOJI': IdentifiableError['684dec9d-a8c2-4364-9aa8-456c49cb1dc8'], + 'NO_SUCH_FILE': IdentifiableError['14fb9fd9-0731-4e2f-aeb9-f09e4740333d'], + 'SAME_NAME_EMOJI_EXISTS': IdentifiableError['7180fe9d-1ee3-bff9-647d-fe9896d2ffb8'], + } & CommonErrorTypes, + 'admin___federation___delete-all-files': CommonErrorTypes, + 'admin___federation___refresh-remote-instance-metadata': CommonErrorTypes, + 'admin___federation___remove-all-following': CommonErrorTypes, + 'admin___federation___update-instance': CommonErrorTypes, + 'admin___get-index-stats': CommonErrorTypes, + 'admin___get-table-stats': CommonErrorTypes, + 'admin___get-user-ips': CommonErrorTypes, + 'admin___invite___create': { + 'INVALID_DATE_TIME': IdentifiableError['f1380b15-3760-4c6c-a1db-5c3aaf1cbd49'], + } & CommonErrorTypes, + 'admin___invite___list': CommonErrorTypes, + 'admin___promo___create': { + 'NO_SUCH_NOTE': IdentifiableError['ee449fbe-af2a-453b-9cae-cf2fe7c895fc'], + 'ALREADY_PROMOTED': IdentifiableError['ae427aa2-7a41-484f-a18c-2c1104051604'], + } & CommonErrorTypes, + 'admin___queue___clear': CommonErrorTypes, + 'admin___queue___deliver-delayed': CommonErrorTypes, + 'admin___queue___inbox-delayed': CommonErrorTypes, + 'admin___queue___promote': CommonErrorTypes, + 'admin___queue___stats': CommonErrorTypes, + 'admin___relays___add': { + 'INVALID_URL': IdentifiableError['fb8c92d3-d4e5-44e7-b3d4-800d5cef8b2c'], + } & CommonErrorTypes, + 'admin___relays___list': CommonErrorTypes, + 'admin___relays___remove': CommonErrorTypes, + 'admin___reset-password': CommonErrorTypes, + 'admin___resolve-abuse-user-report': { + 'NO_SUCH_ABUSE_REPORT': IdentifiableError['ac3794dd-2ce4-d878-e546-73c60c06b398'], + } & CommonErrorTypes, + 'admin___forward-abuse-user-report': { + 'NO_SUCH_ABUSE_REPORT': IdentifiableError['8763e21b-d9bc-40be-acf6-54c1a6986493'], + } & CommonErrorTypes, + 'admin___update-abuse-user-report': { + 'NO_SUCH_ABUSE_REPORT': IdentifiableError['15f51cf5-46d1-4b1d-a618-b35bcbed0662'], + } & CommonErrorTypes, + 'admin___send-email': CommonErrorTypes, + 'admin___server-info': CommonErrorTypes, + 'admin___show-moderation-logs': CommonErrorTypes, + 'admin___show-user': CommonErrorTypes, + 'admin___show-users': CommonErrorTypes, + 'admin___suspend-user': CommonErrorTypes, + 'admin___unsuspend-user': CommonErrorTypes, + 'admin___update-meta': CommonErrorTypes, + 'admin___delete-account': CommonErrorTypes, + 'admin___update-user-note': CommonErrorTypes, + 'admin___roles___create': CommonErrorTypes, + 'admin___roles___delete': { + 'NO_SUCH_ROLE': IdentifiableError['de0d6ecd-8e0a-4253-88ff-74bc89ae3d45'], + } & CommonErrorTypes, + 'admin___roles___list': CommonErrorTypes, + 'admin___roles___show': { + 'NO_SUCH_ROLE': IdentifiableError['07dc7d34-c0d8-49b7-96c6-db3ce64ee0b3'], + } & CommonErrorTypes, + 'admin___roles___update': { + 'NO_SUCH_ROLE': IdentifiableError['cd23ef55-09ad-428a-ac61-95a45e124b32'], + } & CommonErrorTypes, + 'admin___roles___assign': { + 'NO_SUCH_ROLE': IdentifiableError['6503c040-6af4-4ed9-bf07-f2dd16678eab'], + 'NO_SUCH_USER': IdentifiableError['558ea170-f653-4700-94d0-5a818371d0df'], + 'ACCESS_DENIED': IdentifiableError['25b5bc31-dc79-4ebd-9bd2-c84978fd052c'], + } & CommonErrorTypes, + 'admin___roles___unassign': { + 'NO_SUCH_ROLE': IdentifiableError['6e519036-a70d-4c76-b679-bc8fb18194e2'], + 'NO_SUCH_USER': IdentifiableError['2b730f78-1179-461b-88ad-d24c9af1a5ce'], + 'NOT_ASSIGNED': IdentifiableError['b9060ac7-5c94-4da4-9f55-2047c953df44'], + 'ACCESS_DENIED': IdentifiableError['24636eee-e8c1-493e-94b2-e16ad401e262'], + } & CommonErrorTypes, + 'admin___roles___update-default-policies': CommonErrorTypes, + 'admin___roles___users': { + 'NO_SUCH_ROLE': IdentifiableError['224eff5e-2488-4b18-b3e7-f50d94421648'], + } & CommonErrorTypes, + 'admin___system-webhook___create': CommonErrorTypes, + 'admin___system-webhook___delete': CommonErrorTypes, + 'admin___system-webhook___list': CommonErrorTypes, + 'admin___system-webhook___show': { + 'NO_SUCH_SYSTEM_WEBHOOK': IdentifiableError['38dd1ffe-04b4-6ff5-d8ba-4e6a6ae22c9d'], + } & CommonErrorTypes, + 'admin___system-webhook___update': CommonErrorTypes, + 'admin___system-webhook___test': { + 'NO_SUCH_WEBHOOK': IdentifiableError['0c52149c-e913-18f8-5dc7-74870bfe0cf9'], + 'RATE_LIMIT_EXCEEDED': IdentifiableError['d5826d14-3982-4d2e-8011-b9e9f02499ef'], + } & CommonErrorTypes, + 'announcements': CommonErrorTypes, + 'announcements___show': { + 'NO_SUCH_ANNOUNCEMENT': IdentifiableError['b57b5e1d-4f49-404a-9edb-46b00268f121'], + } & CommonErrorTypes, + 'antennas___create': { + 'NO_SUCH_USER_LIST': IdentifiableError['95063e93-a283-4b8b-9aa5-bcdb8df69a7f'], + 'TOO_MANY_ANTENNAS': IdentifiableError['faf47050-e8b5-438c-913c-db2b1576fde4'], + 'EMPTY_KEYWORD': IdentifiableError['53ee222e-1ddd-4f9a-92e5-9fb82ddb463a'], + } & CommonErrorTypes, + 'antennas___delete': { + 'NO_SUCH_ANTENNA': IdentifiableError['b34dcf9d-348f-44bb-99d0-6c9314cfe2df'], + } & CommonErrorTypes, + 'antennas___list': CommonErrorTypes, + 'antennas___notes': { + 'NO_SUCH_ANTENNA': IdentifiableError['850926e0-fd3b-49b6-b69a-b28a5dbd82fe'], + } & CommonErrorTypes, + 'antennas___show': { + 'NO_SUCH_ANTENNA': IdentifiableError['c06569fb-b025-4f23-b22d-1fcd20d2816b'], + } & CommonErrorTypes, + 'antennas___update': { + 'NO_SUCH_ANTENNA': IdentifiableError['10c673ac-8852-48eb-aa1f-f5b67f069290'], + 'NO_SUCH_USER_LIST': IdentifiableError['1c6b35c9-943e-48c2-81e4-2844989407f7'], + 'EMPTY_KEYWORD': IdentifiableError['721aaff6-4e1b-4d88-8de6-877fae9f68c4'], + } & CommonErrorTypes, + 'ap___get': { + 'RATE_LIMIT_EXCEEDED': IdentifiableError['d5826d14-3982-4d2e-8011-b9e9f02499ef'], + } & CommonErrorTypes, + 'ap___show': { + 'NO_SUCH_OBJECT': IdentifiableError['dc94d745-1262-4e63-a17d-fecaa57efc82'], + 'RATE_LIMIT_EXCEEDED': IdentifiableError['d5826d14-3982-4d2e-8011-b9e9f02499ef'], + } & CommonErrorTypes, + 'app___create': CommonErrorTypes, + 'app___show': { + 'NO_SUCH_APP': IdentifiableError['dce83913-2dc6-4093-8a7b-71dbb11718a3'], + } & CommonErrorTypes, + 'auth___accept': { + 'NO_SUCH_SESSION': IdentifiableError['9c72d8de-391a-43c1-9d06-08d29efde8df'], + } & CommonErrorTypes, + 'auth___session___generate': { + 'NO_SUCH_APP': IdentifiableError['92f93e63-428e-4f2f-a5a4-39e1407fe998'], + } & CommonErrorTypes, + 'auth___session___show': { + 'NO_SUCH_SESSION': IdentifiableError['bd72c97d-eba7-4adb-a467-f171b8847250'], + } & CommonErrorTypes, + 'auth___session___userkey': { + 'NO_SUCH_APP': IdentifiableError['fcab192a-2c5a-43b7-8ad8-9b7054d8d40d'], + 'NO_SUCH_SESSION': IdentifiableError['5b5a1503-8bc8-4bd0-8054-dc189e8cdcb3'], + 'PENDING_SESSION': IdentifiableError['8c8a4145-02cc-4cca-8e66-29ba60445a8e'], + } & CommonErrorTypes, + 'blocking___create': { + 'NO_SUCH_USER': IdentifiableError['7cc4f851-e2f1-4621-9633-ec9e1d00c01e'], + 'BLOCKEE_IS_YOURSELF': IdentifiableError['88b19138-f28d-42c0-8499-6a31bbd0fdc6'], + 'ALREADY_BLOCKING': IdentifiableError['787fed64-acb9-464a-82eb-afbd745b9614'], + 'RATE_LIMIT_EXCEEDED': IdentifiableError['d5826d14-3982-4d2e-8011-b9e9f02499ef'], + } & CommonErrorTypes, + 'blocking___delete': { + 'NO_SUCH_USER': IdentifiableError['8621d8bf-c358-4303-a066-5ea78610eb3f'], + 'BLOCKEE_IS_YOURSELF': IdentifiableError['06f6fac6-524b-473c-a354-e97a40ae6eac'], + 'NOT_BLOCKING': IdentifiableError['291b2efa-60c6-45c0-9f6a-045c8f9b02cd'], + 'RATE_LIMIT_EXCEEDED': IdentifiableError['d5826d14-3982-4d2e-8011-b9e9f02499ef'], + } & CommonErrorTypes, + 'blocking___list': CommonErrorTypes, + 'channels___create': { + 'NO_SUCH_FILE': IdentifiableError['cd1e9f3e-5a12-4ab4-96f6-5d0a2cc32050'], + 'RATE_LIMIT_EXCEEDED': IdentifiableError['d5826d14-3982-4d2e-8011-b9e9f02499ef'], + } & CommonErrorTypes, + 'channels___featured': CommonErrorTypes, + 'channels___follow': { + 'NO_SUCH_CHANNEL': IdentifiableError['c0031718-d573-4e85-928e-10039f1fbb68'], + } & CommonErrorTypes, + 'channels___followed': CommonErrorTypes, + 'channels___owned': CommonErrorTypes, + 'channels___show': { + 'NO_SUCH_CHANNEL': IdentifiableError['6f6c314b-7486-4897-8966-c04a66a02923'], + } & CommonErrorTypes, + 'channels___timeline': { + 'NO_SUCH_CHANNEL': IdentifiableError['4d0eeeba-a02c-4c3c-9966-ef60d38d2e7f'], + } & CommonErrorTypes, + 'channels___unfollow': { + 'NO_SUCH_CHANNEL': IdentifiableError['19959ee9-0153-4c51-bbd9-a98c49dc59d6'], + } & CommonErrorTypes, + 'channels___update': { + 'NO_SUCH_CHANNEL': IdentifiableError['f9c5467f-d492-4c3c-9a8d-a70dacc86512'], + 'ACCESS_DENIED': IdentifiableError['1fb7cb09-d46a-4fdf-b8df-057788cce513'], + 'NO_SUCH_FILE': IdentifiableError['e86c14a4-0da2-4032-8df3-e737a04c7f3b'], + } & CommonErrorTypes, + 'channels___favorite': { + 'NO_SUCH_CHANNEL': IdentifiableError['4938f5f3-6167-4c04-9149-6607b7542861'], + } & CommonErrorTypes, + 'channels___unfavorite': { + 'NO_SUCH_CHANNEL': IdentifiableError['353c68dd-131a-476c-aa99-88a345e83668'], + } & CommonErrorTypes, + 'channels___my-favorites': CommonErrorTypes, + 'channels___search': CommonErrorTypes, + 'charts___active-users': CommonErrorTypes, + 'charts___ap-request': CommonErrorTypes, + 'charts___drive': CommonErrorTypes, + 'charts___federation': CommonErrorTypes, + 'charts___instance': CommonErrorTypes, + 'charts___notes': CommonErrorTypes, + 'charts___user___drive': CommonErrorTypes, + 'charts___user___following': CommonErrorTypes, + 'charts___user___notes': CommonErrorTypes, + 'charts___user___pv': CommonErrorTypes, + 'charts___user___reactions': CommonErrorTypes, + 'charts___users': CommonErrorTypes, + 'clips___add-note': { + 'NO_SUCH_CLIP': IdentifiableError['d6e76cc0-a1b5-4c7c-a287-73fa9c716dcf'], + 'NO_SUCH_NOTE': IdentifiableError['fc8c0b49-c7a3-4664-a0a6-b418d386bb8b'], + 'ALREADY_CLIPPED': IdentifiableError['734806c4-542c-463a-9311-15c512803965'], + 'TOO_MANY_CLIP_NOTES': IdentifiableError['f0dba960-ff73-4615-8df4-d6ac5d9dc118'], + 'RATE_LIMIT_EXCEEDED': IdentifiableError['d5826d14-3982-4d2e-8011-b9e9f02499ef'], + } & CommonErrorTypes, + 'clips___remove-note': { + 'NO_SUCH_CLIP': IdentifiableError['b80525c6-97f7-49d7-a42d-ebccd49cfd52'], + 'NO_SUCH_NOTE': IdentifiableError['aff017de-190e-434b-893e-33a9ff5049d8'], + } & CommonErrorTypes, + 'clips___create': { + 'TOO_MANY_CLIPS': IdentifiableError['920f7c2d-6208-4b76-8082-e632020f5883'], + } & CommonErrorTypes, + 'clips___delete': { + 'NO_SUCH_CLIP': IdentifiableError['70ca08ba-6865-4630-b6fb-8494759aa754'], + } & CommonErrorTypes, + 'clips___list': CommonErrorTypes, + 'clips___notes': { + 'NO_SUCH_CLIP': IdentifiableError['1d7645e6-2b6d-4635-b0fe-fe22b0e72e00'], + } & CommonErrorTypes, + 'clips___show': { + 'NO_SUCH_CLIP': IdentifiableError['c3c5fe33-d62c-44d2-9ea5-d997703f5c20'], + } & CommonErrorTypes, + 'clips___update': { + 'NO_SUCH_CLIP': IdentifiableError['b4d92d70-b216-46fa-9a3f-a8c811699257'], + } & CommonErrorTypes, + 'clips___favorite': { + 'NO_SUCH_CLIP': IdentifiableError['4c2aaeae-80d8-4250-9606-26cb1fdb77a5'], + 'ALREADY_FAVORITED': IdentifiableError['92658936-c625-4273-8326-2d790129256e'], + } & CommonErrorTypes, + 'clips___unfavorite': { + 'NO_SUCH_CLIP': IdentifiableError['2603966e-b865-426c-94a7-af4a01241dc1'], + 'NOT_FAVORITED': IdentifiableError['90c3a9e8-b321-4dae-bf57-2bf79bbcc187'], + } & CommonErrorTypes, + 'clips___my-favorites': CommonErrorTypes, + 'drive': CommonErrorTypes, + 'drive___files': CommonErrorTypes, + 'drive___files___attached-notes': { + 'NO_SUCH_FILE': IdentifiableError['c118ece3-2e4b-4296-99d1-51756e32d232'], + } & CommonErrorTypes, + 'drive___files___check-existence': CommonErrorTypes, + 'drive___files___create': { + 'INVALID_FILE_NAME': IdentifiableError['f449b209-0c60-4e51-84d5-29486263bfd4'], + 'INAPPROPRIATE': IdentifiableError['bec5bd69-fba3-43c9-b4fb-2894b66ad5d2'], + 'NO_FREE_SPACE': IdentifiableError['d08dbc37-a6a9-463a-8c47-96c32ab5f064'], + 'RATE_LIMIT_EXCEEDED': IdentifiableError['d5826d14-3982-4d2e-8011-b9e9f02499ef'], + } & CommonErrorTypes, + 'drive___files___delete': { + 'NO_SUCH_FILE': IdentifiableError['908939ec-e52b-4458-b395-1025195cea58'], + 'ACCESS_DENIED': IdentifiableError['5eb8d909-2540-4970-90b8-dd6f86088121'], + } & CommonErrorTypes, + 'drive___files___find-by-hash': CommonErrorTypes, + 'drive___files___find': CommonErrorTypes, + 'drive___files___show': { + 'NO_SUCH_FILE': IdentifiableError['067bc436-2718-4795-b0fb-ecbe43949e31'], + 'ACCESS_DENIED': IdentifiableError['25b73c73-68b1-41d0-bad1-381cfdf6579f'], + } & CommonErrorTypes, + 'drive___files___update': { + 'INVALID_FILE_NAME': IdentifiableError['395e7156-f9f0-475e-af89-53c3c23080c2'], + 'NO_SUCH_FILE': IdentifiableError['e7778c7e-3af9-49cd-9690-6dbc3e6c972d'], + 'ACCESS_DENIED': IdentifiableError['01a53b27-82fc-445b-a0c1-b558465a8ed2'], + 'NO_SUCH_FOLDER': IdentifiableError['ea8fb7a5-af77-4a08-b608-c0218176cd73'], + 'RESTRICTED_BY_ROLE': IdentifiableError['7f59dccb-f465-75ab-5cf4-3ce44e3282f7'], + } & CommonErrorTypes, + 'drive___files___upload-from-url': { + 'RATE_LIMIT_EXCEEDED': IdentifiableError['d5826d14-3982-4d2e-8011-b9e9f02499ef'], + } & CommonErrorTypes, + 'drive___folders': CommonErrorTypes, + 'drive___folders___create': { + 'NO_SUCH_FOLDER': IdentifiableError['53326628-a00d-40a6-a3cd-8975105c0f95'], + 'RATE_LIMIT_EXCEEDED': IdentifiableError['d5826d14-3982-4d2e-8011-b9e9f02499ef'], + } & CommonErrorTypes, + 'drive___folders___delete': { + 'NO_SUCH_FOLDER': IdentifiableError['1069098f-c281-440f-b085-f9932edbe091'], + 'HAS_CHILD_FILES_OR_FOLDERS': IdentifiableError['b0fc8a17-963c-405d-bfbc-859a487295e1'], + } & CommonErrorTypes, + 'drive___folders___find': CommonErrorTypes, + 'drive___folders___show': { + 'NO_SUCH_FOLDER': IdentifiableError['d74ab9eb-bb09-4bba-bf24-fb58f761e1e9'], + } & CommonErrorTypes, + 'drive___folders___update': { + 'NO_SUCH_FOLDER': IdentifiableError['f7974dac-2c0d-4a27-926e-23583b28e98e'], + 'NO_SUCH_PARENT_FOLDER': IdentifiableError['ce104e3a-faaf-49d5-b459-10ff0cbbcaa1'], + 'RECURSIVE_NESTING': IdentifiableError['dbeb024837894013aed44279f9199740'], + } & CommonErrorTypes, + 'drive___stream': CommonErrorTypes, + 'email-address___available': CommonErrorTypes, + 'endpoint': CommonErrorTypes, + 'endpoints': CommonErrorTypes, + 'export-custom-emojis': { + 'RATE_LIMIT_EXCEEDED': IdentifiableError['d5826d14-3982-4d2e-8011-b9e9f02499ef'], + } & CommonErrorTypes, + 'federation___followers': CommonErrorTypes, + 'federation___following': CommonErrorTypes, + 'federation___instances': CommonErrorTypes, + 'federation___show-instance': CommonErrorTypes, + 'federation___update-remote-user': CommonErrorTypes, + 'federation___users': CommonErrorTypes, + 'federation___stats': CommonErrorTypes, + 'following___create': { + 'NO_SUCH_USER': IdentifiableError['fcd2eef9-a9b2-4c4f-8624-038099e90aa5'], + 'FOLLOWEE_IS_YOURSELF': IdentifiableError['26fbe7bb-a331-4857-af17-205b426669a9'], + 'ALREADY_FOLLOWING': IdentifiableError['35387507-38c7-4cb9-9197-300b93783fa0'], + 'BLOCKING': IdentifiableError['4e2206ec-aa4f-4960-b865-6c23ac38e2d9'], + 'BLOCKED': IdentifiableError['c4ab57cc-4e41-45e9-bfd9-584f61e35ce0'], + 'RATE_LIMIT_EXCEEDED': IdentifiableError['d5826d14-3982-4d2e-8011-b9e9f02499ef'], + } & CommonErrorTypes, + 'following___delete': { + 'NO_SUCH_USER': IdentifiableError['5b12c78d-2b28-4dca-99d2-f56139b42ff8'], + 'FOLLOWEE_IS_YOURSELF': IdentifiableError['d9e400b9-36b0-4808-b1d8-79e707f1296c'], + 'NOT_FOLLOWING': IdentifiableError['5dbf82f5-c92b-40b1-87d1-6c8c0741fd09'], + 'RATE_LIMIT_EXCEEDED': IdentifiableError['d5826d14-3982-4d2e-8011-b9e9f02499ef'], + } & CommonErrorTypes, + 'following___update': { + 'NO_SUCH_USER': IdentifiableError['14318698-f67e-492a-99da-5353a5ac52be'], + 'FOLLOWEE_IS_YOURSELF': IdentifiableError['4c4cbaf9-962a-463b-8418-a5e365dbf2eb'], + 'NOT_FOLLOWING': IdentifiableError['b8dc75cf-1cb5-46c9-b14b-5f1ffbd782c9'], + 'RATE_LIMIT_EXCEEDED': IdentifiableError['d5826d14-3982-4d2e-8011-b9e9f02499ef'], + } & CommonErrorTypes, + 'following___update-all': { + 'RATE_LIMIT_EXCEEDED': IdentifiableError['d5826d14-3982-4d2e-8011-b9e9f02499ef'], + } & CommonErrorTypes, + 'following___invalidate': { + 'NO_SUCH_USER': IdentifiableError['b77e6ae6-a3e5-40da-9cc8-c240115479cc'], + 'FOLLOWER_IS_YOURSELF': IdentifiableError['07dc03b9-03da-422d-885b-438313707662'], + 'NOT_FOLLOWING': IdentifiableError['918faac3-074f-41ae-9c43-ed5d2946770d'], + 'RATE_LIMIT_EXCEEDED': IdentifiableError['d5826d14-3982-4d2e-8011-b9e9f02499ef'], + } & CommonErrorTypes, + 'following___requests___accept': { + 'NO_SUCH_USER': IdentifiableError['66ce1645-d66c-46bb-8b79-96739af885bd'], + 'NO_FOLLOW_REQUEST': IdentifiableError['bcde4f8b-0913-4614-8881-614e522fb041'], + } & CommonErrorTypes, + 'following___requests___cancel': { + 'NO_SUCH_USER': IdentifiableError['4e68c551-fc4c-4e46-bb41-7d4a37bf9dab'], + 'FOLLOW_REQUEST_NOT_FOUND': IdentifiableError['089b125b-d338-482a-9a09-e2622ac9f8d4'], + } & CommonErrorTypes, + 'following___requests___list': CommonErrorTypes, + 'following___requests___reject': { + 'NO_SUCH_USER': IdentifiableError['abc2ffa6-25b2-4380-ba99-321ff3a94555'], + } & CommonErrorTypes, + 'gallery___featured': CommonErrorTypes, + 'gallery___popular': CommonErrorTypes, + 'gallery___posts': CommonErrorTypes, + 'gallery___posts___create': { + 'RATE_LIMIT_EXCEEDED': IdentifiableError['d5826d14-3982-4d2e-8011-b9e9f02499ef'], + } & CommonErrorTypes, + 'gallery___posts___delete': { + 'NO_SUCH_POST': IdentifiableError['ae52f367-4bd7-4ecd-afc6-5672fff427f5'], + 'ACCESS_DENIED': IdentifiableError['c86e09de-1c48-43ac-a435-1c7e42ed4496'], + } & CommonErrorTypes, + 'gallery___posts___like': { + 'NO_SUCH_POST': IdentifiableError['56c06af3-1287-442f-9701-c93f7c4a62ff'], + 'YOUR_POST': IdentifiableError['f78f1511-5ebc-4478-a888-1198d752da68'], + 'ALREADY_LIKED': IdentifiableError['40e9ed56-a59c-473a-bf3f-f289c54fb5a7'], + } & CommonErrorTypes, + 'gallery___posts___show': { + 'NO_SUCH_POST': IdentifiableError['1137bf14-c5b0-4604-85bb-5b5371b1cd45'], + } & CommonErrorTypes, + 'gallery___posts___unlike': { + 'NO_SUCH_POST': IdentifiableError['c32e6dd0-b555-4413-925e-b3757d19ed84'], + 'NOT_LIKED': IdentifiableError['e3e8e06e-be37-41f7-a5b4-87a8250288f0'], + } & CommonErrorTypes, + 'gallery___posts___update': { + 'RATE_LIMIT_EXCEEDED': IdentifiableError['d5826d14-3982-4d2e-8011-b9e9f02499ef'], + } & CommonErrorTypes, + 'get-online-users-count': CommonErrorTypes, + 'get-avatar-decorations': CommonErrorTypes, + 'hashtags___list': CommonErrorTypes, + 'hashtags___search': CommonErrorTypes, + 'hashtags___show': { + 'NO_SUCH_HASHTAG': IdentifiableError['110ee688-193e-4a3a-9ecf-c167b2e6981e'], + } & CommonErrorTypes, + 'hashtags___trend': CommonErrorTypes, + 'hashtags___users': CommonErrorTypes, + 'i': { + 'USER_IS_DELETED': IdentifiableError['e5b3b9f0-2b8f-4b9f-9c1f-8c5c1b2e1b1a'], + } & CommonErrorTypes, + 'i___2fa___done': CommonErrorTypes, + 'i___2fa___key-done': { + 'INCORRECT_PASSWORD': IdentifiableError['0d7ec6d2-e652-443e-a7bf-9ee9a0cd77b0'], + 'TWO_FACTOR_NOT_ENABLED': IdentifiableError['798d6847-b1ed-4f9c-b1f9-163c42655995'], + } & CommonErrorTypes, + 'i___2fa___password-less': { + 'NO_SECURITY_KEY': IdentifiableError['f9c54d7f-d4c2-4d3c-9a8g-a70daac86512'], + } & CommonErrorTypes, + 'i___2fa___register-key': { + 'USER_NOT_FOUND': IdentifiableError['652f899f-66d4-490e-993e-6606c8ec04c3'], + 'INCORRECT_PASSWORD': IdentifiableError['38769596-efe2-4faf-9bec-abbb3f2cd9ba'], + 'TWO_FACTOR_NOT_ENABLED': IdentifiableError['bf32b864-449b-47b8-974e-f9a5468546f1'], + } & CommonErrorTypes, + 'i___2fa___register': { + 'INCORRECT_PASSWORD': IdentifiableError['78d6c839-20c9-4c66-b90a-fc0542168b48'], + } & CommonErrorTypes, + 'i___2fa___update-key': { + 'NO_SUCH_KEY': IdentifiableError['f9c5467f-d492-4d3c-9a8g-a70dacc86512'], + 'ACCESS_DENIED': IdentifiableError['1fb7cb09-d46a-4fff-b8df-057708cce513'], + } & CommonErrorTypes, + 'i___2fa___remove-key': { + 'INCORRECT_PASSWORD': IdentifiableError['141c598d-a825-44c8-9173-cfb9d92be493'], + } & CommonErrorTypes, + 'i___2fa___unregister': { + 'INCORRECT_PASSWORD': IdentifiableError['7add0395-9901-4098-82f9-4f67af65f775'], + } & CommonErrorTypes, + 'i___apps': CommonErrorTypes, + 'i___authorized-apps': CommonErrorTypes, + 'i___claim-achievement': CommonErrorTypes, + 'i___change-password': CommonErrorTypes, + 'i___delete-account': CommonErrorTypes, + 'i___export-blocking': { + 'RATE_LIMIT_EXCEEDED': IdentifiableError['d5826d14-3982-4d2e-8011-b9e9f02499ef'], + } & CommonErrorTypes, + 'i___export-following': { + 'RATE_LIMIT_EXCEEDED': IdentifiableError['d5826d14-3982-4d2e-8011-b9e9f02499ef'], + } & CommonErrorTypes, + 'i___export-mute': { + 'RATE_LIMIT_EXCEEDED': IdentifiableError['d5826d14-3982-4d2e-8011-b9e9f02499ef'], + } & CommonErrorTypes, + 'i___export-notes': { + 'RATE_LIMIT_EXCEEDED': IdentifiableError['d5826d14-3982-4d2e-8011-b9e9f02499ef'], + } & CommonErrorTypes, + 'i___export-clips': { + 'RATE_LIMIT_EXCEEDED': IdentifiableError['d5826d14-3982-4d2e-8011-b9e9f02499ef'], + } & CommonErrorTypes, + 'i___export-favorites': { + 'RATE_LIMIT_EXCEEDED': IdentifiableError['d5826d14-3982-4d2e-8011-b9e9f02499ef'], + } & CommonErrorTypes, + 'i___export-user-lists': { + 'RATE_LIMIT_EXCEEDED': IdentifiableError['d5826d14-3982-4d2e-8011-b9e9f02499ef'], + } & CommonErrorTypes, + 'i___export-antennas': { + 'RATE_LIMIT_EXCEEDED': IdentifiableError['d5826d14-3982-4d2e-8011-b9e9f02499ef'], + } & CommonErrorTypes, + 'i___favorites': CommonErrorTypes, + 'i___gallery___likes': CommonErrorTypes, + 'i___gallery___posts': CommonErrorTypes, + 'i___import-blocking': { + 'NO_SUCH_FILE': IdentifiableError['ebb53e5f-6574-9c0c-0b92-7ca6def56d7e'], + 'UNEXPECTED_FILE_TYPE': IdentifiableError['b6fab7d6-d945-d67c-dfdb-32da1cd12cfe'], + 'TOO_BIG_FILE': IdentifiableError['b7fbf0b1-aeef-3b21-29ef-fadd4cb72ccf'], + 'EMPTY_FILE': IdentifiableError['6f3a4dcc-f060-a707-4950-806fbdbe60d6'], + 'RATE_LIMIT_EXCEEDED': IdentifiableError['d5826d14-3982-4d2e-8011-b9e9f02499ef'], + } & CommonErrorTypes, + 'i___import-following': { + 'NO_SUCH_FILE': IdentifiableError['b98644cf-a5ac-4277-a502-0b8054a709a3'], + 'UNEXPECTED_FILE_TYPE': IdentifiableError['660f3599-bce0-4f95-9dde-311fd841c183'], + 'TOO_BIG_FILE': IdentifiableError['dee9d4ed-ad07-43ed-8b34-b2856398bc60'], + 'EMPTY_FILE': IdentifiableError['31a1b42c-06f7-42ae-8a38-a661c5c9f691'], + 'RATE_LIMIT_EXCEEDED': IdentifiableError['d5826d14-3982-4d2e-8011-b9e9f02499ef'], + } & CommonErrorTypes, + 'i___import-muting': { + 'NO_SUCH_FILE': IdentifiableError['e674141e-bd2a-ba85-e616-aefb187c9c2a'], + 'UNEXPECTED_FILE_TYPE': IdentifiableError['568c6e42-c86c-ba09-c004-517f83f9f1a8'], + 'TOO_BIG_FILE': IdentifiableError['9b4ada6d-d7f7-0472-0713-4f558bd1ec9c'], + 'EMPTY_FILE': IdentifiableError['d2f12af1-e7b4-feac-86a3-519548f2728e'], + 'RATE_LIMIT_EXCEEDED': IdentifiableError['d5826d14-3982-4d2e-8011-b9e9f02499ef'], + } & CommonErrorTypes, + 'i___import-user-lists': { + 'NO_SUCH_FILE': IdentifiableError['ea9cc34f-c415-4bc6-a6fe-28ac40357049'], + 'UNEXPECTED_FILE_TYPE': IdentifiableError['a3c9edda-dd9b-4596-be6a-150ef813745c'], + 'TOO_BIG_FILE': IdentifiableError['ae6e7a22-971b-4b52-b2be-fc0b9b121fe9'], + 'EMPTY_FILE': IdentifiableError['99efe367-ce6e-4d44-93f8-5fae7b040356'], + 'RATE_LIMIT_EXCEEDED': IdentifiableError['d5826d14-3982-4d2e-8011-b9e9f02499ef'], + } & CommonErrorTypes, + 'i___import-antennas': { + 'NO_SUCH_FILE': IdentifiableError['3b71d086-c3fa-431c-b01d-ded65a777172'], + 'NO_SUCH_USER': IdentifiableError['e842c379-8ac7-4cf7-b07a-4d4de7e4671c'], + 'EMPTY_FILE': IdentifiableError['7f60115d-8d93-4b0f-bd0e-3815dcbb389f'], + 'TOO_MANY_ANTENNAS': IdentifiableError['600917d4-a4cb-4cc5-8ba8-7ac8ea3c7779'], + 'RATE_LIMIT_EXCEEDED': IdentifiableError['d5826d14-3982-4d2e-8011-b9e9f02499ef'], + } & CommonErrorTypes, + 'i___notifications': { + 'RATE_LIMIT_EXCEEDED': IdentifiableError['d5826d14-3982-4d2e-8011-b9e9f02499ef'], + } & CommonErrorTypes, + 'i___notifications-grouped': { + 'RATE_LIMIT_EXCEEDED': IdentifiableError['d5826d14-3982-4d2e-8011-b9e9f02499ef'], + } & CommonErrorTypes, + 'i___page-likes': CommonErrorTypes, + 'i___pages': CommonErrorTypes, + 'i___pin': { + 'NO_SUCH_NOTE': IdentifiableError['56734f8b-3928-431e-bf80-6ff87df40cb3'], + 'PIN_LIMIT_EXCEEDED': IdentifiableError['72dab508-c64d-498f-8740-a8eec1ba385a'], + 'ALREADY_PINNED': IdentifiableError['8b18c2b7-68fe-4edb-9892-c0cbaeb6c913'], + } & CommonErrorTypes, + 'i___read-all-unread-notes': CommonErrorTypes, + 'i___read-announcement': CommonErrorTypes, + 'i___regenerate-token': CommonErrorTypes, + 'i___registry___get-all': CommonErrorTypes, + 'i___registry___get-detail': { + 'NO_SUCH_KEY': IdentifiableError['97a1e8e7-c0f7-47d2-957a-92e61256e01a'], + } & CommonErrorTypes, + 'i___registry___get': { + 'NO_SUCH_KEY': IdentifiableError['ac3ed68a-62f0-422b-a7bc-d5e09e8f6a6a'], + } & CommonErrorTypes, + 'i___registry___keys-with-type': CommonErrorTypes, + 'i___registry___keys': CommonErrorTypes, + 'i___registry___remove': { + 'NO_SUCH_KEY': IdentifiableError['1fac4e8a-a6cd-4e39-a4a5-3a7e11f1b019'], + } & CommonErrorTypes, + 'i___registry___scopes-with-domain': CommonErrorTypes, + 'i___registry___set': CommonErrorTypes, + 'i___revoke-token': CommonErrorTypes, + 'i___signin-history': CommonErrorTypes, + 'i___unpin': { + 'NO_SUCH_NOTE': IdentifiableError['454170ce-9d63-4a43-9da1-ea10afe81e21'], + } & CommonErrorTypes, + 'i___update-email': { + 'INCORRECT_PASSWORD': IdentifiableError['e54c1d7e-e7d6-4103-86b6-0a95069b4ad3'], + 'UNAVAILABLE': IdentifiableError['a2defefb-f220-8849-0af6-17f816099323'], + 'EMAIL_REQUIRED': IdentifiableError['324c7a88-59f2-492f-903f-89134f93e47e'], + 'RATE_LIMIT_EXCEEDED': IdentifiableError['d5826d14-3982-4d2e-8011-b9e9f02499ef'], + } & CommonErrorTypes, + 'i___update': { + 'NO_SUCH_AVATAR': IdentifiableError['539f3a45-f215-4f81-a9a8-31293640207f'], + 'NO_SUCH_BANNER': IdentifiableError['0d8f5629-f210-41c2-9433-735831a58595'], + 'AVATAR_NOT_AN_IMAGE': IdentifiableError['f419f9f8-2f4d-46b1-9fb4-49d3a2fd7191'], + 'BANNER_NOT_AN_IMAGE': IdentifiableError['75aedb19-2afd-4e6d-87fc-67941256fa60'], + 'NO_SUCH_PAGE': IdentifiableError['8e01b590-7eb9-431b-a239-860e086c408e'], + 'INVALID_REGEXP': IdentifiableError['0d786918-10df-41cd-8f33-8dec7d9a89a5'], + 'TOO_MANY_MUTED_WORDS': IdentifiableError['010665b1-a211-42d2-bc64-8f6609d79785'], + 'NO_SUCH_USER': IdentifiableError['fcd2eef9-a9b2-4c4f-8624-038099e90aa5'], + 'URI_NULL': IdentifiableError['bf326f31-d430-4f97-9933-5d61e4d48a23'], + 'FORBIDDEN_TO_SET_YOURSELF': IdentifiableError['25c90186-4ab0-49c8-9bba-a1fa6c202ba4'], + 'RESTRICTED_BY_ROLE': IdentifiableError['8feff0ba-5ab5-585b-31f4-4df816663fad'], + 'YOUR_NAME_CONTAINS_PROHIBITED_WORDS': IdentifiableError['0b3f9f6a-2f4d-4b1f-9fb4-49d3a2fd7191'], + 'RATE_LIMIT_EXCEEDED': IdentifiableError['d5826d14-3982-4d2e-8011-b9e9f02499ef'], + } & CommonErrorTypes, + 'i___move': { + 'DESTINATION_ACCOUNT_FORBIDS': IdentifiableError['b5c90186-4ab0-49c8-9bba-a1f766282ba4'], + 'NOT_ROOT_FORBIDDEN': IdentifiableError['4362e8dc-731f-4ad8-a694-be2a88922a24'], + 'NO_SUCH_USER': IdentifiableError['fcd2eef9-a9b2-4c4f-8624-038099e90aa5'], + 'URI_NULL': IdentifiableError['95ba11b9-90e8-43a5-ba16-7acc1ab32e71'], + 'ALREADY_MOVED': IdentifiableError['b234a14e-9ebe-4581-8000-074b3c215962'], + 'RATE_LIMIT_EXCEEDED': IdentifiableError['d5826d14-3982-4d2e-8011-b9e9f02499ef'], + } & CommonErrorTypes, + 'i___webhooks___create': { + 'TOO_MANY_WEBHOOKS': IdentifiableError['87a9bb19-111e-4e37-81d3-a3e7426453b0'], + } & CommonErrorTypes, + 'i___webhooks___list': CommonErrorTypes, + 'i___webhooks___show': { + 'NO_SUCH_WEBHOOK': IdentifiableError['50f614d9-3047-4f7e-90d8-ad6b2d5fb098'], + } & CommonErrorTypes, + 'i___webhooks___update': { + 'NO_SUCH_WEBHOOK': IdentifiableError['fb0fea69-da18-45b1-828d-bd4fd1612518'], + } & CommonErrorTypes, + 'i___webhooks___delete': { + 'NO_SUCH_WEBHOOK': IdentifiableError['bae73e5a-5522-4965-ae19-3a8688e71d82'], + } & CommonErrorTypes, + 'i___webhooks___test': { + 'NO_SUCH_WEBHOOK': IdentifiableError['0c52149c-e913-18f8-5dc7-74870bfe0cf9'], + 'RATE_LIMIT_EXCEEDED': IdentifiableError['d5826d14-3982-4d2e-8011-b9e9f02499ef'], + } & CommonErrorTypes, + 'invite___create': { + 'EXCEEDED_LIMIT_OF_CREATE_INVITE_CODE': IdentifiableError['8b165dd3-6f37-4557-8db1-73175d63c641'], + } & CommonErrorTypes, + 'invite___delete': { + 'NO_SUCH_INVITE_CODE': IdentifiableError['cd4f9ae4-7854-4e3e-8df9-c296f051e634'], + 'CAN_NOT_DELETE_INVITE_CODE': IdentifiableError['ff17af39-000c-4d4e-abdf-848fa30fc1ce'], + 'ACCESS_DENIED': IdentifiableError['5eb8d909-2540-4970-90b8-dd6f86088121'], + } & CommonErrorTypes, + 'invite___list': CommonErrorTypes, + 'invite___limit': CommonErrorTypes, + 'meta': CommonErrorTypes, + 'emojis': CommonErrorTypes, + 'emoji': CommonErrorTypes, + 'miauth___gen-token': CommonErrorTypes, + 'mute___create': { + 'NO_SUCH_USER': IdentifiableError['6fef56f3-e765-4957-88e5-c6f65329b8a5'], + 'MUTEE_IS_YOURSELF': IdentifiableError['a4619cb2-5f23-484b-9301-94c903074e10'], + 'ALREADY_MUTING': IdentifiableError['7e7359cb-160c-4956-b08f-4d1c653cd007'], + 'RATE_LIMIT_EXCEEDED': IdentifiableError['d5826d14-3982-4d2e-8011-b9e9f02499ef'], + } & CommonErrorTypes, + 'mute___delete': { + 'NO_SUCH_USER': IdentifiableError['b851d00b-8ab1-4a56-8b1b-e24187cb48ef'], + 'MUTEE_IS_YOURSELF': IdentifiableError['f428b029-6b39-4d48-a1d2-cc1ae6dd5cf9'], + 'NOT_MUTING': IdentifiableError['5467d020-daa9-4553-81e1-135c0c35a96d'], + } & CommonErrorTypes, + 'mute___list': CommonErrorTypes, + 'renote-mute___create': { + 'NO_SUCH_USER': IdentifiableError['5e0a5dff-1e94-4202-87ae-4d9c89eb2271'], + 'MUTEE_IS_YOURSELF': IdentifiableError['37285718-52f7-4aef-b7de-c38b8e8a8420'], + 'ALREADY_MUTING': IdentifiableError['ccfecbe4-1f1c-4fc2-8a3d-c3ffee61cb7b'], + 'RATE_LIMIT_EXCEEDED': IdentifiableError['d5826d14-3982-4d2e-8011-b9e9f02499ef'], + } & CommonErrorTypes, + 'renote-mute___delete': { + 'NO_SUCH_USER': IdentifiableError['9b6728cf-638c-4aa1-bedb-e07d8101474d'], + 'MUTEE_IS_YOURSELF': IdentifiableError['619b1314-0850-4597-a242-e245f3da42af'], + 'NOT_MUTING': IdentifiableError['2e4ef874-8bf0-4b4b-b069-4598f6d05817'], + } & CommonErrorTypes, + 'renote-mute___list': CommonErrorTypes, + 'my___apps': CommonErrorTypes, + 'notes': CommonErrorTypes, + 'notes___children': CommonErrorTypes, + 'notes___clips': { + 'NO_SUCH_NOTE': IdentifiableError['47db1a1c-b0af-458d-8fb4-986e4efafe1e'], + } & CommonErrorTypes, + 'notes___conversation': { + 'NO_SUCH_NOTE': IdentifiableError['e1035875-9551-45ec-afa8-1ded1fcb53c8'], + } & CommonErrorTypes, + 'notes___create': { + 'NO_SUCH_RENOTE_TARGET': IdentifiableError['b5c90186-4ab0-49c8-9bba-a1f76c282ba4'], + 'CANNOT_RENOTE_TO_A_PURE_RENOTE': IdentifiableError['fd4cc33e-2a37-48dd-99cc-9b806eb2031a'], + 'CANNOT_RENOTE_DUE_TO_VISIBILITY': IdentifiableError['be9529e9-fe72-4de0-ae43-0b363c4938af'], + 'NO_SUCH_REPLY_TARGET': IdentifiableError['749ee0f6-d3da-459a-bf02-282e2da4292c'], + 'CANNOT_REPLY_TO_AN_INVISIBLE_NOTE': IdentifiableError['b98980fa-3780-406c-a935-b6d0eeee10d1'], + 'CANNOT_REPLY_TO_A_PURE_RENOTE': IdentifiableError['3ac74a84-8fd5-4bb0-870f-01804f82ce15'], + 'CANNOT_REPLY_TO_SPECIFIED_VISIBILITY_NOTE_WITH_EXTENDED_VISIBILITY': IdentifiableError['ed940410-535c-4d5e-bfa3-af798671e93c'], + 'CANNOT_CREATE_ALREADY_EXPIRED_POLL': IdentifiableError['04da457d-b083-4055-9082-955525eda5a5'], + 'NO_SUCH_CHANNEL': IdentifiableError['b1653923-5453-4edc-b786-7c4f39bb0bbb'], + 'YOU_HAVE_BEEN_BLOCKED': IdentifiableError['b390d7e1-8a5e-46ed-b625-06271cafd3d3'], + 'NO_SUCH_FILE': IdentifiableError['b6992544-63e7-67f0-fa7f-32444b1b5306'], + 'CANNOT_RENOTE_OUTSIDE_OF_CHANNEL': IdentifiableError['33510210-8452-094c-6227-4a6c05d99f00'], + 'CONTAINS_PROHIBITED_WORDS': IdentifiableError['aa6e01d3-a85c-669d-758a-76aab43af334'], + 'CONTAINS_TOO_MANY_MENTIONS': IdentifiableError['4de0363a-3046-481b-9b0f-feff3e211025'], + 'RATE_LIMIT_EXCEEDED': IdentifiableError['d5826d14-3982-4d2e-8011-b9e9f02499ef'], + } & CommonErrorTypes, + 'notes___delete': { + 'NO_SUCH_NOTE': IdentifiableError['490be23f-8c1f-4796-819f-94cb4f9d1630'], + 'ACCESS_DENIED': IdentifiableError['fe8d7103-0ea8-4ec3-814d-f8b401dc69e9'], + 'RATE_LIMIT_EXCEEDED': IdentifiableError['d5826d14-3982-4d2e-8011-b9e9f02499ef'], + } & CommonErrorTypes, + 'notes___favorites___create': { + 'NO_SUCH_NOTE': IdentifiableError['6dd26674-e060-4816-909a-45ba3f4da458'], + 'ALREADY_FAVORITED': IdentifiableError['a402c12b-34dd-41d2-97d8-4d2ffd96a1a6'], + 'RATE_LIMIT_EXCEEDED': IdentifiableError['d5826d14-3982-4d2e-8011-b9e9f02499ef'], + } & CommonErrorTypes, + 'notes___favorites___delete': { + 'NO_SUCH_NOTE': IdentifiableError['80848a2c-398f-4343-baa9-df1d57696c56'], + 'NOT_FAVORITED': IdentifiableError['b625fc69-635e-45e9-86f4-dbefbef35af5'], + } & CommonErrorTypes, + 'notes___featured': CommonErrorTypes, + 'notes___global-timeline': { + 'GTL_DISABLED': IdentifiableError['0332fc13-6ab2-4427-ae80-a9fadffd1a6b'], + } & CommonErrorTypes, + 'notes___hybrid-timeline': { + 'STL_DISABLED': IdentifiableError['620763f4-f621-4533-ab33-0577a1a3c342'], + 'BOTH_WITH_REPLIES_AND_WITH_FILES': IdentifiableError['dfaa3eb7-8002-4cb7-bcc4-1095df46656f'], + } & CommonErrorTypes, + 'notes___local-timeline': { + 'LTL_DISABLED': IdentifiableError['45a6eb02-7695-4393-b023-dd3be9aaaefd'], + 'BOTH_WITH_REPLIES_AND_WITH_FILES': IdentifiableError['dd9c8400-1cb5-4eef-8a31-200c5f933793'], + } & CommonErrorTypes, + 'notes___mentions': CommonErrorTypes, + 'notes___polls___recommendation': CommonErrorTypes, + 'notes___polls___vote': { + 'NO_SUCH_NOTE': IdentifiableError['ecafbd2e-c283-4d6d-aecb-1a0a33b75396'], + 'NO_POLL': IdentifiableError['5f979967-52d9-4314-a911-1c673727f92f'], + 'INVALID_CHOICE': IdentifiableError['e0cc9a04-f2e8-41e4-a5f1-4127293260cc'], + 'ALREADY_VOTED': IdentifiableError['0963fc77-efac-419b-9424-b391608dc6d8'], + 'ALREADY_EXPIRED': IdentifiableError['1022a357-b085-4054-9083-8f8de358337e'], + 'YOU_HAVE_BEEN_BLOCKED': IdentifiableError['85a5377e-b1e9-4617-b0b9-5bea73331e49'], + } & CommonErrorTypes, + 'notes___reactions': { + 'NO_SUCH_NOTE': IdentifiableError['263fff3d-d0e1-4af4-bea7-8408059b451a'], + } & CommonErrorTypes, + 'notes___reactions___create': { + 'NO_SUCH_NOTE': IdentifiableError['033d0620-5bfe-4027-965d-980b0c85a3ea'], + 'ALREADY_REACTED': IdentifiableError['71efcf98-86d6-4e2b-b2ad-9d032369366b'], + 'YOU_HAVE_BEEN_BLOCKED': IdentifiableError['20ef5475-9f38-4e4c-bd33-de6d979498ec'], + 'CANNOT_REACT_TO_RENOTE': IdentifiableError['eaccdc08-ddef-43fe-908f-d108faad57f5'], + } & CommonErrorTypes, + 'notes___reactions___delete': { + 'NO_SUCH_NOTE': IdentifiableError['764d9fce-f9f2-4a0e-92b1-6ceac9a7ad37'], + 'NOT_REACTED': IdentifiableError['92f4426d-4196-4125-aa5b-02943e2ec8fc'], + 'RATE_LIMIT_EXCEEDED': IdentifiableError['d5826d14-3982-4d2e-8011-b9e9f02499ef'], + } & CommonErrorTypes, + 'notes___renotes': { + 'NO_SUCH_NOTE': IdentifiableError['12908022-2e21-46cd-ba6a-3edaf6093f46'], + } & CommonErrorTypes, + 'notes___replies': CommonErrorTypes, + 'notes___search-by-tag': CommonErrorTypes, + 'notes___search': { + 'UNAVAILABLE': IdentifiableError['0b44998d-77aa-4427-80d0-d2c9b8523011'], + } & CommonErrorTypes, + 'notes___show': { + 'NO_SUCH_NOTE': IdentifiableError['24fcbfc6-2e37-42b6-8388-c29b3861a08d'], + } & CommonErrorTypes, + 'notes___state': CommonErrorTypes, + 'notes___thread-muting___create': { + 'NO_SUCH_NOTE': IdentifiableError['5ff67ada-ed3b-2e71-8e87-a1a421e177d2'], + 'RATE_LIMIT_EXCEEDED': IdentifiableError['d5826d14-3982-4d2e-8011-b9e9f02499ef'], + } & CommonErrorTypes, + 'notes___thread-muting___delete': { + 'NO_SUCH_NOTE': IdentifiableError['bddd57ac-ceb3-b29d-4334-86ea5fae481a'], + } & CommonErrorTypes, + 'notes___timeline': CommonErrorTypes, + 'notes___translate': { + 'UNAVAILABLE': IdentifiableError['50a70314-2d8a-431b-b433-efa5cc56444c'], + 'NO_SUCH_NOTE': IdentifiableError['bea9b03f-36e0-49c5-a4db-627a029f8971'], + 'CANNOT_TRANSLATE_INVISIBLE_NOTE': IdentifiableError['ea29f2ca-c368-43b3-aaf1-5ac3e74bbe5d'], + } & CommonErrorTypes, + 'notes___unrenote': { + 'NO_SUCH_NOTE': IdentifiableError['efd4a259-2442-496b-8dd7-b255aa1a160f'], + 'RATE_LIMIT_EXCEEDED': IdentifiableError['d5826d14-3982-4d2e-8011-b9e9f02499ef'], + } & CommonErrorTypes, + 'notes___user-list-timeline': { + 'NO_SUCH_LIST': IdentifiableError['8fb1fbd5-e476-4c37-9fb0-43d55b63a2ff'], + } & CommonErrorTypes, + 'notifications___create': { + 'RATE_LIMIT_EXCEEDED': IdentifiableError['d5826d14-3982-4d2e-8011-b9e9f02499ef'], + } & CommonErrorTypes, + 'notifications___flush': CommonErrorTypes, + 'notifications___mark-all-as-read': CommonErrorTypes, + 'notifications___test-notification': { + 'RATE_LIMIT_EXCEEDED': IdentifiableError['d5826d14-3982-4d2e-8011-b9e9f02499ef'], + } & CommonErrorTypes, + 'page-push': { + 'NO_SUCH_PAGE': IdentifiableError['4a13ad31-6729-46b4-b9af-e86b265c2e74'], + } & CommonErrorTypes, + 'pages___create': { + 'NO_SUCH_FILE': IdentifiableError['b7b97489-0f66-4b12-a5ff-b21bd63f6e1c'], + 'NAME_ALREADY_EXISTS': IdentifiableError['4650348e-301c-499a-83c9-6aa988c66bc1'], + 'RATE_LIMIT_EXCEEDED': IdentifiableError['d5826d14-3982-4d2e-8011-b9e9f02499ef'], + } & CommonErrorTypes, + 'pages___delete': { + 'NO_SUCH_PAGE': IdentifiableError['eb0c6e1d-d519-4764-9486-52a7e1c6392a'], + 'ACCESS_DENIED': IdentifiableError['8b741b3e-2c22-44b3-a15f-29949aa1601e'], + } & CommonErrorTypes, + 'pages___featured': CommonErrorTypes, + 'pages___like': { + 'NO_SUCH_PAGE': IdentifiableError['cc98a8a2-0dc3-4123-b198-62c71df18ed3'], + 'YOUR_PAGE': IdentifiableError['28800466-e6db-40f2-8fae-bf9e82aa92b8'], + 'ALREADY_LIKED': IdentifiableError['d4c1edbe-7da2-4eae-8714-1acfd2d63941'], + } & CommonErrorTypes, + 'pages___show': { + 'NO_SUCH_PAGE': IdentifiableError['222120c0-3ead-4528-811b-b96f233388d7'], + } & CommonErrorTypes, + 'pages___unlike': { + 'NO_SUCH_PAGE': IdentifiableError['a0d41e20-1993-40bd-890e-f6e560ae648e'], + 'NOT_LIKED': IdentifiableError['f5e586b0-ce93-4050-b0e3-7f31af5259ee'], + } & CommonErrorTypes, + 'pages___update': { + 'NO_SUCH_PAGE': IdentifiableError['21149b9e-3616-4778-9592-c4ce89f5a864'], + 'ACCESS_DENIED': IdentifiableError['3c15cd52-3b4b-4274-967d-6456fc4f792b'], + 'NO_SUCH_FILE': IdentifiableError['cfc23c7c-3887-490e-af30-0ed576703c82'], + 'NAME_ALREADY_EXISTS': IdentifiableError['2298a392-d4a1-44c5-9ebb-ac1aeaa5a9ab'], + 'RATE_LIMIT_EXCEEDED': IdentifiableError['d5826d14-3982-4d2e-8011-b9e9f02499ef'], + } & CommonErrorTypes, + 'flash___create': { + 'RATE_LIMIT_EXCEEDED': IdentifiableError['d5826d14-3982-4d2e-8011-b9e9f02499ef'], + } & CommonErrorTypes, + 'flash___delete': { + 'NO_SUCH_FLASH': IdentifiableError['de1623ef-bbb3-4289-a71e-14cfa83d9740'], + 'ACCESS_DENIED': IdentifiableError['1036ad7b-9f92-4fff-89c3-0e50dc941704'], + } & CommonErrorTypes, + 'flash___featured': CommonErrorTypes, + 'flash___like': { + 'NO_SUCH_FLASH': IdentifiableError['c07c1491-9161-4c5c-9d75-01906f911f73'], + 'YOUR_FLASH': IdentifiableError['3fd8a0e7-5955-4ba9-85bb-bf3e0c30e13b'], + 'ALREADY_LIKED': IdentifiableError['010065cf-ad43-40df-8067-abff9f4686e3'], + } & CommonErrorTypes, + 'flash___show': { + 'NO_SUCH_FLASH': IdentifiableError['f0d34a1a-d29a-401d-90ba-1982122b5630'], + } & CommonErrorTypes, + 'flash___unlike': { + 'NO_SUCH_FLASH': IdentifiableError['afe8424a-a69e-432d-a5f2-2f0740c62410'], + 'NOT_LIKED': IdentifiableError['755f25a7-9871-4f65-9f34-51eaad9ae0ac'], + } & CommonErrorTypes, + 'flash___update': { + 'NO_SUCH_FLASH': IdentifiableError['611e13d2-309e-419a-a5e4-e0422da39b02'], + 'ACCESS_DENIED': IdentifiableError['08e60c88-5948-478e-a132-02ec701d67b2'], + 'RATE_LIMIT_EXCEEDED': IdentifiableError['d5826d14-3982-4d2e-8011-b9e9f02499ef'], + } & CommonErrorTypes, + 'flash___my': CommonErrorTypes, + 'flash___my-likes': CommonErrorTypes, + 'ping': CommonErrorTypes, + 'pinned-users': CommonErrorTypes, + 'promo___read': { + 'NO_SUCH_NOTE': IdentifiableError['d785b897-fcd3-4fe9-8fc3-b85c26e6c932'], + } & CommonErrorTypes, + 'roles___list': CommonErrorTypes, + 'roles___show': { + 'NO_SUCH_ROLE': IdentifiableError['de5502bf-009a-4639-86c1-fec349e46dcb'], + } & CommonErrorTypes, + 'roles___users': { + 'NO_SUCH_ROLE': IdentifiableError['30aaaee3-4792-48dc-ab0d-cf501a575ac5'], + } & CommonErrorTypes, + 'roles___notes': { + 'NO_SUCH_ROLE': IdentifiableError['eb70323a-df61-4dd4-ad90-89c83c7cf26e'], + } & CommonErrorTypes, + 'request-reset-password': { + 'RATE_LIMIT_EXCEEDED': IdentifiableError['d5826d14-3982-4d2e-8011-b9e9f02499ef'], + } & CommonErrorTypes, + 'reset-db': CommonErrorTypes, + 'reset-password': CommonErrorTypes, + 'server-info': CommonErrorTypes, + 'stats': CommonErrorTypes, + 'sw___show-registration': CommonErrorTypes, + 'sw___update-registration': { + 'NO_SUCH_REGISTRATION': IdentifiableError[' b09d8066-8064-5613-efb6-0e963b21d012'], + } & CommonErrorTypes, + 'sw___register': CommonErrorTypes, + 'sw___unregister': CommonErrorTypes, + 'test': CommonErrorTypes, + 'username___available': CommonErrorTypes, + 'users': CommonErrorTypes, + 'users___clips': CommonErrorTypes, + 'users___followers': { + 'NO_SUCH_USER': IdentifiableError['27fa5435-88ab-43de-9360-387de88727cd'], + 'FORBIDDEN': IdentifiableError['3c6a84db-d619-26af-ca14-06232a21df8a'], + } & CommonErrorTypes, + 'users___following': { + 'NO_SUCH_USER': IdentifiableError['63e4aba4-4156-4e53-be25-c9559e42d71b'], + 'FORBIDDEN': IdentifiableError['f6cdb0df-c19f-ec5c-7dbb-0ba84a1f92ba'], + 'BIRTHDAY_DATE_FORMAT_INVALID': IdentifiableError['a2b007b9-4782-4eba-abd3-93b05ed4130d'], + } & CommonErrorTypes, + 'users___gallery___posts': CommonErrorTypes, + 'users___get-frequently-replied-users': { + 'NO_SUCH_USER': IdentifiableError['e6965129-7b2a-40a4-bae2-cd84cd434822'], + } & CommonErrorTypes, + 'users___featured-notes': CommonErrorTypes, + 'users___lists___create': { + 'TOO_MANY_USERLISTS': IdentifiableError['0cf21a28-7715-4f39-a20d-777bfdb8d138'], + } & CommonErrorTypes, + 'users___lists___delete': { + 'NO_SUCH_LIST': IdentifiableError['78436795-db79-42f5-b1e2-55ea2cf19166'], + } & CommonErrorTypes, + 'users___lists___list': { + 'NO_SUCH_USER': IdentifiableError['a8af4a82-0980-4cc4-a6af-8b0ffd54465e'], + 'REMOTE_USER_NOT_ALLOWED': IdentifiableError['53858f1b-3315-4a01-81b7-db9b48d4b79a'], + } & CommonErrorTypes, + 'users___lists___pull': { + 'NO_SUCH_LIST': IdentifiableError['7f44670e-ab16-43b8-b4c1-ccd2ee89cc02'], + 'NO_SUCH_USER': IdentifiableError['588e7f72-c744-4a61-b180-d354e912bda2'], + } & CommonErrorTypes, + 'users___lists___push': { + 'NO_SUCH_LIST': IdentifiableError['2214501d-ac96-4049-b717-91e42272a711'], + 'NO_SUCH_USER': IdentifiableError['a89abd3d-f0bc-4cce-beb1-2f446f4f1e6a'], + 'ALREADY_ADDED': IdentifiableError['1de7c884-1595-49e9-857e-61f12f4d4fc5'], + 'YOU_HAVE_BEEN_BLOCKED': IdentifiableError['990232c5-3f9d-4d83-9f3f-ef27b6332a4b'], + 'TOO_MANY_USERS': IdentifiableError['2dd9752e-a338-413d-8eec-41814430989b'], + 'RATE_LIMIT_EXCEEDED': IdentifiableError['d5826d14-3982-4d2e-8011-b9e9f02499ef'], + } & CommonErrorTypes, + 'users___lists___show': { + 'NO_SUCH_LIST': IdentifiableError['7bc05c21-1d7a-41ae-88f1-66820f4dc686'], + } & CommonErrorTypes, + 'users___lists___favorite': { + 'NO_SUCH_USER_LIST': IdentifiableError['7dbaf3cf-7b42-4b8f-b431-b3919e580dbe'], + 'ALREADY_FAVORITED': IdentifiableError['6425bba0-985b-461e-af1b-518070e72081'], + } & CommonErrorTypes, + 'users___lists___unfavorite': { + 'NO_SUCH_USER_LIST': IdentifiableError['baedb33e-76b8-4b0c-86a8-9375c0a7b94b'], + 'ALREADY_FAVORITED': IdentifiableError['835c4b27-463d-4cfa-969b-a9058678d465'], + } & CommonErrorTypes, + 'users___lists___update': { + 'NO_SUCH_LIST': IdentifiableError['796666fe-3dff-4d39-becb-8a5932c1d5b7'], + } & CommonErrorTypes, + 'users___lists___create-from-public': { + 'TOO_MANY_USERLISTS': IdentifiableError['e9c105b2-c595-47de-97fb-7f7c2c33e92f'], + 'NO_SUCH_LIST': IdentifiableError['9292f798-6175-4f7d-93f4-b6742279667d'], + 'NO_SUCH_USER': IdentifiableError['13c457db-a8cb-4d88-b70a-211ceeeabb5f'], + 'ALREADY_ADDED': IdentifiableError['c3ad6fdb-692b-47ee-a455-7bd12c7af615'], + 'YOU_HAVE_BEEN_BLOCKED': IdentifiableError['a2497f2a-2389-439c-8626-5298540530f4'], + 'TOO_MANY_USERS': IdentifiableError['1845ea77-38d1-426e-8e4e-8b83b24f5bd7'], + } & CommonErrorTypes, + 'users___lists___update-membership': { + 'NO_SUCH_LIST': IdentifiableError['7f44670e-ab16-43b8-b4c1-ccd2ee89cc02'], + 'NO_SUCH_USER': IdentifiableError['588e7f72-c744-4a61-b180-d354e912bda2'], + } & CommonErrorTypes, + 'users___lists___get-memberships': { + 'NO_SUCH_LIST': IdentifiableError['7bc05c21-1d7a-41ae-88f1-66820f4dc686'], + } & CommonErrorTypes, + 'users___notes': { + 'NO_SUCH_USER': IdentifiableError['27e494ba-2ac2-48e8-893b-10d4d8c2387b'], + 'BOTH_WITH_REPLIES_AND_WITH_FILES': IdentifiableError['91c8cb9f-36ed-46e7-9ca2-7df96ed6e222'], + } & CommonErrorTypes, + 'users___pages': CommonErrorTypes, + 'users___flashs': CommonErrorTypes, + 'users___reactions': { + 'REACTIONS_NOT_PUBLIC': IdentifiableError['673a7dd2-6924-1093-e0c0-e68456ceae5c'], + 'IS_REMOTE_USER': IdentifiableError['6b95fa98-8cf9-2350-e284-f0ffdb54a805'], + } & CommonErrorTypes, + 'users___recommendation': CommonErrorTypes, + 'users___relation': CommonErrorTypes, + 'users___report-abuse': { + 'NO_SUCH_USER': IdentifiableError['1acefcb5-0959-43fd-9685-b48305736cb5'], + 'CANNOT_REPORT_YOURSELF': IdentifiableError['1e13149e-b1e8-43cf-902e-c01dbfcb202f'], + 'CANNOT_REPORT_THE_ADMIN': IdentifiableError['35e166f5-05fb-4f87-a2d5-adb42676d48f'], + } & CommonErrorTypes, + 'users___search-by-username-and-host': CommonErrorTypes, + 'users___search': CommonErrorTypes, + 'users___show': { + 'FAILED_TO_RESOLVE_REMOTE_USER': IdentifiableError['ef7b9be4-9cba-4e6f-ab41-90ed171c7d3c'], + 'NO_SUCH_USER': IdentifiableError['4362f8dc-731f-4ad8-a694-be5a88922a24'], + } & CommonErrorTypes, + 'users___achievements': CommonErrorTypes, + 'users___update-memo': { + 'NO_SUCH_USER': IdentifiableError['6fef56f3-e765-4957-88e5-c6f65329b8a5'], + } & CommonErrorTypes, + 'fetch-rss': CommonErrorTypes, + 'fetch-external-resources': { + 'EXT_RESOURCE_RETURNED_INVALID_SCHEMA': IdentifiableError['bb774091-7a15-4a70-9dc5-6ac8cf125856'], + 'EXT_RESOURCE_HASH_DIDNT_MATCH': IdentifiableError['693ba8ba-b486-40df-a174-72f8279b56a4'], + 'RATE_LIMIT_EXCEEDED': IdentifiableError['d5826d14-3982-4d2e-8011-b9e9f02499ef'], + } & CommonErrorTypes, + 'retention': CommonErrorTypes, + 'bubble-game___register': { + 'INVALID_SEED': IdentifiableError['eb627bc7-574b-4a52-a860-3c3eae772b88'], + 'RATE_LIMIT_EXCEEDED': IdentifiableError['d5826d14-3982-4d2e-8011-b9e9f02499ef'], + } & CommonErrorTypes, + 'bubble-game___ranking': CommonErrorTypes, + 'reversi___cancel-match': CommonErrorTypes, + 'reversi___games': CommonErrorTypes, + 'reversi___match': { + 'NO_SUCH_USER': IdentifiableError['0b4f0559-b484-4e31-9581-3f73cee89b28'], + 'TARGET_IS_YOURSELF': IdentifiableError['96fd7bd6-d2bc-426c-a865-d055dcd2828e'], + } & CommonErrorTypes, + 'reversi___invitations': CommonErrorTypes, + 'reversi___show-game': { + 'NO_SUCH_GAME': IdentifiableError['f13a03db-fae1-46c9-87f3-43c8165419e1'], + } & CommonErrorTypes, + 'reversi___surrender': { + 'NO_SUCH_GAME': IdentifiableError['ace0b11f-e0a6-4076-a30d-e8284c81b2df'], + 'ALREADY_ENDED': IdentifiableError['6c2ad4a6-cbf1-4a5b-b187-b772826cfc6d'], + 'ACCESS_DENIED': IdentifiableError['6e04164b-a992-4c93-8489-2123069973e1'], + } & CommonErrorTypes, + 'reversi___verify': { + 'NO_SUCH_GAME': IdentifiableError['8fb05624-b525-43dd-90f7-511852bdfeee'], + } & CommonErrorTypes, +}; + +export type CommonErrorTypes = { + 'INVALID_PARAM': IdentifiableError['3d81ceae-475f-4600-b2a8-2bc116157532'], + 'CREDENTIAL_REQUIRED': IdentifiableError['1384574d-a912-4b81-8601-c7b1c4085df1'], + 'AUTHENTICATION_FAILED': IdentifiableError['b0a7f5f8-dc2f-4171-b91f-de88ad238e14'], + 'I_AM_AI': IdentifiableError['60c46cd1-f23a-46b1-bebe-5d2b73951a84'], + 'INTERNAL_ERROR': IdentifiableError['5d37dbcb-891e-41ca-a3d6-e690c97775ac'], +}; + +export type IdentifiableError = { + '3d81ceae-475f-4600-b2a8-2bc116157532': {'message':'Invalid param.', 'code':'INVALID_PARAM', 'id':'3d81ceae-475f-4600-b2a8-2bc116157532', [x: string]: any }, + '1384574d-a912-4b81-8601-c7b1c4085df1': {'message':'Credential required.', 'code':'CREDENTIAL_REQUIRED', 'id':'1384574d-a912-4b81-8601-c7b1c4085df1', [x: string]: any }, + 'b0a7f5f8-dc2f-4171-b91f-de88ad238e14': {'message':'Authentication failed. Please ensure your token is correct.', 'code':'AUTHENTICATION_FAILED', 'id':'b0a7f5f8-dc2f-4171-b91f-de88ad238e14', [x: string]: any }, + '60c46cd1-f23a-46b1-bebe-5d2b73951a84': {'message':'You sent a request to Ai-chan, Misskey\'s showgirl, instead of the server.', 'code':'I_AM_AI', 'id':'60c46cd1-f23a-46b1-bebe-5d2b73951a84', [x: string]: any }, + '5d37dbcb-891e-41ca-a3d6-e690c97775ac': {'message':'Internal error occurred. Please contact us if the error persists.', 'code':'INTERNAL_ERROR', 'id':'5d37dbcb-891e-41ca-a3d6-e690c97775ac', [x: string]: any }, + '013de6a8-f757-04cb-4d73-cc2a7e3368e4': {'message':'No such recipient.', 'code':'NO_SUCH_RECIPIENT', 'id':'013de6a8-f757-04cb-4d73-cc2a7e3368e4', 'kind':'server', 'httpStatusCode':404, [x: string]: any }, + '348bb8ae-575a-6fe9-4327-5811999def8f': {'message':'If "method" is email, "userId" must be set.', 'code':'CORRELATION_CHECK_EMAIL', 'id':'348bb8ae-575a-6fe9-4327-5811999def8f', 'httpStatusCode':400, [x: string]: any }, + 'b0c15051-de2d-29ef-260c-9585cddd701a': {'message':'If "method" is webhook, "systemWebhookId" must be set.', 'code':'CORRELATION_CHECK_WEBHOOK', 'id':'b0c15051-de2d-29ef-260c-9585cddd701a', 'httpStatusCode':400, [x: string]: any }, + '7cc1d85e-2f58-fc31-b644-3de8d0d3421f': {'message':'Email address is not set.', 'code':'EMAIL_ADDRESS_NOT_SET', 'id':'7cc1d85e-2f58-fc31-b644-3de8d0d3421f', 'httpStatusCode':400, [x: string]: any }, + '1fb7cb09-d46a-4fff-b8df-057708cce513': {'message':'You do not have edit privilege of this key.', 'code':'ACCESS_DENIED', 'id':'1fb7cb09-d46a-4fff-b8df-057708cce513', [x: string]: any }, + '97147c55-1ae1-4f6f-91d6-e1c3e0e76d62': {'message':'Initial password is incorrect.', 'code':'INCORRECT_INITIAL_PASSWORD', 'id':'97147c55-1ae1-4f6f-91d6-e1c3e0e76d62', [x: string]: any }, + 'cb865949-8af5-4062-a88c-ef55e8786d1d': {'message':'No such user who has the email address.', 'code':'USER_NOT_FOUND', 'id':'cb865949-8af5-4062-a88c-ef55e8786d1d', [x: string]: any }, + 'ccac9863-3a03-416e-b899-8a64041118b1': {'message':'No such ad.', 'code':'NO_SUCH_AD', 'id':'ccac9863-3a03-416e-b899-8a64041118b1', [x: string]: any }, + 'b7aa1727-1354-47bc-a182-3a9c3973d300': {'message':'No such ad.', 'code':'NO_SUCH_AD', 'id':'b7aa1727-1354-47bc-a182-3a9c3973d300', [x: string]: any }, + 'ecad8040-a276-4e85-bda9-015a708d291e': {'message':'No such announcement.', 'code':'NO_SUCH_ANNOUNCEMENT', 'id':'ecad8040-a276-4e85-bda9-015a708d291e', [x: string]: any }, + 'd3aae5a7-6372-4cb4-b61c-f511ffc2d7cc': {'message':'No such announcement.', 'code':'NO_SUCH_ANNOUNCEMENT', 'id':'d3aae5a7-6372-4cb4-b61c-f511ffc2d7cc', [x: string]: any }, + 'caf3ca38-c6e5-472e-a30c-b05377dcc240': {'message':'No such file.', 'code':'NO_SUCH_FILE', 'id':'caf3ca38-c6e5-472e-a30c-b05377dcc240', [x: string]: any }, + 'fc46b5a4-6b92-4c33-ac66-b806659bb5cf': {'message':'No such file.', 'code':'NO_SUCH_FILE', 'id':'fc46b5a4-6b92-4c33-ac66-b806659bb5cf', [x: string]: any }, + 'f7a3462c-4e6e-4069-8421-b9bd4f4c3975': {'message':'Duplicate name.', 'code':'DUPLICATE_NAME', 'id':'f7a3462c-4e6e-4069-8421-b9bd4f4c3975', [x: string]: any }, + 'e2785b66-dca3-4087-9cac-b93c541cc425': {'message':'No such emoji.', 'code':'NO_SUCH_EMOJI', 'id':'e2785b66-dca3-4087-9cac-b93c541cc425', [x: string]: any }, + 'be83669b-773a-44b7-b1f8-e5e5170ac3c2': {'message':'No such emoji.', 'code':'NO_SUCH_EMOJI', 'id':'be83669b-773a-44b7-b1f8-e5e5170ac3c2', [x: string]: any }, + '684dec9d-a8c2-4364-9aa8-456c49cb1dc8': {'message':'No such emoji.', 'code':'NO_SUCH_EMOJI', 'id':'684dec9d-a8c2-4364-9aa8-456c49cb1dc8', [x: string]: any }, + '14fb9fd9-0731-4e2f-aeb9-f09e4740333d': {'message':'No such file.', 'code':'NO_SUCH_FILE', 'id':'14fb9fd9-0731-4e2f-aeb9-f09e4740333d', [x: string]: any }, + '7180fe9d-1ee3-bff9-647d-fe9896d2ffb8': {'message':'Emoji that have same name already exists.', 'code':'SAME_NAME_EMOJI_EXISTS', 'id':'7180fe9d-1ee3-bff9-647d-fe9896d2ffb8', [x: string]: any }, + 'f1380b15-3760-4c6c-a1db-5c3aaf1cbd49': {'message':'Invalid date-time format', 'code':'INVALID_DATE_TIME', 'id':'f1380b15-3760-4c6c-a1db-5c3aaf1cbd49', [x: string]: any }, + 'ee449fbe-af2a-453b-9cae-cf2fe7c895fc': {'message':'No such note.', 'code':'NO_SUCH_NOTE', 'id':'ee449fbe-af2a-453b-9cae-cf2fe7c895fc', [x: string]: any }, + 'ae427aa2-7a41-484f-a18c-2c1104051604': {'message':'The note has already promoted.', 'code':'ALREADY_PROMOTED', 'id':'ae427aa2-7a41-484f-a18c-2c1104051604', [x: string]: any }, + 'fb8c92d3-d4e5-44e7-b3d4-800d5cef8b2c': {'message':'Invalid URL', 'code':'INVALID_URL', 'id':'fb8c92d3-d4e5-44e7-b3d4-800d5cef8b2c', [x: string]: any }, + 'ac3794dd-2ce4-d878-e546-73c60c06b398': {'message':'No such abuse report.', 'code':'NO_SUCH_ABUSE_REPORT', 'id':'ac3794dd-2ce4-d878-e546-73c60c06b398', 'kind':'server', 'httpStatusCode':404, [x: string]: any }, + '8763e21b-d9bc-40be-acf6-54c1a6986493': {'message':'No such abuse report.', 'code':'NO_SUCH_ABUSE_REPORT', 'id':'8763e21b-d9bc-40be-acf6-54c1a6986493', 'kind':'server', 'httpStatusCode':404, [x: string]: any }, + '15f51cf5-46d1-4b1d-a618-b35bcbed0662': {'message':'No such abuse report.', 'code':'NO_SUCH_ABUSE_REPORT', 'id':'15f51cf5-46d1-4b1d-a618-b35bcbed0662', 'kind':'server', 'httpStatusCode':404, [x: string]: any }, + 'de0d6ecd-8e0a-4253-88ff-74bc89ae3d45': {'message':'No such role.', 'code':'NO_SUCH_ROLE', 'id':'de0d6ecd-8e0a-4253-88ff-74bc89ae3d45', [x: string]: any }, + '07dc7d34-c0d8-49b7-96c6-db3ce64ee0b3': {'message':'No such role.', 'code':'NO_SUCH_ROLE', 'id':'07dc7d34-c0d8-49b7-96c6-db3ce64ee0b3', [x: string]: any }, + 'cd23ef55-09ad-428a-ac61-95a45e124b32': {'message':'No such role.', 'code':'NO_SUCH_ROLE', 'id':'cd23ef55-09ad-428a-ac61-95a45e124b32', [x: string]: any }, + '6503c040-6af4-4ed9-bf07-f2dd16678eab': {'message':'No such role.', 'code':'NO_SUCH_ROLE', 'id':'6503c040-6af4-4ed9-bf07-f2dd16678eab', [x: string]: any }, + '558ea170-f653-4700-94d0-5a818371d0df': {'message':'No such user.', 'code':'NO_SUCH_USER', 'id':'558ea170-f653-4700-94d0-5a818371d0df', [x: string]: any }, + '25b5bc31-dc79-4ebd-9bd2-c84978fd052c': {'message':'Only administrators can edit members of the role.', 'code':'ACCESS_DENIED', 'id':'25b5bc31-dc79-4ebd-9bd2-c84978fd052c', [x: string]: any }, + '6e519036-a70d-4c76-b679-bc8fb18194e2': {'message':'No such role.', 'code':'NO_SUCH_ROLE', 'id':'6e519036-a70d-4c76-b679-bc8fb18194e2', [x: string]: any }, + '2b730f78-1179-461b-88ad-d24c9af1a5ce': {'message':'No such user.', 'code':'NO_SUCH_USER', 'id':'2b730f78-1179-461b-88ad-d24c9af1a5ce', [x: string]: any }, + 'b9060ac7-5c94-4da4-9f55-2047c953df44': {'message':'Not assigned.', 'code':'NOT_ASSIGNED', 'id':'b9060ac7-5c94-4da4-9f55-2047c953df44', [x: string]: any }, + '24636eee-e8c1-493e-94b2-e16ad401e262': {'message':'Only administrators can edit members of the role.', 'code':'ACCESS_DENIED', 'id':'24636eee-e8c1-493e-94b2-e16ad401e262', [x: string]: any }, + '224eff5e-2488-4b18-b3e7-f50d94421648': {'message':'No such role.', 'code':'NO_SUCH_ROLE', 'id':'224eff5e-2488-4b18-b3e7-f50d94421648', [x: string]: any }, + '38dd1ffe-04b4-6ff5-d8ba-4e6a6ae22c9d': {'message':'No such SystemWebhook.', 'code':'NO_SUCH_SYSTEM_WEBHOOK', 'id':'38dd1ffe-04b4-6ff5-d8ba-4e6a6ae22c9d', 'kind':'server', 'httpStatusCode':404, [x: string]: any }, + '0c52149c-e913-18f8-5dc7-74870bfe0cf9': {'message':'No such webhook.', 'code':'NO_SUCH_WEBHOOK', 'id':'0c52149c-e913-18f8-5dc7-74870bfe0cf9', [x: string]: any }, + 'd5826d14-3982-4d2e-8011-b9e9f02499ef': {'message':'Rate limit exceeded. Please try again later.', 'code':'RATE_LIMIT_EXCEEDED', 'id':'d5826d14-3982-4d2e-8011-b9e9f02499ef', [x: string]: any }, + 'b57b5e1d-4f49-404a-9edb-46b00268f121': {'message':'No such announcement.', 'code':'NO_SUCH_ANNOUNCEMENT', 'id':'b57b5e1d-4f49-404a-9edb-46b00268f121', [x: string]: any }, + '95063e93-a283-4b8b-9aa5-bcdb8df69a7f': {'message':'No such user list.', 'code':'NO_SUCH_USER_LIST', 'id':'95063e93-a283-4b8b-9aa5-bcdb8df69a7f', [x: string]: any }, + 'faf47050-e8b5-438c-913c-db2b1576fde4': {'message':'You cannot create antenna any more.', 'code':'TOO_MANY_ANTENNAS', 'id':'faf47050-e8b5-438c-913c-db2b1576fde4', [x: string]: any }, + '53ee222e-1ddd-4f9a-92e5-9fb82ddb463a': {'message':'Either keywords or excludeKeywords is required.', 'code':'EMPTY_KEYWORD', 'id':'53ee222e-1ddd-4f9a-92e5-9fb82ddb463a', [x: string]: any }, + 'b34dcf9d-348f-44bb-99d0-6c9314cfe2df': {'message':'No such antenna.', 'code':'NO_SUCH_ANTENNA', 'id':'b34dcf9d-348f-44bb-99d0-6c9314cfe2df', [x: string]: any }, + '850926e0-fd3b-49b6-b69a-b28a5dbd82fe': {'message':'No such antenna.', 'code':'NO_SUCH_ANTENNA', 'id':'850926e0-fd3b-49b6-b69a-b28a5dbd82fe', [x: string]: any }, + 'c06569fb-b025-4f23-b22d-1fcd20d2816b': {'message':'No such antenna.', 'code':'NO_SUCH_ANTENNA', 'id':'c06569fb-b025-4f23-b22d-1fcd20d2816b', [x: string]: any }, + '10c673ac-8852-48eb-aa1f-f5b67f069290': {'message':'No such antenna.', 'code':'NO_SUCH_ANTENNA', 'id':'10c673ac-8852-48eb-aa1f-f5b67f069290', [x: string]: any }, + '1c6b35c9-943e-48c2-81e4-2844989407f7': {'message':'No such user list.', 'code':'NO_SUCH_USER_LIST', 'id':'1c6b35c9-943e-48c2-81e4-2844989407f7', [x: string]: any }, + '721aaff6-4e1b-4d88-8de6-877fae9f68c4': {'message':'Either keywords or excludeKeywords is required.', 'code':'EMPTY_KEYWORD', 'id':'721aaff6-4e1b-4d88-8de6-877fae9f68c4', [x: string]: any }, + 'dc94d745-1262-4e63-a17d-fecaa57efc82': {'message':'No such object.', 'code':'NO_SUCH_OBJECT', 'id':'dc94d745-1262-4e63-a17d-fecaa57efc82', [x: string]: any }, + 'dce83913-2dc6-4093-8a7b-71dbb11718a3': {'message':'No such app.', 'code':'NO_SUCH_APP', 'id':'dce83913-2dc6-4093-8a7b-71dbb11718a3', [x: string]: any }, + '9c72d8de-391a-43c1-9d06-08d29efde8df': {'message':'No such session.', 'code':'NO_SUCH_SESSION', 'id':'9c72d8de-391a-43c1-9d06-08d29efde8df', [x: string]: any }, + '92f93e63-428e-4f2f-a5a4-39e1407fe998': {'message':'No such app.', 'code':'NO_SUCH_APP', 'id':'92f93e63-428e-4f2f-a5a4-39e1407fe998', [x: string]: any }, + 'bd72c97d-eba7-4adb-a467-f171b8847250': {'message':'No such session.', 'code':'NO_SUCH_SESSION', 'id':'bd72c97d-eba7-4adb-a467-f171b8847250', [x: string]: any }, + 'fcab192a-2c5a-43b7-8ad8-9b7054d8d40d': {'message':'No such app.', 'code':'NO_SUCH_APP', 'id':'fcab192a-2c5a-43b7-8ad8-9b7054d8d40d', [x: string]: any }, + '5b5a1503-8bc8-4bd0-8054-dc189e8cdcb3': {'message':'No such session.', 'code':'NO_SUCH_SESSION', 'id':'5b5a1503-8bc8-4bd0-8054-dc189e8cdcb3', [x: string]: any }, + '8c8a4145-02cc-4cca-8e66-29ba60445a8e': {'message':'This session is not completed yet.', 'code':'PENDING_SESSION', 'id':'8c8a4145-02cc-4cca-8e66-29ba60445a8e', [x: string]: any }, + '7cc4f851-e2f1-4621-9633-ec9e1d00c01e': {'message':'No such user.', 'code':'NO_SUCH_USER', 'id':'7cc4f851-e2f1-4621-9633-ec9e1d00c01e', [x: string]: any }, + '88b19138-f28d-42c0-8499-6a31bbd0fdc6': {'message':'Blockee is yourself.', 'code':'BLOCKEE_IS_YOURSELF', 'id':'88b19138-f28d-42c0-8499-6a31bbd0fdc6', [x: string]: any }, + '787fed64-acb9-464a-82eb-afbd745b9614': {'message':'You are already blocking that user.', 'code':'ALREADY_BLOCKING', 'id':'787fed64-acb9-464a-82eb-afbd745b9614', [x: string]: any }, + '8621d8bf-c358-4303-a066-5ea78610eb3f': {'message':'No such user.', 'code':'NO_SUCH_USER', 'id':'8621d8bf-c358-4303-a066-5ea78610eb3f', [x: string]: any }, + '06f6fac6-524b-473c-a354-e97a40ae6eac': {'message':'Blockee is yourself.', 'code':'BLOCKEE_IS_YOURSELF', 'id':'06f6fac6-524b-473c-a354-e97a40ae6eac', [x: string]: any }, + '291b2efa-60c6-45c0-9f6a-045c8f9b02cd': {'message':'You are not blocking that user.', 'code':'NOT_BLOCKING', 'id':'291b2efa-60c6-45c0-9f6a-045c8f9b02cd', [x: string]: any }, + 'cd1e9f3e-5a12-4ab4-96f6-5d0a2cc32050': {'message':'No such file.', 'code':'NO_SUCH_FILE', 'id':'cd1e9f3e-5a12-4ab4-96f6-5d0a2cc32050', [x: string]: any }, + 'c0031718-d573-4e85-928e-10039f1fbb68': {'message':'No such channel.', 'code':'NO_SUCH_CHANNEL', 'id':'c0031718-d573-4e85-928e-10039f1fbb68', [x: string]: any }, + '6f6c314b-7486-4897-8966-c04a66a02923': {'message':'No such channel.', 'code':'NO_SUCH_CHANNEL', 'id':'6f6c314b-7486-4897-8966-c04a66a02923', [x: string]: any }, + '4d0eeeba-a02c-4c3c-9966-ef60d38d2e7f': {'message':'No such channel.', 'code':'NO_SUCH_CHANNEL', 'id':'4d0eeeba-a02c-4c3c-9966-ef60d38d2e7f', [x: string]: any }, + '19959ee9-0153-4c51-bbd9-a98c49dc59d6': {'message':'No such channel.', 'code':'NO_SUCH_CHANNEL', 'id':'19959ee9-0153-4c51-bbd9-a98c49dc59d6', [x: string]: any }, + 'f9c5467f-d492-4c3c-9a8d-a70dacc86512': {'message':'No such channel.', 'code':'NO_SUCH_CHANNEL', 'id':'f9c5467f-d492-4c3c-9a8d-a70dacc86512', [x: string]: any }, + '1fb7cb09-d46a-4fdf-b8df-057788cce513': {'message':'You do not have edit privilege of the channel.', 'code':'ACCESS_DENIED', 'id':'1fb7cb09-d46a-4fdf-b8df-057788cce513', [x: string]: any }, + 'e86c14a4-0da2-4032-8df3-e737a04c7f3b': {'message':'No such file.', 'code':'NO_SUCH_FILE', 'id':'e86c14a4-0da2-4032-8df3-e737a04c7f3b', [x: string]: any }, + '4938f5f3-6167-4c04-9149-6607b7542861': {'message':'No such channel.', 'code':'NO_SUCH_CHANNEL', 'id':'4938f5f3-6167-4c04-9149-6607b7542861', [x: string]: any }, + '353c68dd-131a-476c-aa99-88a345e83668': {'message':'No such channel.', 'code':'NO_SUCH_CHANNEL', 'id':'353c68dd-131a-476c-aa99-88a345e83668', [x: string]: any }, + 'd6e76cc0-a1b5-4c7c-a287-73fa9c716dcf': {'message':'No such clip.', 'code':'NO_SUCH_CLIP', 'id':'d6e76cc0-a1b5-4c7c-a287-73fa9c716dcf', [x: string]: any }, + 'fc8c0b49-c7a3-4664-a0a6-b418d386bb8b': {'message':'No such note.', 'code':'NO_SUCH_NOTE', 'id':'fc8c0b49-c7a3-4664-a0a6-b418d386bb8b', [x: string]: any }, + '734806c4-542c-463a-9311-15c512803965': {'message':'The note has already been clipped.', 'code':'ALREADY_CLIPPED', 'id':'734806c4-542c-463a-9311-15c512803965', [x: string]: any }, + 'f0dba960-ff73-4615-8df4-d6ac5d9dc118': {'message':'You cannot add notes to the clip any more.', 'code':'TOO_MANY_CLIP_NOTES', 'id':'f0dba960-ff73-4615-8df4-d6ac5d9dc118', [x: string]: any }, + 'b80525c6-97f7-49d7-a42d-ebccd49cfd52': {'message':'No such clip.', 'code':'NO_SUCH_CLIP', 'id':'b80525c6-97f7-49d7-a42d-ebccd49cfd52', [x: string]: any }, + 'aff017de-190e-434b-893e-33a9ff5049d8': {'message':'No such note.', 'code':'NO_SUCH_NOTE', 'id':'aff017de-190e-434b-893e-33a9ff5049d8', [x: string]: any }, + '920f7c2d-6208-4b76-8082-e632020f5883': {'message':'You cannot create clip any more.', 'code':'TOO_MANY_CLIPS', 'id':'920f7c2d-6208-4b76-8082-e632020f5883', [x: string]: any }, + '70ca08ba-6865-4630-b6fb-8494759aa754': {'message':'No such clip.', 'code':'NO_SUCH_CLIP', 'id':'70ca08ba-6865-4630-b6fb-8494759aa754', [x: string]: any }, + '1d7645e6-2b6d-4635-b0fe-fe22b0e72e00': {'message':'No such clip.', 'code':'NO_SUCH_CLIP', 'id':'1d7645e6-2b6d-4635-b0fe-fe22b0e72e00', [x: string]: any }, + 'c3c5fe33-d62c-44d2-9ea5-d997703f5c20': {'message':'No such clip.', 'code':'NO_SUCH_CLIP', 'id':'c3c5fe33-d62c-44d2-9ea5-d997703f5c20', [x: string]: any }, + 'b4d92d70-b216-46fa-9a3f-a8c811699257': {'message':'No such clip.', 'code':'NO_SUCH_CLIP', 'id':'b4d92d70-b216-46fa-9a3f-a8c811699257', [x: string]: any }, + '4c2aaeae-80d8-4250-9606-26cb1fdb77a5': {'message':'No such clip.', 'code':'NO_SUCH_CLIP', 'id':'4c2aaeae-80d8-4250-9606-26cb1fdb77a5', [x: string]: any }, + '92658936-c625-4273-8326-2d790129256e': {'message':'The clip has already been favorited.', 'code':'ALREADY_FAVORITED', 'id':'92658936-c625-4273-8326-2d790129256e', [x: string]: any }, + '2603966e-b865-426c-94a7-af4a01241dc1': {'message':'No such clip.', 'code':'NO_SUCH_CLIP', 'id':'2603966e-b865-426c-94a7-af4a01241dc1', [x: string]: any }, + '90c3a9e8-b321-4dae-bf57-2bf79bbcc187': {'message':'You have not favorited the clip.', 'code':'NOT_FAVORITED', 'id':'90c3a9e8-b321-4dae-bf57-2bf79bbcc187', [x: string]: any }, + 'c118ece3-2e4b-4296-99d1-51756e32d232': {'message':'No such file.', 'code':'NO_SUCH_FILE', 'id':'c118ece3-2e4b-4296-99d1-51756e32d232', [x: string]: any }, + 'f449b209-0c60-4e51-84d5-29486263bfd4': {'message':'Invalid file name.', 'code':'INVALID_FILE_NAME', 'id':'f449b209-0c60-4e51-84d5-29486263bfd4', [x: string]: any }, + 'bec5bd69-fba3-43c9-b4fb-2894b66ad5d2': {'message':'Cannot upload the file because it has been determined that it possibly contains inappropriate content.', 'code':'INAPPROPRIATE', 'id':'bec5bd69-fba3-43c9-b4fb-2894b66ad5d2', [x: string]: any }, + 'd08dbc37-a6a9-463a-8c47-96c32ab5f064': {'message':'Cannot upload the file because you have no free space of drive.', 'code':'NO_FREE_SPACE', 'id':'d08dbc37-a6a9-463a-8c47-96c32ab5f064', [x: string]: any }, + '908939ec-e52b-4458-b395-1025195cea58': {'message':'No such file.', 'code':'NO_SUCH_FILE', 'id':'908939ec-e52b-4458-b395-1025195cea58', [x: string]: any }, + '5eb8d909-2540-4970-90b8-dd6f86088121': {'message':'Access denied.', 'code':'ACCESS_DENIED', 'id':'5eb8d909-2540-4970-90b8-dd6f86088121', [x: string]: any }, + '067bc436-2718-4795-b0fb-ecbe43949e31': {'message':'No such file.', 'code':'NO_SUCH_FILE', 'id':'067bc436-2718-4795-b0fb-ecbe43949e31', [x: string]: any }, + '25b73c73-68b1-41d0-bad1-381cfdf6579f': {'message':'Access denied.', 'code':'ACCESS_DENIED', 'id':'25b73c73-68b1-41d0-bad1-381cfdf6579f', [x: string]: any }, + '395e7156-f9f0-475e-af89-53c3c23080c2': {'message':'Invalid file name.', 'code':'INVALID_FILE_NAME', 'id':'395e7156-f9f0-475e-af89-53c3c23080c2', [x: string]: any }, + 'e7778c7e-3af9-49cd-9690-6dbc3e6c972d': {'message':'No such file.', 'code':'NO_SUCH_FILE', 'id':'e7778c7e-3af9-49cd-9690-6dbc3e6c972d', [x: string]: any }, + '01a53b27-82fc-445b-a0c1-b558465a8ed2': {'message':'Access denied.', 'code':'ACCESS_DENIED', 'id':'01a53b27-82fc-445b-a0c1-b558465a8ed2', [x: string]: any }, + 'ea8fb7a5-af77-4a08-b608-c0218176cd73': {'message':'No such folder.', 'code':'NO_SUCH_FOLDER', 'id':'ea8fb7a5-af77-4a08-b608-c0218176cd73', [x: string]: any }, + '7f59dccb-f465-75ab-5cf4-3ce44e3282f7': {'message':'This feature is restricted by your role.', 'code':'RESTRICTED_BY_ROLE', 'id':'7f59dccb-f465-75ab-5cf4-3ce44e3282f7', [x: string]: any }, + '53326628-a00d-40a6-a3cd-8975105c0f95': {'message':'No such folder.', 'code':'NO_SUCH_FOLDER', 'id':'53326628-a00d-40a6-a3cd-8975105c0f95', [x: string]: any }, + '1069098f-c281-440f-b085-f9932edbe091': {'message':'No such folder.', 'code':'NO_SUCH_FOLDER', 'id':'1069098f-c281-440f-b085-f9932edbe091', [x: string]: any }, + 'b0fc8a17-963c-405d-bfbc-859a487295e1': {'message':'This folder has child files or folders.', 'code':'HAS_CHILD_FILES_OR_FOLDERS', 'id':'b0fc8a17-963c-405d-bfbc-859a487295e1', [x: string]: any }, + 'd74ab9eb-bb09-4bba-bf24-fb58f761e1e9': {'message':'No such folder.', 'code':'NO_SUCH_FOLDER', 'id':'d74ab9eb-bb09-4bba-bf24-fb58f761e1e9', [x: string]: any }, + 'f7974dac-2c0d-4a27-926e-23583b28e98e': {'message':'No such folder.', 'code':'NO_SUCH_FOLDER', 'id':'f7974dac-2c0d-4a27-926e-23583b28e98e', [x: string]: any }, + 'ce104e3a-faaf-49d5-b459-10ff0cbbcaa1': {'message':'No such parent folder.', 'code':'NO_SUCH_PARENT_FOLDER', 'id':'ce104e3a-faaf-49d5-b459-10ff0cbbcaa1', [x: string]: any }, + 'dbeb024837894013aed44279f9199740': {'message':'It can not be structured like nesting folders recursively.', 'code':'RECURSIVE_NESTING', 'id':'dbeb024837894013aed44279f9199740', [x: string]: any }, + 'fcd2eef9-a9b2-4c4f-8624-038099e90aa5': {'message':'No such user.', 'code':'NO_SUCH_USER', 'id':'fcd2eef9-a9b2-4c4f-8624-038099e90aa5', [x: string]: any }, + '26fbe7bb-a331-4857-af17-205b426669a9': {'message':'Followee is yourself.', 'code':'FOLLOWEE_IS_YOURSELF', 'id':'26fbe7bb-a331-4857-af17-205b426669a9', [x: string]: any }, + '35387507-38c7-4cb9-9197-300b93783fa0': {'message':'You are already following that user.', 'code':'ALREADY_FOLLOWING', 'id':'35387507-38c7-4cb9-9197-300b93783fa0', [x: string]: any }, + '4e2206ec-aa4f-4960-b865-6c23ac38e2d9': {'message':'You are blocking that user.', 'code':'BLOCKING', 'id':'4e2206ec-aa4f-4960-b865-6c23ac38e2d9', [x: string]: any }, + 'c4ab57cc-4e41-45e9-bfd9-584f61e35ce0': {'message':'You are blocked by that user.', 'code':'BLOCKED', 'id':'c4ab57cc-4e41-45e9-bfd9-584f61e35ce0', [x: string]: any }, + '5b12c78d-2b28-4dca-99d2-f56139b42ff8': {'message':'No such user.', 'code':'NO_SUCH_USER', 'id':'5b12c78d-2b28-4dca-99d2-f56139b42ff8', [x: string]: any }, + 'd9e400b9-36b0-4808-b1d8-79e707f1296c': {'message':'Followee is yourself.', 'code':'FOLLOWEE_IS_YOURSELF', 'id':'d9e400b9-36b0-4808-b1d8-79e707f1296c', [x: string]: any }, + '5dbf82f5-c92b-40b1-87d1-6c8c0741fd09': {'message':'You are not following that user.', 'code':'NOT_FOLLOWING', 'id':'5dbf82f5-c92b-40b1-87d1-6c8c0741fd09', [x: string]: any }, + '14318698-f67e-492a-99da-5353a5ac52be': {'message':'No such user.', 'code':'NO_SUCH_USER', 'id':'14318698-f67e-492a-99da-5353a5ac52be', [x: string]: any }, + '4c4cbaf9-962a-463b-8418-a5e365dbf2eb': {'message':'Followee is yourself.', 'code':'FOLLOWEE_IS_YOURSELF', 'id':'4c4cbaf9-962a-463b-8418-a5e365dbf2eb', [x: string]: any }, + 'b8dc75cf-1cb5-46c9-b14b-5f1ffbd782c9': {'message':'You are not following that user.', 'code':'NOT_FOLLOWING', 'id':'b8dc75cf-1cb5-46c9-b14b-5f1ffbd782c9', [x: string]: any }, + 'b77e6ae6-a3e5-40da-9cc8-c240115479cc': {'message':'No such user.', 'code':'NO_SUCH_USER', 'id':'b77e6ae6-a3e5-40da-9cc8-c240115479cc', [x: string]: any }, + '07dc03b9-03da-422d-885b-438313707662': {'message':'Follower is yourself.', 'code':'FOLLOWER_IS_YOURSELF', 'id':'07dc03b9-03da-422d-885b-438313707662', [x: string]: any }, + '918faac3-074f-41ae-9c43-ed5d2946770d': {'message':'The other use is not following you.', 'code':'NOT_FOLLOWING', 'id':'918faac3-074f-41ae-9c43-ed5d2946770d', [x: string]: any }, + '66ce1645-d66c-46bb-8b79-96739af885bd': {'message':'No such user.', 'code':'NO_SUCH_USER', 'id':'66ce1645-d66c-46bb-8b79-96739af885bd', [x: string]: any }, + 'bcde4f8b-0913-4614-8881-614e522fb041': {'message':'No follow request.', 'code':'NO_FOLLOW_REQUEST', 'id':'bcde4f8b-0913-4614-8881-614e522fb041', [x: string]: any }, + '4e68c551-fc4c-4e46-bb41-7d4a37bf9dab': {'message':'No such user.', 'code':'NO_SUCH_USER', 'id':'4e68c551-fc4c-4e46-bb41-7d4a37bf9dab', [x: string]: any }, + '089b125b-d338-482a-9a09-e2622ac9f8d4': {'message':'Follow request not found.', 'code':'FOLLOW_REQUEST_NOT_FOUND', 'id':'089b125b-d338-482a-9a09-e2622ac9f8d4', [x: string]: any }, + 'abc2ffa6-25b2-4380-ba99-321ff3a94555': {'message':'No such user.', 'code':'NO_SUCH_USER', 'id':'abc2ffa6-25b2-4380-ba99-321ff3a94555', [x: string]: any }, + 'ae52f367-4bd7-4ecd-afc6-5672fff427f5': {'message':'No such post.', 'code':'NO_SUCH_POST', 'id':'ae52f367-4bd7-4ecd-afc6-5672fff427f5', [x: string]: any }, + 'c86e09de-1c48-43ac-a435-1c7e42ed4496': {'message':'Access denied.', 'code':'ACCESS_DENIED', 'id':'c86e09de-1c48-43ac-a435-1c7e42ed4496', [x: string]: any }, + '56c06af3-1287-442f-9701-c93f7c4a62ff': {'message':'No such post.', 'code':'NO_SUCH_POST', 'id':'56c06af3-1287-442f-9701-c93f7c4a62ff', [x: string]: any }, + 'f78f1511-5ebc-4478-a888-1198d752da68': {'message':'You cannot like your post.', 'code':'YOUR_POST', 'id':'f78f1511-5ebc-4478-a888-1198d752da68', [x: string]: any }, + '40e9ed56-a59c-473a-bf3f-f289c54fb5a7': {'message':'The post has already been liked.', 'code':'ALREADY_LIKED', 'id':'40e9ed56-a59c-473a-bf3f-f289c54fb5a7', [x: string]: any }, + '1137bf14-c5b0-4604-85bb-5b5371b1cd45': {'message':'No such post.', 'code':'NO_SUCH_POST', 'id':'1137bf14-c5b0-4604-85bb-5b5371b1cd45', [x: string]: any }, + 'c32e6dd0-b555-4413-925e-b3757d19ed84': {'message':'No such post.', 'code':'NO_SUCH_POST', 'id':'c32e6dd0-b555-4413-925e-b3757d19ed84', [x: string]: any }, + 'e3e8e06e-be37-41f7-a5b4-87a8250288f0': {'message':'You have not liked that post.', 'code':'NOT_LIKED', 'id':'e3e8e06e-be37-41f7-a5b4-87a8250288f0', [x: string]: any }, + '110ee688-193e-4a3a-9ecf-c167b2e6981e': {'message':'No such hashtag.', 'code':'NO_SUCH_HASHTAG', 'id':'110ee688-193e-4a3a-9ecf-c167b2e6981e', [x: string]: any }, + 'e5b3b9f0-2b8f-4b9f-9c1f-8c5c1b2e1b1a': {'message':'User is deleted.', 'code':'USER_IS_DELETED', 'id':'e5b3b9f0-2b8f-4b9f-9c1f-8c5c1b2e1b1a', 'kind':'permission', [x: string]: any }, + '0d7ec6d2-e652-443e-a7bf-9ee9a0cd77b0': {'message':'Incorrect password.', 'code':'INCORRECT_PASSWORD', 'id':'0d7ec6d2-e652-443e-a7bf-9ee9a0cd77b0', [x: string]: any }, + '798d6847-b1ed-4f9c-b1f9-163c42655995': {'message':'2fa not enabled.', 'code':'TWO_FACTOR_NOT_ENABLED', 'id':'798d6847-b1ed-4f9c-b1f9-163c42655995', [x: string]: any }, + 'f9c54d7f-d4c2-4d3c-9a8g-a70daac86512': {'message':'No security key.', 'code':'NO_SECURITY_KEY', 'id':'f9c54d7f-d4c2-4d3c-9a8g-a70daac86512', [x: string]: any }, + '652f899f-66d4-490e-993e-6606c8ec04c3': {'message':'User not found.', 'code':'USER_NOT_FOUND', 'id':'652f899f-66d4-490e-993e-6606c8ec04c3', [x: string]: any }, + '38769596-efe2-4faf-9bec-abbb3f2cd9ba': {'message':'Incorrect password.', 'code':'INCORRECT_PASSWORD', 'id':'38769596-efe2-4faf-9bec-abbb3f2cd9ba', [x: string]: any }, + 'bf32b864-449b-47b8-974e-f9a5468546f1': {'message':'2fa not enabled.', 'code':'TWO_FACTOR_NOT_ENABLED', 'id':'bf32b864-449b-47b8-974e-f9a5468546f1', [x: string]: any }, + '78d6c839-20c9-4c66-b90a-fc0542168b48': {'message':'Incorrect password.', 'code':'INCORRECT_PASSWORD', 'id':'78d6c839-20c9-4c66-b90a-fc0542168b48', [x: string]: any }, + 'f9c5467f-d492-4d3c-9a8g-a70dacc86512': {'message':'No such key.', 'code':'NO_SUCH_KEY', 'id':'f9c5467f-d492-4d3c-9a8g-a70dacc86512', [x: string]: any }, + '141c598d-a825-44c8-9173-cfb9d92be493': {'message':'Incorrect password.', 'code':'INCORRECT_PASSWORD', 'id':'141c598d-a825-44c8-9173-cfb9d92be493', [x: string]: any }, + '7add0395-9901-4098-82f9-4f67af65f775': {'message':'Incorrect password.', 'code':'INCORRECT_PASSWORD', 'id':'7add0395-9901-4098-82f9-4f67af65f775', [x: string]: any }, + 'ebb53e5f-6574-9c0c-0b92-7ca6def56d7e': {'message':'No such file.', 'code':'NO_SUCH_FILE', 'id':'ebb53e5f-6574-9c0c-0b92-7ca6def56d7e', [x: string]: any }, + 'b6fab7d6-d945-d67c-dfdb-32da1cd12cfe': {'message':'We need csv file.', 'code':'UNEXPECTED_FILE_TYPE', 'id':'b6fab7d6-d945-d67c-dfdb-32da1cd12cfe', [x: string]: any }, + 'b7fbf0b1-aeef-3b21-29ef-fadd4cb72ccf': {'message':'That file is too big.', 'code':'TOO_BIG_FILE', 'id':'b7fbf0b1-aeef-3b21-29ef-fadd4cb72ccf', [x: string]: any }, + '6f3a4dcc-f060-a707-4950-806fbdbe60d6': {'message':'That file is empty.', 'code':'EMPTY_FILE', 'id':'6f3a4dcc-f060-a707-4950-806fbdbe60d6', [x: string]: any }, + 'b98644cf-a5ac-4277-a502-0b8054a709a3': {'message':'No such file.', 'code':'NO_SUCH_FILE', 'id':'b98644cf-a5ac-4277-a502-0b8054a709a3', [x: string]: any }, + '660f3599-bce0-4f95-9dde-311fd841c183': {'message':'We need csv file.', 'code':'UNEXPECTED_FILE_TYPE', 'id':'660f3599-bce0-4f95-9dde-311fd841c183', [x: string]: any }, + 'dee9d4ed-ad07-43ed-8b34-b2856398bc60': {'message':'That file is too big.', 'code':'TOO_BIG_FILE', 'id':'dee9d4ed-ad07-43ed-8b34-b2856398bc60', [x: string]: any }, + '31a1b42c-06f7-42ae-8a38-a661c5c9f691': {'message':'That file is empty.', 'code':'EMPTY_FILE', 'id':'31a1b42c-06f7-42ae-8a38-a661c5c9f691', [x: string]: any }, + 'e674141e-bd2a-ba85-e616-aefb187c9c2a': {'message':'No such file.', 'code':'NO_SUCH_FILE', 'id':'e674141e-bd2a-ba85-e616-aefb187c9c2a', [x: string]: any }, + '568c6e42-c86c-ba09-c004-517f83f9f1a8': {'message':'We need csv file.', 'code':'UNEXPECTED_FILE_TYPE', 'id':'568c6e42-c86c-ba09-c004-517f83f9f1a8', [x: string]: any }, + '9b4ada6d-d7f7-0472-0713-4f558bd1ec9c': {'message':'That file is too big.', 'code':'TOO_BIG_FILE', 'id':'9b4ada6d-d7f7-0472-0713-4f558bd1ec9c', [x: string]: any }, + 'd2f12af1-e7b4-feac-86a3-519548f2728e': {'message':'That file is empty.', 'code':'EMPTY_FILE', 'id':'d2f12af1-e7b4-feac-86a3-519548f2728e', [x: string]: any }, + 'ea9cc34f-c415-4bc6-a6fe-28ac40357049': {'message':'No such file.', 'code':'NO_SUCH_FILE', 'id':'ea9cc34f-c415-4bc6-a6fe-28ac40357049', [x: string]: any }, + 'a3c9edda-dd9b-4596-be6a-150ef813745c': {'message':'We need csv file.', 'code':'UNEXPECTED_FILE_TYPE', 'id':'a3c9edda-dd9b-4596-be6a-150ef813745c', [x: string]: any }, + 'ae6e7a22-971b-4b52-b2be-fc0b9b121fe9': {'message':'That file is too big.', 'code':'TOO_BIG_FILE', 'id':'ae6e7a22-971b-4b52-b2be-fc0b9b121fe9', [x: string]: any }, + '99efe367-ce6e-4d44-93f8-5fae7b040356': {'message':'That file is empty.', 'code':'EMPTY_FILE', 'id':'99efe367-ce6e-4d44-93f8-5fae7b040356', [x: string]: any }, + '3b71d086-c3fa-431c-b01d-ded65a777172': {'message':'No such file.', 'code':'NO_SUCH_FILE', 'id':'3b71d086-c3fa-431c-b01d-ded65a777172', [x: string]: any }, + 'e842c379-8ac7-4cf7-b07a-4d4de7e4671c': {'message':'No such user.', 'code':'NO_SUCH_USER', 'id':'e842c379-8ac7-4cf7-b07a-4d4de7e4671c', [x: string]: any }, + '7f60115d-8d93-4b0f-bd0e-3815dcbb389f': {'message':'That file is empty.', 'code':'EMPTY_FILE', 'id':'7f60115d-8d93-4b0f-bd0e-3815dcbb389f', [x: string]: any }, + '600917d4-a4cb-4cc5-8ba8-7ac8ea3c7779': {'message':'You cannot create antenna any more.', 'code':'TOO_MANY_ANTENNAS', 'id':'600917d4-a4cb-4cc5-8ba8-7ac8ea3c7779', [x: string]: any }, + '56734f8b-3928-431e-bf80-6ff87df40cb3': {'message':'No such note.', 'code':'NO_SUCH_NOTE', 'id':'56734f8b-3928-431e-bf80-6ff87df40cb3', [x: string]: any }, + '72dab508-c64d-498f-8740-a8eec1ba385a': {'message':'You can not pin notes any more.', 'code':'PIN_LIMIT_EXCEEDED', 'id':'72dab508-c64d-498f-8740-a8eec1ba385a', [x: string]: any }, + '8b18c2b7-68fe-4edb-9892-c0cbaeb6c913': {'message':'That note has already been pinned.', 'code':'ALREADY_PINNED', 'id':'8b18c2b7-68fe-4edb-9892-c0cbaeb6c913', [x: string]: any }, + '97a1e8e7-c0f7-47d2-957a-92e61256e01a': {'message':'No such key.', 'code':'NO_SUCH_KEY', 'id':'97a1e8e7-c0f7-47d2-957a-92e61256e01a', [x: string]: any }, + 'ac3ed68a-62f0-422b-a7bc-d5e09e8f6a6a': {'message':'No such key.', 'code':'NO_SUCH_KEY', 'id':'ac3ed68a-62f0-422b-a7bc-d5e09e8f6a6a', [x: string]: any }, + '1fac4e8a-a6cd-4e39-a4a5-3a7e11f1b019': {'message':'No such key.', 'code':'NO_SUCH_KEY', 'id':'1fac4e8a-a6cd-4e39-a4a5-3a7e11f1b019', [x: string]: any }, + '454170ce-9d63-4a43-9da1-ea10afe81e21': {'message':'No such note.', 'code':'NO_SUCH_NOTE', 'id':'454170ce-9d63-4a43-9da1-ea10afe81e21', [x: string]: any }, + 'e54c1d7e-e7d6-4103-86b6-0a95069b4ad3': {'message':'Incorrect password.', 'code':'INCORRECT_PASSWORD', 'id':'e54c1d7e-e7d6-4103-86b6-0a95069b4ad3', [x: string]: any }, + 'a2defefb-f220-8849-0af6-17f816099323': {'message':'Unavailable email address.', 'code':'UNAVAILABLE', 'id':'a2defefb-f220-8849-0af6-17f816099323', [x: string]: any }, + '324c7a88-59f2-492f-903f-89134f93e47e': {'message':'Email address is required.', 'code':'EMAIL_REQUIRED', 'id':'324c7a88-59f2-492f-903f-89134f93e47e', [x: string]: any }, + '539f3a45-f215-4f81-a9a8-31293640207f': {'message':'No such avatar file.', 'code':'NO_SUCH_AVATAR', 'id':'539f3a45-f215-4f81-a9a8-31293640207f', [x: string]: any }, + '0d8f5629-f210-41c2-9433-735831a58595': {'message':'No such banner file.', 'code':'NO_SUCH_BANNER', 'id':'0d8f5629-f210-41c2-9433-735831a58595', [x: string]: any }, + 'f419f9f8-2f4d-46b1-9fb4-49d3a2fd7191': {'message':'The file specified as an avatar is not an image.', 'code':'AVATAR_NOT_AN_IMAGE', 'id':'f419f9f8-2f4d-46b1-9fb4-49d3a2fd7191', [x: string]: any }, + '75aedb19-2afd-4e6d-87fc-67941256fa60': {'message':'The file specified as a banner is not an image.', 'code':'BANNER_NOT_AN_IMAGE', 'id':'75aedb19-2afd-4e6d-87fc-67941256fa60', [x: string]: any }, + '8e01b590-7eb9-431b-a239-860e086c408e': {'message':'No such page.', 'code':'NO_SUCH_PAGE', 'id':'8e01b590-7eb9-431b-a239-860e086c408e', [x: string]: any }, + '0d786918-10df-41cd-8f33-8dec7d9a89a5': {'message':'Invalid Regular Expression.', 'code':'INVALID_REGEXP', 'id':'0d786918-10df-41cd-8f33-8dec7d9a89a5', [x: string]: any }, + '010665b1-a211-42d2-bc64-8f6609d79785': {'message':'Too many muted words.', 'code':'TOO_MANY_MUTED_WORDS', 'id':'010665b1-a211-42d2-bc64-8f6609d79785', [x: string]: any }, + 'bf326f31-d430-4f97-9933-5d61e4d48a23': {'message':'User ActivityPup URI is null.', 'code':'URI_NULL', 'id':'bf326f31-d430-4f97-9933-5d61e4d48a23', [x: string]: any }, + '25c90186-4ab0-49c8-9bba-a1fa6c202ba4': {'message':'You can\'t set yourself as your own alias.', 'code':'FORBIDDEN_TO_SET_YOURSELF', 'id':'25c90186-4ab0-49c8-9bba-a1fa6c202ba4', [x: string]: any }, + '8feff0ba-5ab5-585b-31f4-4df816663fad': {'message':'This feature is restricted by your role.', 'code':'RESTRICTED_BY_ROLE', 'id':'8feff0ba-5ab5-585b-31f4-4df816663fad', [x: string]: any }, + '0b3f9f6a-2f4d-4b1f-9fb4-49d3a2fd7191': {'message':'Your new name contains prohibited words.', 'code':'YOUR_NAME_CONTAINS_PROHIBITED_WORDS', 'id':'0b3f9f6a-2f4d-4b1f-9fb4-49d3a2fd7191', 'httpStatusCode':422, [x: string]: any }, + 'b5c90186-4ab0-49c8-9bba-a1f766282ba4': {'message':'Destination account doesn\'t have proper \'Known As\' alias, or has already moved.', 'code':'DESTINATION_ACCOUNT_FORBIDS', 'id':'b5c90186-4ab0-49c8-9bba-a1f766282ba4', [x: string]: any }, + '4362e8dc-731f-4ad8-a694-be2a88922a24': {'message':'The root can\'t migrate.', 'code':'NOT_ROOT_FORBIDDEN', 'id':'4362e8dc-731f-4ad8-a694-be2a88922a24', [x: string]: any }, + '95ba11b9-90e8-43a5-ba16-7acc1ab32e71': {'message':'Local User ActivityPup URI is null.', 'code':'URI_NULL', 'id':'95ba11b9-90e8-43a5-ba16-7acc1ab32e71', [x: string]: any }, + 'b234a14e-9ebe-4581-8000-074b3c215962': {'message':'Account was already moved to another account.', 'code':'ALREADY_MOVED', 'id':'b234a14e-9ebe-4581-8000-074b3c215962', [x: string]: any }, + '87a9bb19-111e-4e37-81d3-a3e7426453b0': {'message':'You cannot create webhook any more.', 'code':'TOO_MANY_WEBHOOKS', 'id':'87a9bb19-111e-4e37-81d3-a3e7426453b0', [x: string]: any }, + '50f614d9-3047-4f7e-90d8-ad6b2d5fb098': {'message':'No such webhook.', 'code':'NO_SUCH_WEBHOOK', 'id':'50f614d9-3047-4f7e-90d8-ad6b2d5fb098', [x: string]: any }, + 'fb0fea69-da18-45b1-828d-bd4fd1612518': {'message':'No such webhook.', 'code':'NO_SUCH_WEBHOOK', 'id':'fb0fea69-da18-45b1-828d-bd4fd1612518', [x: string]: any }, + 'bae73e5a-5522-4965-ae19-3a8688e71d82': {'message':'No such webhook.', 'code':'NO_SUCH_WEBHOOK', 'id':'bae73e5a-5522-4965-ae19-3a8688e71d82', [x: string]: any }, + '8b165dd3-6f37-4557-8db1-73175d63c641': {'message':'You have exceeded the limit for creating an invitation code.', 'code':'EXCEEDED_LIMIT_OF_CREATE_INVITE_CODE', 'id':'8b165dd3-6f37-4557-8db1-73175d63c641', [x: string]: any }, + 'cd4f9ae4-7854-4e3e-8df9-c296f051e634': {'message':'No such invite code.', 'code':'NO_SUCH_INVITE_CODE', 'id':'cd4f9ae4-7854-4e3e-8df9-c296f051e634', [x: string]: any }, + 'ff17af39-000c-4d4e-abdf-848fa30fc1ce': {'message':'You can\'t delete this invite code.', 'code':'CAN_NOT_DELETE_INVITE_CODE', 'id':'ff17af39-000c-4d4e-abdf-848fa30fc1ce', [x: string]: any }, + '6fef56f3-e765-4957-88e5-c6f65329b8a5': {'message':'No such user.', 'code':'NO_SUCH_USER', 'id':'6fef56f3-e765-4957-88e5-c6f65329b8a5', [x: string]: any }, + 'a4619cb2-5f23-484b-9301-94c903074e10': {'message':'Mutee is yourself.', 'code':'MUTEE_IS_YOURSELF', 'id':'a4619cb2-5f23-484b-9301-94c903074e10', [x: string]: any }, + '7e7359cb-160c-4956-b08f-4d1c653cd007': {'message':'You are already muting that user.', 'code':'ALREADY_MUTING', 'id':'7e7359cb-160c-4956-b08f-4d1c653cd007', [x: string]: any }, + 'b851d00b-8ab1-4a56-8b1b-e24187cb48ef': {'message':'No such user.', 'code':'NO_SUCH_USER', 'id':'b851d00b-8ab1-4a56-8b1b-e24187cb48ef', [x: string]: any }, + 'f428b029-6b39-4d48-a1d2-cc1ae6dd5cf9': {'message':'Mutee is yourself.', 'code':'MUTEE_IS_YOURSELF', 'id':'f428b029-6b39-4d48-a1d2-cc1ae6dd5cf9', [x: string]: any }, + '5467d020-daa9-4553-81e1-135c0c35a96d': {'message':'You are not muting that user.', 'code':'NOT_MUTING', 'id':'5467d020-daa9-4553-81e1-135c0c35a96d', [x: string]: any }, + '5e0a5dff-1e94-4202-87ae-4d9c89eb2271': {'message':'No such user.', 'code':'NO_SUCH_USER', 'id':'5e0a5dff-1e94-4202-87ae-4d9c89eb2271', [x: string]: any }, + '37285718-52f7-4aef-b7de-c38b8e8a8420': {'message':'Mutee is yourself.', 'code':'MUTEE_IS_YOURSELF', 'id':'37285718-52f7-4aef-b7de-c38b8e8a8420', [x: string]: any }, + 'ccfecbe4-1f1c-4fc2-8a3d-c3ffee61cb7b': {'message':'You are already muting that user.', 'code':'ALREADY_MUTING', 'id':'ccfecbe4-1f1c-4fc2-8a3d-c3ffee61cb7b', [x: string]: any }, + '9b6728cf-638c-4aa1-bedb-e07d8101474d': {'message':'No such user.', 'code':'NO_SUCH_USER', 'id':'9b6728cf-638c-4aa1-bedb-e07d8101474d', [x: string]: any }, + '619b1314-0850-4597-a242-e245f3da42af': {'message':'Mutee is yourself.', 'code':'MUTEE_IS_YOURSELF', 'id':'619b1314-0850-4597-a242-e245f3da42af', [x: string]: any }, + '2e4ef874-8bf0-4b4b-b069-4598f6d05817': {'message':'You are not muting that user.', 'code':'NOT_MUTING', 'id':'2e4ef874-8bf0-4b4b-b069-4598f6d05817', [x: string]: any }, + '47db1a1c-b0af-458d-8fb4-986e4efafe1e': {'message':'No such note.', 'code':'NO_SUCH_NOTE', 'id':'47db1a1c-b0af-458d-8fb4-986e4efafe1e', [x: string]: any }, + 'e1035875-9551-45ec-afa8-1ded1fcb53c8': {'message':'No such note.', 'code':'NO_SUCH_NOTE', 'id':'e1035875-9551-45ec-afa8-1ded1fcb53c8', [x: string]: any }, + 'b5c90186-4ab0-49c8-9bba-a1f76c282ba4': {'message':'No such renote target.', 'code':'NO_SUCH_RENOTE_TARGET', 'id':'b5c90186-4ab0-49c8-9bba-a1f76c282ba4', [x: string]: any }, + 'fd4cc33e-2a37-48dd-99cc-9b806eb2031a': {'message':'You can not Renote a pure Renote.', 'code':'CANNOT_RENOTE_TO_A_PURE_RENOTE', 'id':'fd4cc33e-2a37-48dd-99cc-9b806eb2031a', [x: string]: any }, + 'be9529e9-fe72-4de0-ae43-0b363c4938af': {'message':'You can not Renote due to target visibility.', 'code':'CANNOT_RENOTE_DUE_TO_VISIBILITY', 'id':'be9529e9-fe72-4de0-ae43-0b363c4938af', [x: string]: any }, + '749ee0f6-d3da-459a-bf02-282e2da4292c': {'message':'No such reply target.', 'code':'NO_SUCH_REPLY_TARGET', 'id':'749ee0f6-d3da-459a-bf02-282e2da4292c', [x: string]: any }, + 'b98980fa-3780-406c-a935-b6d0eeee10d1': {'message':'You cannot reply to an invisible Note.', 'code':'CANNOT_REPLY_TO_AN_INVISIBLE_NOTE', 'id':'b98980fa-3780-406c-a935-b6d0eeee10d1', [x: string]: any }, + '3ac74a84-8fd5-4bb0-870f-01804f82ce15': {'message':'You can not reply to a pure Renote.', 'code':'CANNOT_REPLY_TO_A_PURE_RENOTE', 'id':'3ac74a84-8fd5-4bb0-870f-01804f82ce15', [x: string]: any }, + 'ed940410-535c-4d5e-bfa3-af798671e93c': {'message':'You cannot reply to a specified visibility note with extended visibility.', 'code':'CANNOT_REPLY_TO_SPECIFIED_VISIBILITY_NOTE_WITH_EXTENDED_VISIBILITY', 'id':'ed940410-535c-4d5e-bfa3-af798671e93c', [x: string]: any }, + '04da457d-b083-4055-9082-955525eda5a5': {'message':'Poll is already expired.', 'code':'CANNOT_CREATE_ALREADY_EXPIRED_POLL', 'id':'04da457d-b083-4055-9082-955525eda5a5', [x: string]: any }, + 'b1653923-5453-4edc-b786-7c4f39bb0bbb': {'message':'No such channel.', 'code':'NO_SUCH_CHANNEL', 'id':'b1653923-5453-4edc-b786-7c4f39bb0bbb', [x: string]: any }, + 'b390d7e1-8a5e-46ed-b625-06271cafd3d3': {'message':'You have been blocked by this user.', 'code':'YOU_HAVE_BEEN_BLOCKED', 'id':'b390d7e1-8a5e-46ed-b625-06271cafd3d3', [x: string]: any }, + 'b6992544-63e7-67f0-fa7f-32444b1b5306': {'message':'Some files are not found.', 'code':'NO_SUCH_FILE', 'id':'b6992544-63e7-67f0-fa7f-32444b1b5306', [x: string]: any }, + '33510210-8452-094c-6227-4a6c05d99f00': {'message':'Cannot renote outside of channel.', 'code':'CANNOT_RENOTE_OUTSIDE_OF_CHANNEL', 'id':'33510210-8452-094c-6227-4a6c05d99f00', [x: string]: any }, + 'aa6e01d3-a85c-669d-758a-76aab43af334': {'message':'Cannot post because it contains prohibited words.', 'code':'CONTAINS_PROHIBITED_WORDS', 'id':'aa6e01d3-a85c-669d-758a-76aab43af334', [x: string]: any }, + '4de0363a-3046-481b-9b0f-feff3e211025': {'message':'Cannot post because it exceeds the allowed number of mentions.', 'code':'CONTAINS_TOO_MANY_MENTIONS', 'id':'4de0363a-3046-481b-9b0f-feff3e211025', [x: string]: any }, + '490be23f-8c1f-4796-819f-94cb4f9d1630': {'message':'No such note.', 'code':'NO_SUCH_NOTE', 'id':'490be23f-8c1f-4796-819f-94cb4f9d1630', [x: string]: any }, + 'fe8d7103-0ea8-4ec3-814d-f8b401dc69e9': {'message':'Access denied.', 'code':'ACCESS_DENIED', 'id':'fe8d7103-0ea8-4ec3-814d-f8b401dc69e9', [x: string]: any }, + '6dd26674-e060-4816-909a-45ba3f4da458': {'message':'No such note.', 'code':'NO_SUCH_NOTE', 'id':'6dd26674-e060-4816-909a-45ba3f4da458', [x: string]: any }, + 'a402c12b-34dd-41d2-97d8-4d2ffd96a1a6': {'message':'The note has already been marked as a favorite.', 'code':'ALREADY_FAVORITED', 'id':'a402c12b-34dd-41d2-97d8-4d2ffd96a1a6', [x: string]: any }, + '80848a2c-398f-4343-baa9-df1d57696c56': {'message':'No such note.', 'code':'NO_SUCH_NOTE', 'id':'80848a2c-398f-4343-baa9-df1d57696c56', [x: string]: any }, + 'b625fc69-635e-45e9-86f4-dbefbef35af5': {'message':'You have not marked that note a favorite.', 'code':'NOT_FAVORITED', 'id':'b625fc69-635e-45e9-86f4-dbefbef35af5', [x: string]: any }, + '0332fc13-6ab2-4427-ae80-a9fadffd1a6b': {'message':'Global timeline has been disabled.', 'code':'GTL_DISABLED', 'id':'0332fc13-6ab2-4427-ae80-a9fadffd1a6b', [x: string]: any }, + '620763f4-f621-4533-ab33-0577a1a3c342': {'message':'Hybrid timeline has been disabled.', 'code':'STL_DISABLED', 'id':'620763f4-f621-4533-ab33-0577a1a3c342', [x: string]: any }, + 'dfaa3eb7-8002-4cb7-bcc4-1095df46656f': {'message':'Specifying both withReplies and withFiles is not supported', 'code':'BOTH_WITH_REPLIES_AND_WITH_FILES', 'id':'dfaa3eb7-8002-4cb7-bcc4-1095df46656f', [x: string]: any }, + '45a6eb02-7695-4393-b023-dd3be9aaaefd': {'message':'Local timeline has been disabled.', 'code':'LTL_DISABLED', 'id':'45a6eb02-7695-4393-b023-dd3be9aaaefd', [x: string]: any }, + 'dd9c8400-1cb5-4eef-8a31-200c5f933793': {'message':'Specifying both withReplies and withFiles is not supported', 'code':'BOTH_WITH_REPLIES_AND_WITH_FILES', 'id':'dd9c8400-1cb5-4eef-8a31-200c5f933793', [x: string]: any }, + 'ecafbd2e-c283-4d6d-aecb-1a0a33b75396': {'message':'No such note.', 'code':'NO_SUCH_NOTE', 'id':'ecafbd2e-c283-4d6d-aecb-1a0a33b75396', [x: string]: any }, + '5f979967-52d9-4314-a911-1c673727f92f': {'message':'The note does not attach a poll.', 'code':'NO_POLL', 'id':'5f979967-52d9-4314-a911-1c673727f92f', [x: string]: any }, + 'e0cc9a04-f2e8-41e4-a5f1-4127293260cc': {'message':'Choice ID is invalid.', 'code':'INVALID_CHOICE', 'id':'e0cc9a04-f2e8-41e4-a5f1-4127293260cc', [x: string]: any }, + '0963fc77-efac-419b-9424-b391608dc6d8': {'message':'You have already voted.', 'code':'ALREADY_VOTED', 'id':'0963fc77-efac-419b-9424-b391608dc6d8', [x: string]: any }, + '1022a357-b085-4054-9083-8f8de358337e': {'message':'The poll is already expired.', 'code':'ALREADY_EXPIRED', 'id':'1022a357-b085-4054-9083-8f8de358337e', [x: string]: any }, + '85a5377e-b1e9-4617-b0b9-5bea73331e49': {'message':'You cannot vote this poll because you have been blocked by this user.', 'code':'YOU_HAVE_BEEN_BLOCKED', 'id':'85a5377e-b1e9-4617-b0b9-5bea73331e49', [x: string]: any }, + '263fff3d-d0e1-4af4-bea7-8408059b451a': {'message':'No such note.', 'code':'NO_SUCH_NOTE', 'id':'263fff3d-d0e1-4af4-bea7-8408059b451a', [x: string]: any }, + '033d0620-5bfe-4027-965d-980b0c85a3ea': {'message':'No such note.', 'code':'NO_SUCH_NOTE', 'id':'033d0620-5bfe-4027-965d-980b0c85a3ea', [x: string]: any }, + '71efcf98-86d6-4e2b-b2ad-9d032369366b': {'message':'You are already reacting to that note.', 'code':'ALREADY_REACTED', 'id':'71efcf98-86d6-4e2b-b2ad-9d032369366b', [x: string]: any }, + '20ef5475-9f38-4e4c-bd33-de6d979498ec': {'message':'You cannot react this note because you have been blocked by this user.', 'code':'YOU_HAVE_BEEN_BLOCKED', 'id':'20ef5475-9f38-4e4c-bd33-de6d979498ec', [x: string]: any }, + 'eaccdc08-ddef-43fe-908f-d108faad57f5': {'message':'You cannot react to Renote.', 'code':'CANNOT_REACT_TO_RENOTE', 'id':'eaccdc08-ddef-43fe-908f-d108faad57f5', [x: string]: any }, + '764d9fce-f9f2-4a0e-92b1-6ceac9a7ad37': {'message':'No such note.', 'code':'NO_SUCH_NOTE', 'id':'764d9fce-f9f2-4a0e-92b1-6ceac9a7ad37', [x: string]: any }, + '92f4426d-4196-4125-aa5b-02943e2ec8fc': {'message':'You are not reacting to that note.', 'code':'NOT_REACTED', 'id':'92f4426d-4196-4125-aa5b-02943e2ec8fc', [x: string]: any }, + '12908022-2e21-46cd-ba6a-3edaf6093f46': {'message':'No such note.', 'code':'NO_SUCH_NOTE', 'id':'12908022-2e21-46cd-ba6a-3edaf6093f46', [x: string]: any }, + '0b44998d-77aa-4427-80d0-d2c9b8523011': {'message':'Search of notes unavailable.', 'code':'UNAVAILABLE', 'id':'0b44998d-77aa-4427-80d0-d2c9b8523011', [x: string]: any }, + '24fcbfc6-2e37-42b6-8388-c29b3861a08d': {'message':'No such note.', 'code':'NO_SUCH_NOTE', 'id':'24fcbfc6-2e37-42b6-8388-c29b3861a08d', [x: string]: any }, + '5ff67ada-ed3b-2e71-8e87-a1a421e177d2': {'message':'No such note.', 'code':'NO_SUCH_NOTE', 'id':'5ff67ada-ed3b-2e71-8e87-a1a421e177d2', [x: string]: any }, + 'bddd57ac-ceb3-b29d-4334-86ea5fae481a': {'message':'No such note.', 'code':'NO_SUCH_NOTE', 'id':'bddd57ac-ceb3-b29d-4334-86ea5fae481a', [x: string]: any }, + '50a70314-2d8a-431b-b433-efa5cc56444c': {'message':'Translate of notes unavailable.', 'code':'UNAVAILABLE', 'id':'50a70314-2d8a-431b-b433-efa5cc56444c', [x: string]: any }, + 'bea9b03f-36e0-49c5-a4db-627a029f8971': {'message':'No such note.', 'code':'NO_SUCH_NOTE', 'id':'bea9b03f-36e0-49c5-a4db-627a029f8971', [x: string]: any }, + 'ea29f2ca-c368-43b3-aaf1-5ac3e74bbe5d': {'message':'Cannot translate invisible note.', 'code':'CANNOT_TRANSLATE_INVISIBLE_NOTE', 'id':'ea29f2ca-c368-43b3-aaf1-5ac3e74bbe5d', [x: string]: any }, + 'efd4a259-2442-496b-8dd7-b255aa1a160f': {'message':'No such note.', 'code':'NO_SUCH_NOTE', 'id':'efd4a259-2442-496b-8dd7-b255aa1a160f', [x: string]: any }, + '8fb1fbd5-e476-4c37-9fb0-43d55b63a2ff': {'message':'No such list.', 'code':'NO_SUCH_LIST', 'id':'8fb1fbd5-e476-4c37-9fb0-43d55b63a2ff', [x: string]: any }, + '4a13ad31-6729-46b4-b9af-e86b265c2e74': {'message':'No such page.', 'code':'NO_SUCH_PAGE', 'id':'4a13ad31-6729-46b4-b9af-e86b265c2e74', [x: string]: any }, + 'b7b97489-0f66-4b12-a5ff-b21bd63f6e1c': {'message':'No such file.', 'code':'NO_SUCH_FILE', 'id':'b7b97489-0f66-4b12-a5ff-b21bd63f6e1c', [x: string]: any }, + '4650348e-301c-499a-83c9-6aa988c66bc1': {'message':'Specified name already exists.', 'code':'NAME_ALREADY_EXISTS', 'id':'4650348e-301c-499a-83c9-6aa988c66bc1', [x: string]: any }, + 'eb0c6e1d-d519-4764-9486-52a7e1c6392a': {'message':'No such page.', 'code':'NO_SUCH_PAGE', 'id':'eb0c6e1d-d519-4764-9486-52a7e1c6392a', [x: string]: any }, + '8b741b3e-2c22-44b3-a15f-29949aa1601e': {'message':'Access denied.', 'code':'ACCESS_DENIED', 'id':'8b741b3e-2c22-44b3-a15f-29949aa1601e', [x: string]: any }, + 'cc98a8a2-0dc3-4123-b198-62c71df18ed3': {'message':'No such page.', 'code':'NO_SUCH_PAGE', 'id':'cc98a8a2-0dc3-4123-b198-62c71df18ed3', [x: string]: any }, + '28800466-e6db-40f2-8fae-bf9e82aa92b8': {'message':'You cannot like your page.', 'code':'YOUR_PAGE', 'id':'28800466-e6db-40f2-8fae-bf9e82aa92b8', [x: string]: any }, + 'd4c1edbe-7da2-4eae-8714-1acfd2d63941': {'message':'The page has already been liked.', 'code':'ALREADY_LIKED', 'id':'d4c1edbe-7da2-4eae-8714-1acfd2d63941', [x: string]: any }, + '222120c0-3ead-4528-811b-b96f233388d7': {'message':'No such page.', 'code':'NO_SUCH_PAGE', 'id':'222120c0-3ead-4528-811b-b96f233388d7', [x: string]: any }, + 'a0d41e20-1993-40bd-890e-f6e560ae648e': {'message':'No such page.', 'code':'NO_SUCH_PAGE', 'id':'a0d41e20-1993-40bd-890e-f6e560ae648e', [x: string]: any }, + 'f5e586b0-ce93-4050-b0e3-7f31af5259ee': {'message':'You have not liked that page.', 'code':'NOT_LIKED', 'id':'f5e586b0-ce93-4050-b0e3-7f31af5259ee', [x: string]: any }, + '21149b9e-3616-4778-9592-c4ce89f5a864': {'message':'No such page.', 'code':'NO_SUCH_PAGE', 'id':'21149b9e-3616-4778-9592-c4ce89f5a864', [x: string]: any }, + '3c15cd52-3b4b-4274-967d-6456fc4f792b': {'message':'Access denied.', 'code':'ACCESS_DENIED', 'id':'3c15cd52-3b4b-4274-967d-6456fc4f792b', [x: string]: any }, + 'cfc23c7c-3887-490e-af30-0ed576703c82': {'message':'No such file.', 'code':'NO_SUCH_FILE', 'id':'cfc23c7c-3887-490e-af30-0ed576703c82', [x: string]: any }, + '2298a392-d4a1-44c5-9ebb-ac1aeaa5a9ab': {'message':'Specified name already exists.', 'code':'NAME_ALREADY_EXISTS', 'id':'2298a392-d4a1-44c5-9ebb-ac1aeaa5a9ab', [x: string]: any }, + 'de1623ef-bbb3-4289-a71e-14cfa83d9740': {'message':'No such flash.', 'code':'NO_SUCH_FLASH', 'id':'de1623ef-bbb3-4289-a71e-14cfa83d9740', [x: string]: any }, + '1036ad7b-9f92-4fff-89c3-0e50dc941704': {'message':'Access denied.', 'code':'ACCESS_DENIED', 'id':'1036ad7b-9f92-4fff-89c3-0e50dc941704', [x: string]: any }, + 'c07c1491-9161-4c5c-9d75-01906f911f73': {'message':'No such flash.', 'code':'NO_SUCH_FLASH', 'id':'c07c1491-9161-4c5c-9d75-01906f911f73', [x: string]: any }, + '3fd8a0e7-5955-4ba9-85bb-bf3e0c30e13b': {'message':'You cannot like your flash.', 'code':'YOUR_FLASH', 'id':'3fd8a0e7-5955-4ba9-85bb-bf3e0c30e13b', [x: string]: any }, + '010065cf-ad43-40df-8067-abff9f4686e3': {'message':'The flash has already been liked.', 'code':'ALREADY_LIKED', 'id':'010065cf-ad43-40df-8067-abff9f4686e3', [x: string]: any }, + 'f0d34a1a-d29a-401d-90ba-1982122b5630': {'message':'No such flash.', 'code':'NO_SUCH_FLASH', 'id':'f0d34a1a-d29a-401d-90ba-1982122b5630', [x: string]: any }, + 'afe8424a-a69e-432d-a5f2-2f0740c62410': {'message':'No such flash.', 'code':'NO_SUCH_FLASH', 'id':'afe8424a-a69e-432d-a5f2-2f0740c62410', [x: string]: any }, + '755f25a7-9871-4f65-9f34-51eaad9ae0ac': {'message':'You have not liked that flash.', 'code':'NOT_LIKED', 'id':'755f25a7-9871-4f65-9f34-51eaad9ae0ac', [x: string]: any }, + '611e13d2-309e-419a-a5e4-e0422da39b02': {'message':'No such flash.', 'code':'NO_SUCH_FLASH', 'id':'611e13d2-309e-419a-a5e4-e0422da39b02', [x: string]: any }, + '08e60c88-5948-478e-a132-02ec701d67b2': {'message':'Access denied.', 'code':'ACCESS_DENIED', 'id':'08e60c88-5948-478e-a132-02ec701d67b2', [x: string]: any }, + 'd785b897-fcd3-4fe9-8fc3-b85c26e6c932': {'message':'No such note.', 'code':'NO_SUCH_NOTE', 'id':'d785b897-fcd3-4fe9-8fc3-b85c26e6c932', [x: string]: any }, + 'de5502bf-009a-4639-86c1-fec349e46dcb': {'message':'No such role.', 'code':'NO_SUCH_ROLE', 'id':'de5502bf-009a-4639-86c1-fec349e46dcb', [x: string]: any }, + '30aaaee3-4792-48dc-ab0d-cf501a575ac5': {'message':'No such role.', 'code':'NO_SUCH_ROLE', 'id':'30aaaee3-4792-48dc-ab0d-cf501a575ac5', [x: string]: any }, + 'eb70323a-df61-4dd4-ad90-89c83c7cf26e': {'message':'No such role.', 'code':'NO_SUCH_ROLE', 'id':'eb70323a-df61-4dd4-ad90-89c83c7cf26e', [x: string]: any }, + ' b09d8066-8064-5613-efb6-0e963b21d012': {'message':'No such registration.', 'code':'NO_SUCH_REGISTRATION', 'id':' b09d8066-8064-5613-efb6-0e963b21d012', [x: string]: any }, + '27fa5435-88ab-43de-9360-387de88727cd': {'message':'No such user.', 'code':'NO_SUCH_USER', 'id':'27fa5435-88ab-43de-9360-387de88727cd', [x: string]: any }, + '3c6a84db-d619-26af-ca14-06232a21df8a': {'message':'Forbidden.', 'code':'FORBIDDEN', 'id':'3c6a84db-d619-26af-ca14-06232a21df8a', [x: string]: any }, + '63e4aba4-4156-4e53-be25-c9559e42d71b': {'message':'No such user.', 'code':'NO_SUCH_USER', 'id':'63e4aba4-4156-4e53-be25-c9559e42d71b', [x: string]: any }, + 'f6cdb0df-c19f-ec5c-7dbb-0ba84a1f92ba': {'message':'Forbidden.', 'code':'FORBIDDEN', 'id':'f6cdb0df-c19f-ec5c-7dbb-0ba84a1f92ba', [x: string]: any }, + 'a2b007b9-4782-4eba-abd3-93b05ed4130d': {'message':'Birthday date format is invalid.', 'code':'BIRTHDAY_DATE_FORMAT_INVALID', 'id':'a2b007b9-4782-4eba-abd3-93b05ed4130d', [x: string]: any }, + 'e6965129-7b2a-40a4-bae2-cd84cd434822': {'message':'No such user.', 'code':'NO_SUCH_USER', 'id':'e6965129-7b2a-40a4-bae2-cd84cd434822', [x: string]: any }, + '0cf21a28-7715-4f39-a20d-777bfdb8d138': {'message':'You cannot create user list any more.', 'code':'TOO_MANY_USERLISTS', 'id':'0cf21a28-7715-4f39-a20d-777bfdb8d138', [x: string]: any }, + '78436795-db79-42f5-b1e2-55ea2cf19166': {'message':'No such list.', 'code':'NO_SUCH_LIST', 'id':'78436795-db79-42f5-b1e2-55ea2cf19166', [x: string]: any }, + 'a8af4a82-0980-4cc4-a6af-8b0ffd54465e': {'message':'No such user.', 'code':'NO_SUCH_USER', 'id':'a8af4a82-0980-4cc4-a6af-8b0ffd54465e', [x: string]: any }, + '53858f1b-3315-4a01-81b7-db9b48d4b79a': {'message':'Not allowed to load the remote user\'s list', 'code':'REMOTE_USER_NOT_ALLOWED', 'id':'53858f1b-3315-4a01-81b7-db9b48d4b79a', [x: string]: any }, + '7f44670e-ab16-43b8-b4c1-ccd2ee89cc02': {'message':'No such list.', 'code':'NO_SUCH_LIST', 'id':'7f44670e-ab16-43b8-b4c1-ccd2ee89cc02', [x: string]: any }, + '588e7f72-c744-4a61-b180-d354e912bda2': {'message':'No such user.', 'code':'NO_SUCH_USER', 'id':'588e7f72-c744-4a61-b180-d354e912bda2', [x: string]: any }, + '2214501d-ac96-4049-b717-91e42272a711': {'message':'No such list.', 'code':'NO_SUCH_LIST', 'id':'2214501d-ac96-4049-b717-91e42272a711', [x: string]: any }, + 'a89abd3d-f0bc-4cce-beb1-2f446f4f1e6a': {'message':'No such user.', 'code':'NO_SUCH_USER', 'id':'a89abd3d-f0bc-4cce-beb1-2f446f4f1e6a', [x: string]: any }, + '1de7c884-1595-49e9-857e-61f12f4d4fc5': {'message':'That user has already been added to that list.', 'code':'ALREADY_ADDED', 'id':'1de7c884-1595-49e9-857e-61f12f4d4fc5', [x: string]: any }, + '990232c5-3f9d-4d83-9f3f-ef27b6332a4b': {'message':'You cannot push this user because you have been blocked by this user.', 'code':'YOU_HAVE_BEEN_BLOCKED', 'id':'990232c5-3f9d-4d83-9f3f-ef27b6332a4b', [x: string]: any }, + '2dd9752e-a338-413d-8eec-41814430989b': {'message':'You can not push users any more.', 'code':'TOO_MANY_USERS', 'id':'2dd9752e-a338-413d-8eec-41814430989b', [x: string]: any }, + '7bc05c21-1d7a-41ae-88f1-66820f4dc686': {'message':'No such list.', 'code':'NO_SUCH_LIST', 'id':'7bc05c21-1d7a-41ae-88f1-66820f4dc686', [x: string]: any }, + '7dbaf3cf-7b42-4b8f-b431-b3919e580dbe': {'message':'No such user list.', 'code':'NO_SUCH_USER_LIST', 'id':'7dbaf3cf-7b42-4b8f-b431-b3919e580dbe', [x: string]: any }, + '6425bba0-985b-461e-af1b-518070e72081': {'message':'The list has already been favorited.', 'code':'ALREADY_FAVORITED', 'id':'6425bba0-985b-461e-af1b-518070e72081', [x: string]: any }, + 'baedb33e-76b8-4b0c-86a8-9375c0a7b94b': {'message':'No such user list.', 'code':'NO_SUCH_USER_LIST', 'id':'baedb33e-76b8-4b0c-86a8-9375c0a7b94b', [x: string]: any }, + '835c4b27-463d-4cfa-969b-a9058678d465': {'message':'You have not favorited the list.', 'code':'ALREADY_FAVORITED', 'id':'835c4b27-463d-4cfa-969b-a9058678d465', [x: string]: any }, + '796666fe-3dff-4d39-becb-8a5932c1d5b7': {'message':'No such list.', 'code':'NO_SUCH_LIST', 'id':'796666fe-3dff-4d39-becb-8a5932c1d5b7', [x: string]: any }, + 'e9c105b2-c595-47de-97fb-7f7c2c33e92f': {'message':'You cannot create user list any more.', 'code':'TOO_MANY_USERLISTS', 'id':'e9c105b2-c595-47de-97fb-7f7c2c33e92f', [x: string]: any }, + '9292f798-6175-4f7d-93f4-b6742279667d': {'message':'No such list.', 'code':'NO_SUCH_LIST', 'id':'9292f798-6175-4f7d-93f4-b6742279667d', [x: string]: any }, + '13c457db-a8cb-4d88-b70a-211ceeeabb5f': {'message':'No such user.', 'code':'NO_SUCH_USER', 'id':'13c457db-a8cb-4d88-b70a-211ceeeabb5f', [x: string]: any }, + 'c3ad6fdb-692b-47ee-a455-7bd12c7af615': {'message':'That user has already been added to that list.', 'code':'ALREADY_ADDED', 'id':'c3ad6fdb-692b-47ee-a455-7bd12c7af615', [x: string]: any }, + 'a2497f2a-2389-439c-8626-5298540530f4': {'message':'You cannot push this user because you have been blocked by this user.', 'code':'YOU_HAVE_BEEN_BLOCKED', 'id':'a2497f2a-2389-439c-8626-5298540530f4', [x: string]: any }, + '1845ea77-38d1-426e-8e4e-8b83b24f5bd7': {'message':'You can not push users any more.', 'code':'TOO_MANY_USERS', 'id':'1845ea77-38d1-426e-8e4e-8b83b24f5bd7', [x: string]: any }, + '27e494ba-2ac2-48e8-893b-10d4d8c2387b': {'message':'No such user.', 'code':'NO_SUCH_USER', 'id':'27e494ba-2ac2-48e8-893b-10d4d8c2387b', [x: string]: any }, + '91c8cb9f-36ed-46e7-9ca2-7df96ed6e222': {'message':'Specifying both withReplies and withFiles is not supported', 'code':'BOTH_WITH_REPLIES_AND_WITH_FILES', 'id':'91c8cb9f-36ed-46e7-9ca2-7df96ed6e222', [x: string]: any }, + '673a7dd2-6924-1093-e0c0-e68456ceae5c': {'message':'Reactions of the user is not public.', 'code':'REACTIONS_NOT_PUBLIC', 'id':'673a7dd2-6924-1093-e0c0-e68456ceae5c', [x: string]: any }, + '6b95fa98-8cf9-2350-e284-f0ffdb54a805': {'message':'Currently unavailable to display reactions of remote users. See https://github.com/misskey-dev/misskey/issues/12964', 'code':'IS_REMOTE_USER', 'id':'6b95fa98-8cf9-2350-e284-f0ffdb54a805', [x: string]: any }, + '1acefcb5-0959-43fd-9685-b48305736cb5': {'message':'No such user.', 'code':'NO_SUCH_USER', 'id':'1acefcb5-0959-43fd-9685-b48305736cb5', [x: string]: any }, + '1e13149e-b1e8-43cf-902e-c01dbfcb202f': {'message':'Cannot report yourself.', 'code':'CANNOT_REPORT_YOURSELF', 'id':'1e13149e-b1e8-43cf-902e-c01dbfcb202f', [x: string]: any }, + '35e166f5-05fb-4f87-a2d5-adb42676d48f': {'message':'Cannot report the admin.', 'code':'CANNOT_REPORT_THE_ADMIN', 'id':'35e166f5-05fb-4f87-a2d5-adb42676d48f', [x: string]: any }, + 'ef7b9be4-9cba-4e6f-ab41-90ed171c7d3c': {'message':'Failed to resolve remote user.', 'code':'FAILED_TO_RESOLVE_REMOTE_USER', 'id':'ef7b9be4-9cba-4e6f-ab41-90ed171c7d3c', 'kind':'server', [x: string]: any }, + '4362f8dc-731f-4ad8-a694-be5a88922a24': {'message':'No such user.', 'code':'NO_SUCH_USER', 'id':'4362f8dc-731f-4ad8-a694-be5a88922a24', 'httpStatusCode':404, [x: string]: any }, + 'bb774091-7a15-4a70-9dc5-6ac8cf125856': {'message':'External resource returned invalid schema.', 'code':'EXT_RESOURCE_RETURNED_INVALID_SCHEMA', 'id':'bb774091-7a15-4a70-9dc5-6ac8cf125856', [x: string]: any }, + '693ba8ba-b486-40df-a174-72f8279b56a4': {'message':'Hash did not match.', 'code':'EXT_RESOURCE_HASH_DIDNT_MATCH', 'id':'693ba8ba-b486-40df-a174-72f8279b56a4', [x: string]: any }, + 'eb627bc7-574b-4a52-a860-3c3eae772b88': {'message':'Provided seed is invalid.', 'code':'INVALID_SEED', 'id':'eb627bc7-574b-4a52-a860-3c3eae772b88', [x: string]: any }, + '0b4f0559-b484-4e31-9581-3f73cee89b28': {'message':'No such user.', 'code':'NO_SUCH_USER', 'id':'0b4f0559-b484-4e31-9581-3f73cee89b28', [x: string]: any }, + '96fd7bd6-d2bc-426c-a865-d055dcd2828e': {'message':'Target user is yourself.', 'code':'TARGET_IS_YOURSELF', 'id':'96fd7bd6-d2bc-426c-a865-d055dcd2828e', [x: string]: any }, + 'f13a03db-fae1-46c9-87f3-43c8165419e1': {'message':'No such game.', 'code':'NO_SUCH_GAME', 'id':'f13a03db-fae1-46c9-87f3-43c8165419e1', [x: string]: any }, + 'ace0b11f-e0a6-4076-a30d-e8284c81b2df': {'message':'No such game.', 'code':'NO_SUCH_GAME', 'id':'ace0b11f-e0a6-4076-a30d-e8284c81b2df', [x: string]: any }, + '6c2ad4a6-cbf1-4a5b-b187-b772826cfc6d': {'message':'That game has already ended.', 'code':'ALREADY_ENDED', 'id':'6c2ad4a6-cbf1-4a5b-b187-b772826cfc6d', [x: string]: any }, + '6e04164b-a992-4c93-8489-2123069973e1': {'message':'Access denied.', 'code':'ACCESS_DENIED', 'id':'6e04164b-a992-4c93-8489-2123069973e1', [x: string]: any }, + '8fb05624-b525-43dd-90f7-511852bdfeee': {'message':'No such game.', 'code':'NO_SUCH_GAME', 'id':'8fb05624-b525-43dd-90f7-511852bdfeee', [x: string]: any }, +}; diff --git a/packages/misskey-js/src/autogen/entities.ts b/packages/misskey-js/src/autogen/entities.ts index ced87c4c7e..d91912d5c8 100644 --- a/packages/misskey-js/src/autogen/entities.ts +++ b/packages/misskey-js/src/autogen/entities.ts @@ -1,581 +1,966 @@ /* eslint @typescript-eslint/naming-convention: 0 */ import { operations } from './types.js'; +import { EndpointsErrors as _Operations_EndpointsErrors } from './endpointErrors.js'; export type EmptyRequest = Record | undefined; export type EmptyResponse = Record | undefined; +export type EmptyErrors = Record | undefined; export type AdminMetaResponse = operations['admin___meta']['responses']['200']['content']['application/json']; +export type AdminMetaErrors = _Operations_EndpointsErrors['admin___meta'][keyof _Operations_EndpointsErrors['admin___meta']]; export type AdminAbuseUserReportsRequest = operations['admin___abuse-user-reports']['requestBody']['content']['application/json']; export type AdminAbuseUserReportsResponse = operations['admin___abuse-user-reports']['responses']['200']['content']['application/json']; +export type AdminAbuseUserReportsErrors = _Operations_EndpointsErrors['admin___abuse-user-reports'][keyof _Operations_EndpointsErrors['admin___abuse-user-reports']]; export type AdminAbuseReportNotificationRecipientListRequest = operations['admin___abuse-report___notification-recipient___list']['requestBody']['content']['application/json']; export type AdminAbuseReportNotificationRecipientListResponse = operations['admin___abuse-report___notification-recipient___list']['responses']['200']['content']['application/json']; +export type AdminAbuseReportNotificationRecipientListErrors = _Operations_EndpointsErrors['admin___abuse-report___notification-recipient___list'][keyof _Operations_EndpointsErrors['admin___abuse-report___notification-recipient___list']]; export type AdminAbuseReportNotificationRecipientShowRequest = operations['admin___abuse-report___notification-recipient___show']['requestBody']['content']['application/json']; export type AdminAbuseReportNotificationRecipientShowResponse = operations['admin___abuse-report___notification-recipient___show']['responses']['200']['content']['application/json']; +export type AdminAbuseReportNotificationRecipientShowErrors = _Operations_EndpointsErrors['admin___abuse-report___notification-recipient___show'][keyof _Operations_EndpointsErrors['admin___abuse-report___notification-recipient___show']]; export type AdminAbuseReportNotificationRecipientCreateRequest = operations['admin___abuse-report___notification-recipient___create']['requestBody']['content']['application/json']; export type AdminAbuseReportNotificationRecipientCreateResponse = operations['admin___abuse-report___notification-recipient___create']['responses']['200']['content']['application/json']; +export type AdminAbuseReportNotificationRecipientCreateErrors = _Operations_EndpointsErrors['admin___abuse-report___notification-recipient___create'][keyof _Operations_EndpointsErrors['admin___abuse-report___notification-recipient___create']]; export type AdminAbuseReportNotificationRecipientUpdateRequest = operations['admin___abuse-report___notification-recipient___update']['requestBody']['content']['application/json']; export type AdminAbuseReportNotificationRecipientUpdateResponse = operations['admin___abuse-report___notification-recipient___update']['responses']['200']['content']['application/json']; +export type AdminAbuseReportNotificationRecipientUpdateErrors = _Operations_EndpointsErrors['admin___abuse-report___notification-recipient___update'][keyof _Operations_EndpointsErrors['admin___abuse-report___notification-recipient___update']]; export type AdminAbuseReportNotificationRecipientDeleteRequest = operations['admin___abuse-report___notification-recipient___delete']['requestBody']['content']['application/json']; +export type AdminAbuseReportNotificationRecipientDeleteErrors = _Operations_EndpointsErrors['admin___abuse-report___notification-recipient___delete'][keyof _Operations_EndpointsErrors['admin___abuse-report___notification-recipient___delete']]; export type AdminAccountsCreateRequest = operations['admin___accounts___create']['requestBody']['content']['application/json']; export type AdminAccountsCreateResponse = operations['admin___accounts___create']['responses']['200']['content']['application/json']; +export type AdminAccountsCreateErrors = _Operations_EndpointsErrors['admin___accounts___create'][keyof _Operations_EndpointsErrors['admin___accounts___create']]; export type AdminAccountsDeleteRequest = operations['admin___accounts___delete']['requestBody']['content']['application/json']; +export type AdminAccountsDeleteErrors = _Operations_EndpointsErrors['admin___accounts___delete'][keyof _Operations_EndpointsErrors['admin___accounts___delete']]; export type AdminAccountsFindByEmailRequest = operations['admin___accounts___find-by-email']['requestBody']['content']['application/json']; export type AdminAccountsFindByEmailResponse = operations['admin___accounts___find-by-email']['responses']['200']['content']['application/json']; +export type AdminAccountsFindByEmailErrors = _Operations_EndpointsErrors['admin___accounts___find-by-email'][keyof _Operations_EndpointsErrors['admin___accounts___find-by-email']]; export type AdminAdCreateRequest = operations['admin___ad___create']['requestBody']['content']['application/json']; export type AdminAdCreateResponse = operations['admin___ad___create']['responses']['200']['content']['application/json']; +export type AdminAdCreateErrors = _Operations_EndpointsErrors['admin___ad___create'][keyof _Operations_EndpointsErrors['admin___ad___create']]; export type AdminAdDeleteRequest = operations['admin___ad___delete']['requestBody']['content']['application/json']; +export type AdminAdDeleteErrors = _Operations_EndpointsErrors['admin___ad___delete'][keyof _Operations_EndpointsErrors['admin___ad___delete']]; export type AdminAdListRequest = operations['admin___ad___list']['requestBody']['content']['application/json']; export type AdminAdListResponse = operations['admin___ad___list']['responses']['200']['content']['application/json']; +export type AdminAdListErrors = _Operations_EndpointsErrors['admin___ad___list'][keyof _Operations_EndpointsErrors['admin___ad___list']]; export type AdminAdUpdateRequest = operations['admin___ad___update']['requestBody']['content']['application/json']; +export type AdminAdUpdateErrors = _Operations_EndpointsErrors['admin___ad___update'][keyof _Operations_EndpointsErrors['admin___ad___update']]; export type AdminAnnouncementsCreateRequest = operations['admin___announcements___create']['requestBody']['content']['application/json']; export type AdminAnnouncementsCreateResponse = operations['admin___announcements___create']['responses']['200']['content']['application/json']; +export type AdminAnnouncementsCreateErrors = _Operations_EndpointsErrors['admin___announcements___create'][keyof _Operations_EndpointsErrors['admin___announcements___create']]; export type AdminAnnouncementsDeleteRequest = operations['admin___announcements___delete']['requestBody']['content']['application/json']; +export type AdminAnnouncementsDeleteErrors = _Operations_EndpointsErrors['admin___announcements___delete'][keyof _Operations_EndpointsErrors['admin___announcements___delete']]; export type AdminAnnouncementsListRequest = operations['admin___announcements___list']['requestBody']['content']['application/json']; export type AdminAnnouncementsListResponse = operations['admin___announcements___list']['responses']['200']['content']['application/json']; +export type AdminAnnouncementsListErrors = _Operations_EndpointsErrors['admin___announcements___list'][keyof _Operations_EndpointsErrors['admin___announcements___list']]; export type AdminAnnouncementsUpdateRequest = operations['admin___announcements___update']['requestBody']['content']['application/json']; +export type AdminAnnouncementsUpdateErrors = _Operations_EndpointsErrors['admin___announcements___update'][keyof _Operations_EndpointsErrors['admin___announcements___update']]; export type AdminAvatarDecorationsCreateRequest = operations['admin___avatar-decorations___create']['requestBody']['content']['application/json']; +export type AdminAvatarDecorationsCreateErrors = _Operations_EndpointsErrors['admin___avatar-decorations___create'][keyof _Operations_EndpointsErrors['admin___avatar-decorations___create']]; export type AdminAvatarDecorationsDeleteRequest = operations['admin___avatar-decorations___delete']['requestBody']['content']['application/json']; +export type AdminAvatarDecorationsDeleteErrors = _Operations_EndpointsErrors['admin___avatar-decorations___delete'][keyof _Operations_EndpointsErrors['admin___avatar-decorations___delete']]; export type AdminAvatarDecorationsListRequest = operations['admin___avatar-decorations___list']['requestBody']['content']['application/json']; export type AdminAvatarDecorationsListResponse = operations['admin___avatar-decorations___list']['responses']['200']['content']['application/json']; +export type AdminAvatarDecorationsListErrors = _Operations_EndpointsErrors['admin___avatar-decorations___list'][keyof _Operations_EndpointsErrors['admin___avatar-decorations___list']]; export type AdminAvatarDecorationsUpdateRequest = operations['admin___avatar-decorations___update']['requestBody']['content']['application/json']; +export type AdminAvatarDecorationsUpdateErrors = _Operations_EndpointsErrors['admin___avatar-decorations___update'][keyof _Operations_EndpointsErrors['admin___avatar-decorations___update']]; export type AdminDeleteAllFilesOfAUserRequest = operations['admin___delete-all-files-of-a-user']['requestBody']['content']['application/json']; +export type AdminDeleteAllFilesOfAUserErrors = _Operations_EndpointsErrors['admin___delete-all-files-of-a-user'][keyof _Operations_EndpointsErrors['admin___delete-all-files-of-a-user']]; export type AdminUnsetUserAvatarRequest = operations['admin___unset-user-avatar']['requestBody']['content']['application/json']; +export type AdminUnsetUserAvatarErrors = _Operations_EndpointsErrors['admin___unset-user-avatar'][keyof _Operations_EndpointsErrors['admin___unset-user-avatar']]; export type AdminUnsetUserBannerRequest = operations['admin___unset-user-banner']['requestBody']['content']['application/json']; +export type AdminUnsetUserBannerErrors = _Operations_EndpointsErrors['admin___unset-user-banner'][keyof _Operations_EndpointsErrors['admin___unset-user-banner']]; +export type AdminDriveCleanRemoteFilesErrors = _Operations_EndpointsErrors['admin___drive___clean-remote-files'][keyof _Operations_EndpointsErrors['admin___drive___clean-remote-files']]; +export type AdminDriveCleanupErrors = _Operations_EndpointsErrors['admin___drive___cleanup'][keyof _Operations_EndpointsErrors['admin___drive___cleanup']]; export type AdminDriveFilesRequest = operations['admin___drive___files']['requestBody']['content']['application/json']; export type AdminDriveFilesResponse = operations['admin___drive___files']['responses']['200']['content']['application/json']; +export type AdminDriveFilesErrors = _Operations_EndpointsErrors['admin___drive___files'][keyof _Operations_EndpointsErrors['admin___drive___files']]; export type AdminDriveShowFileRequest = operations['admin___drive___show-file']['requestBody']['content']['application/json']; export type AdminDriveShowFileResponse = operations['admin___drive___show-file']['responses']['200']['content']['application/json']; +export type AdminDriveShowFileErrors = _Operations_EndpointsErrors['admin___drive___show-file'][keyof _Operations_EndpointsErrors['admin___drive___show-file']]; export type AdminEmojiAddAliasesBulkRequest = operations['admin___emoji___add-aliases-bulk']['requestBody']['content']['application/json']; +export type AdminEmojiAddAliasesBulkErrors = _Operations_EndpointsErrors['admin___emoji___add-aliases-bulk'][keyof _Operations_EndpointsErrors['admin___emoji___add-aliases-bulk']]; export type AdminEmojiAddRequest = operations['admin___emoji___add']['requestBody']['content']['application/json']; export type AdminEmojiAddResponse = operations['admin___emoji___add']['responses']['200']['content']['application/json']; +export type AdminEmojiAddErrors = _Operations_EndpointsErrors['admin___emoji___add'][keyof _Operations_EndpointsErrors['admin___emoji___add']]; export type AdminEmojiCopyRequest = operations['admin___emoji___copy']['requestBody']['content']['application/json']; export type AdminEmojiCopyResponse = operations['admin___emoji___copy']['responses']['200']['content']['application/json']; +export type AdminEmojiCopyErrors = _Operations_EndpointsErrors['admin___emoji___copy'][keyof _Operations_EndpointsErrors['admin___emoji___copy']]; export type AdminEmojiDeleteBulkRequest = operations['admin___emoji___delete-bulk']['requestBody']['content']['application/json']; +export type AdminEmojiDeleteBulkErrors = _Operations_EndpointsErrors['admin___emoji___delete-bulk'][keyof _Operations_EndpointsErrors['admin___emoji___delete-bulk']]; export type AdminEmojiDeleteRequest = operations['admin___emoji___delete']['requestBody']['content']['application/json']; +export type AdminEmojiDeleteErrors = _Operations_EndpointsErrors['admin___emoji___delete'][keyof _Operations_EndpointsErrors['admin___emoji___delete']]; export type AdminEmojiImportZipRequest = operations['admin___emoji___import-zip']['requestBody']['content']['application/json']; +export type AdminEmojiImportZipErrors = _Operations_EndpointsErrors['admin___emoji___import-zip'][keyof _Operations_EndpointsErrors['admin___emoji___import-zip']]; export type AdminEmojiListRemoteRequest = operations['admin___emoji___list-remote']['requestBody']['content']['application/json']; export type AdminEmojiListRemoteResponse = operations['admin___emoji___list-remote']['responses']['200']['content']['application/json']; +export type AdminEmojiListRemoteErrors = _Operations_EndpointsErrors['admin___emoji___list-remote'][keyof _Operations_EndpointsErrors['admin___emoji___list-remote']]; export type AdminEmojiListRequest = operations['admin___emoji___list']['requestBody']['content']['application/json']; export type AdminEmojiListResponse = operations['admin___emoji___list']['responses']['200']['content']['application/json']; +export type AdminEmojiListErrors = _Operations_EndpointsErrors['admin___emoji___list'][keyof _Operations_EndpointsErrors['admin___emoji___list']]; export type AdminEmojiRemoveAliasesBulkRequest = operations['admin___emoji___remove-aliases-bulk']['requestBody']['content']['application/json']; +export type AdminEmojiRemoveAliasesBulkErrors = _Operations_EndpointsErrors['admin___emoji___remove-aliases-bulk'][keyof _Operations_EndpointsErrors['admin___emoji___remove-aliases-bulk']]; export type AdminEmojiSetAliasesBulkRequest = operations['admin___emoji___set-aliases-bulk']['requestBody']['content']['application/json']; +export type AdminEmojiSetAliasesBulkErrors = _Operations_EndpointsErrors['admin___emoji___set-aliases-bulk'][keyof _Operations_EndpointsErrors['admin___emoji___set-aliases-bulk']]; export type AdminEmojiSetCategoryBulkRequest = operations['admin___emoji___set-category-bulk']['requestBody']['content']['application/json']; +export type AdminEmojiSetCategoryBulkErrors = _Operations_EndpointsErrors['admin___emoji___set-category-bulk'][keyof _Operations_EndpointsErrors['admin___emoji___set-category-bulk']]; export type AdminEmojiSetLicenseBulkRequest = operations['admin___emoji___set-license-bulk']['requestBody']['content']['application/json']; +export type AdminEmojiSetLicenseBulkErrors = _Operations_EndpointsErrors['admin___emoji___set-license-bulk'][keyof _Operations_EndpointsErrors['admin___emoji___set-license-bulk']]; export type AdminEmojiUpdateRequest = operations['admin___emoji___update']['requestBody']['content']['application/json']; +export type AdminEmojiUpdateErrors = _Operations_EndpointsErrors['admin___emoji___update'][keyof _Operations_EndpointsErrors['admin___emoji___update']]; export type AdminFederationDeleteAllFilesRequest = operations['admin___federation___delete-all-files']['requestBody']['content']['application/json']; +export type AdminFederationDeleteAllFilesErrors = _Operations_EndpointsErrors['admin___federation___delete-all-files'][keyof _Operations_EndpointsErrors['admin___federation___delete-all-files']]; export type AdminFederationRefreshRemoteInstanceMetadataRequest = operations['admin___federation___refresh-remote-instance-metadata']['requestBody']['content']['application/json']; +export type AdminFederationRefreshRemoteInstanceMetadataErrors = _Operations_EndpointsErrors['admin___federation___refresh-remote-instance-metadata'][keyof _Operations_EndpointsErrors['admin___federation___refresh-remote-instance-metadata']]; export type AdminFederationRemoveAllFollowingRequest = operations['admin___federation___remove-all-following']['requestBody']['content']['application/json']; +export type AdminFederationRemoveAllFollowingErrors = _Operations_EndpointsErrors['admin___federation___remove-all-following'][keyof _Operations_EndpointsErrors['admin___federation___remove-all-following']]; export type AdminFederationUpdateInstanceRequest = operations['admin___federation___update-instance']['requestBody']['content']['application/json']; +export type AdminFederationUpdateInstanceErrors = _Operations_EndpointsErrors['admin___federation___update-instance'][keyof _Operations_EndpointsErrors['admin___federation___update-instance']]; export type AdminGetIndexStatsResponse = operations['admin___get-index-stats']['responses']['200']['content']['application/json']; +export type AdminGetIndexStatsErrors = _Operations_EndpointsErrors['admin___get-index-stats'][keyof _Operations_EndpointsErrors['admin___get-index-stats']]; export type AdminGetTableStatsResponse = operations['admin___get-table-stats']['responses']['200']['content']['application/json']; +export type AdminGetTableStatsErrors = _Operations_EndpointsErrors['admin___get-table-stats'][keyof _Operations_EndpointsErrors['admin___get-table-stats']]; export type AdminGetUserIpsRequest = operations['admin___get-user-ips']['requestBody']['content']['application/json']; export type AdminGetUserIpsResponse = operations['admin___get-user-ips']['responses']['200']['content']['application/json']; +export type AdminGetUserIpsErrors = _Operations_EndpointsErrors['admin___get-user-ips'][keyof _Operations_EndpointsErrors['admin___get-user-ips']]; export type AdminInviteCreateRequest = operations['admin___invite___create']['requestBody']['content']['application/json']; export type AdminInviteCreateResponse = operations['admin___invite___create']['responses']['200']['content']['application/json']; +export type AdminInviteCreateErrors = _Operations_EndpointsErrors['admin___invite___create'][keyof _Operations_EndpointsErrors['admin___invite___create']]; export type AdminInviteListRequest = operations['admin___invite___list']['requestBody']['content']['application/json']; export type AdminInviteListResponse = operations['admin___invite___list']['responses']['200']['content']['application/json']; +export type AdminInviteListErrors = _Operations_EndpointsErrors['admin___invite___list'][keyof _Operations_EndpointsErrors['admin___invite___list']]; export type AdminPromoCreateRequest = operations['admin___promo___create']['requestBody']['content']['application/json']; +export type AdminPromoCreateErrors = _Operations_EndpointsErrors['admin___promo___create'][keyof _Operations_EndpointsErrors['admin___promo___create']]; +export type AdminQueueClearErrors = _Operations_EndpointsErrors['admin___queue___clear'][keyof _Operations_EndpointsErrors['admin___queue___clear']]; export type AdminQueueDeliverDelayedResponse = operations['admin___queue___deliver-delayed']['responses']['200']['content']['application/json']; +export type AdminQueueDeliverDelayedErrors = _Operations_EndpointsErrors['admin___queue___deliver-delayed'][keyof _Operations_EndpointsErrors['admin___queue___deliver-delayed']]; export type AdminQueueInboxDelayedResponse = operations['admin___queue___inbox-delayed']['responses']['200']['content']['application/json']; +export type AdminQueueInboxDelayedErrors = _Operations_EndpointsErrors['admin___queue___inbox-delayed'][keyof _Operations_EndpointsErrors['admin___queue___inbox-delayed']]; export type AdminQueuePromoteRequest = operations['admin___queue___promote']['requestBody']['content']['application/json']; +export type AdminQueuePromoteErrors = _Operations_EndpointsErrors['admin___queue___promote'][keyof _Operations_EndpointsErrors['admin___queue___promote']]; export type AdminQueueStatsResponse = operations['admin___queue___stats']['responses']['200']['content']['application/json']; +export type AdminQueueStatsErrors = _Operations_EndpointsErrors['admin___queue___stats'][keyof _Operations_EndpointsErrors['admin___queue___stats']]; export type AdminRelaysAddRequest = operations['admin___relays___add']['requestBody']['content']['application/json']; export type AdminRelaysAddResponse = operations['admin___relays___add']['responses']['200']['content']['application/json']; +export type AdminRelaysAddErrors = _Operations_EndpointsErrors['admin___relays___add'][keyof _Operations_EndpointsErrors['admin___relays___add']]; export type AdminRelaysListResponse = operations['admin___relays___list']['responses']['200']['content']['application/json']; +export type AdminRelaysListErrors = _Operations_EndpointsErrors['admin___relays___list'][keyof _Operations_EndpointsErrors['admin___relays___list']]; export type AdminRelaysRemoveRequest = operations['admin___relays___remove']['requestBody']['content']['application/json']; +export type AdminRelaysRemoveErrors = _Operations_EndpointsErrors['admin___relays___remove'][keyof _Operations_EndpointsErrors['admin___relays___remove']]; export type AdminResetPasswordRequest = operations['admin___reset-password']['requestBody']['content']['application/json']; export type AdminResetPasswordResponse = operations['admin___reset-password']['responses']['200']['content']['application/json']; +export type AdminResetPasswordErrors = _Operations_EndpointsErrors['admin___reset-password'][keyof _Operations_EndpointsErrors['admin___reset-password']]; export type AdminResolveAbuseUserReportRequest = operations['admin___resolve-abuse-user-report']['requestBody']['content']['application/json']; +export type AdminResolveAbuseUserReportErrors = _Operations_EndpointsErrors['admin___resolve-abuse-user-report'][keyof _Operations_EndpointsErrors['admin___resolve-abuse-user-report']]; export type AdminForwardAbuseUserReportRequest = operations['admin___forward-abuse-user-report']['requestBody']['content']['application/json']; +export type AdminForwardAbuseUserReportErrors = _Operations_EndpointsErrors['admin___forward-abuse-user-report'][keyof _Operations_EndpointsErrors['admin___forward-abuse-user-report']]; export type AdminUpdateAbuseUserReportRequest = operations['admin___update-abuse-user-report']['requestBody']['content']['application/json']; +export type AdminUpdateAbuseUserReportErrors = _Operations_EndpointsErrors['admin___update-abuse-user-report'][keyof _Operations_EndpointsErrors['admin___update-abuse-user-report']]; export type AdminSendEmailRequest = operations['admin___send-email']['requestBody']['content']['application/json']; +export type AdminSendEmailErrors = _Operations_EndpointsErrors['admin___send-email'][keyof _Operations_EndpointsErrors['admin___send-email']]; export type AdminServerInfoResponse = operations['admin___server-info']['responses']['200']['content']['application/json']; +export type AdminServerInfoErrors = _Operations_EndpointsErrors['admin___server-info'][keyof _Operations_EndpointsErrors['admin___server-info']]; export type AdminShowModerationLogsRequest = operations['admin___show-moderation-logs']['requestBody']['content']['application/json']; export type AdminShowModerationLogsResponse = operations['admin___show-moderation-logs']['responses']['200']['content']['application/json']; +export type AdminShowModerationLogsErrors = _Operations_EndpointsErrors['admin___show-moderation-logs'][keyof _Operations_EndpointsErrors['admin___show-moderation-logs']]; export type AdminShowUserRequest = operations['admin___show-user']['requestBody']['content']['application/json']; export type AdminShowUserResponse = operations['admin___show-user']['responses']['200']['content']['application/json']; +export type AdminShowUserErrors = _Operations_EndpointsErrors['admin___show-user'][keyof _Operations_EndpointsErrors['admin___show-user']]; 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 AdminShowUsersErrors = _Operations_EndpointsErrors['admin___show-users'][keyof _Operations_EndpointsErrors['admin___show-users']]; export type AdminSuspendUserRequest = operations['admin___suspend-user']['requestBody']['content']['application/json']; +export type AdminSuspendUserErrors = _Operations_EndpointsErrors['admin___suspend-user'][keyof _Operations_EndpointsErrors['admin___suspend-user']]; export type AdminUnsuspendUserRequest = operations['admin___unsuspend-user']['requestBody']['content']['application/json']; +export type AdminUnsuspendUserErrors = _Operations_EndpointsErrors['admin___unsuspend-user'][keyof _Operations_EndpointsErrors['admin___unsuspend-user']]; export type AdminUpdateMetaRequest = operations['admin___update-meta']['requestBody']['content']['application/json']; +export type AdminUpdateMetaErrors = _Operations_EndpointsErrors['admin___update-meta'][keyof _Operations_EndpointsErrors['admin___update-meta']]; export type AdminDeleteAccountRequest = operations['admin___delete-account']['requestBody']['content']['application/json']; +export type AdminDeleteAccountErrors = _Operations_EndpointsErrors['admin___delete-account'][keyof _Operations_EndpointsErrors['admin___delete-account']]; export type AdminUpdateUserNoteRequest = operations['admin___update-user-note']['requestBody']['content']['application/json']; +export type AdminUpdateUserNoteErrors = _Operations_EndpointsErrors['admin___update-user-note'][keyof _Operations_EndpointsErrors['admin___update-user-note']]; export type AdminRolesCreateRequest = operations['admin___roles___create']['requestBody']['content']['application/json']; export type AdminRolesCreateResponse = operations['admin___roles___create']['responses']['200']['content']['application/json']; +export type AdminRolesCreateErrors = _Operations_EndpointsErrors['admin___roles___create'][keyof _Operations_EndpointsErrors['admin___roles___create']]; export type AdminRolesDeleteRequest = operations['admin___roles___delete']['requestBody']['content']['application/json']; +export type AdminRolesDeleteErrors = _Operations_EndpointsErrors['admin___roles___delete'][keyof _Operations_EndpointsErrors['admin___roles___delete']]; export type AdminRolesListResponse = operations['admin___roles___list']['responses']['200']['content']['application/json']; +export type AdminRolesListErrors = _Operations_EndpointsErrors['admin___roles___list'][keyof _Operations_EndpointsErrors['admin___roles___list']]; export type AdminRolesShowRequest = operations['admin___roles___show']['requestBody']['content']['application/json']; export type AdminRolesShowResponse = operations['admin___roles___show']['responses']['200']['content']['application/json']; +export type AdminRolesShowErrors = _Operations_EndpointsErrors['admin___roles___show'][keyof _Operations_EndpointsErrors['admin___roles___show']]; export type AdminRolesUpdateRequest = operations['admin___roles___update']['requestBody']['content']['application/json']; +export type AdminRolesUpdateErrors = _Operations_EndpointsErrors['admin___roles___update'][keyof _Operations_EndpointsErrors['admin___roles___update']]; export type AdminRolesAssignRequest = operations['admin___roles___assign']['requestBody']['content']['application/json']; +export type AdminRolesAssignErrors = _Operations_EndpointsErrors['admin___roles___assign'][keyof _Operations_EndpointsErrors['admin___roles___assign']]; export type AdminRolesUnassignRequest = operations['admin___roles___unassign']['requestBody']['content']['application/json']; +export type AdminRolesUnassignErrors = _Operations_EndpointsErrors['admin___roles___unassign'][keyof _Operations_EndpointsErrors['admin___roles___unassign']]; export type AdminRolesUpdateDefaultPoliciesRequest = operations['admin___roles___update-default-policies']['requestBody']['content']['application/json']; +export type AdminRolesUpdateDefaultPoliciesErrors = _Operations_EndpointsErrors['admin___roles___update-default-policies'][keyof _Operations_EndpointsErrors['admin___roles___update-default-policies']]; export type AdminRolesUsersRequest = operations['admin___roles___users']['requestBody']['content']['application/json']; export type AdminRolesUsersResponse = operations['admin___roles___users']['responses']['200']['content']['application/json']; +export type AdminRolesUsersErrors = _Operations_EndpointsErrors['admin___roles___users'][keyof _Operations_EndpointsErrors['admin___roles___users']]; export type AdminSystemWebhookCreateRequest = operations['admin___system-webhook___create']['requestBody']['content']['application/json']; export type AdminSystemWebhookCreateResponse = operations['admin___system-webhook___create']['responses']['200']['content']['application/json']; +export type AdminSystemWebhookCreateErrors = _Operations_EndpointsErrors['admin___system-webhook___create'][keyof _Operations_EndpointsErrors['admin___system-webhook___create']]; export type AdminSystemWebhookDeleteRequest = operations['admin___system-webhook___delete']['requestBody']['content']['application/json']; +export type AdminSystemWebhookDeleteErrors = _Operations_EndpointsErrors['admin___system-webhook___delete'][keyof _Operations_EndpointsErrors['admin___system-webhook___delete']]; export type AdminSystemWebhookListRequest = operations['admin___system-webhook___list']['requestBody']['content']['application/json']; export type AdminSystemWebhookListResponse = operations['admin___system-webhook___list']['responses']['200']['content']['application/json']; +export type AdminSystemWebhookListErrors = _Operations_EndpointsErrors['admin___system-webhook___list'][keyof _Operations_EndpointsErrors['admin___system-webhook___list']]; export type AdminSystemWebhookShowRequest = operations['admin___system-webhook___show']['requestBody']['content']['application/json']; export type AdminSystemWebhookShowResponse = operations['admin___system-webhook___show']['responses']['200']['content']['application/json']; +export type AdminSystemWebhookShowErrors = _Operations_EndpointsErrors['admin___system-webhook___show'][keyof _Operations_EndpointsErrors['admin___system-webhook___show']]; export type AdminSystemWebhookUpdateRequest = operations['admin___system-webhook___update']['requestBody']['content']['application/json']; export type AdminSystemWebhookUpdateResponse = operations['admin___system-webhook___update']['responses']['200']['content']['application/json']; +export type AdminSystemWebhookUpdateErrors = _Operations_EndpointsErrors['admin___system-webhook___update'][keyof _Operations_EndpointsErrors['admin___system-webhook___update']]; export type AdminSystemWebhookTestRequest = operations['admin___system-webhook___test']['requestBody']['content']['application/json']; +export type AdminSystemWebhookTestErrors = _Operations_EndpointsErrors['admin___system-webhook___test'][keyof _Operations_EndpointsErrors['admin___system-webhook___test']]; export type AnnouncementsRequest = operations['announcements']['requestBody']['content']['application/json']; export type AnnouncementsResponse = operations['announcements']['responses']['200']['content']['application/json']; +export type AnnouncementsErrors = _Operations_EndpointsErrors['announcements'][keyof _Operations_EndpointsErrors['announcements']]; export type AnnouncementsShowRequest = operations['announcements___show']['requestBody']['content']['application/json']; export type AnnouncementsShowResponse = operations['announcements___show']['responses']['200']['content']['application/json']; +export type AnnouncementsShowErrors = _Operations_EndpointsErrors['announcements___show'][keyof _Operations_EndpointsErrors['announcements___show']]; export type AntennasCreateRequest = operations['antennas___create']['requestBody']['content']['application/json']; export type AntennasCreateResponse = operations['antennas___create']['responses']['200']['content']['application/json']; +export type AntennasCreateErrors = _Operations_EndpointsErrors['antennas___create'][keyof _Operations_EndpointsErrors['antennas___create']]; export type AntennasDeleteRequest = operations['antennas___delete']['requestBody']['content']['application/json']; +export type AntennasDeleteErrors = _Operations_EndpointsErrors['antennas___delete'][keyof _Operations_EndpointsErrors['antennas___delete']]; export type AntennasListResponse = operations['antennas___list']['responses']['200']['content']['application/json']; +export type AntennasListErrors = _Operations_EndpointsErrors['antennas___list'][keyof _Operations_EndpointsErrors['antennas___list']]; export type AntennasNotesRequest = operations['antennas___notes']['requestBody']['content']['application/json']; export type AntennasNotesResponse = operations['antennas___notes']['responses']['200']['content']['application/json']; +export type AntennasNotesErrors = _Operations_EndpointsErrors['antennas___notes'][keyof _Operations_EndpointsErrors['antennas___notes']]; export type AntennasShowRequest = operations['antennas___show']['requestBody']['content']['application/json']; export type AntennasShowResponse = operations['antennas___show']['responses']['200']['content']['application/json']; +export type AntennasShowErrors = _Operations_EndpointsErrors['antennas___show'][keyof _Operations_EndpointsErrors['antennas___show']]; export type AntennasUpdateRequest = operations['antennas___update']['requestBody']['content']['application/json']; export type AntennasUpdateResponse = operations['antennas___update']['responses']['200']['content']['application/json']; +export type AntennasUpdateErrors = _Operations_EndpointsErrors['antennas___update'][keyof _Operations_EndpointsErrors['antennas___update']]; export type ApGetRequest = operations['ap___get']['requestBody']['content']['application/json']; export type ApGetResponse = operations['ap___get']['responses']['200']['content']['application/json']; +export type ApGetErrors = _Operations_EndpointsErrors['ap___get'][keyof _Operations_EndpointsErrors['ap___get']]; export type ApShowRequest = operations['ap___show']['requestBody']['content']['application/json']; export type ApShowResponse = operations['ap___show']['responses']['200']['content']['application/json']; +export type ApShowErrors = _Operations_EndpointsErrors['ap___show'][keyof _Operations_EndpointsErrors['ap___show']]; export type AppCreateRequest = operations['app___create']['requestBody']['content']['application/json']; export type AppCreateResponse = operations['app___create']['responses']['200']['content']['application/json']; +export type AppCreateErrors = _Operations_EndpointsErrors['app___create'][keyof _Operations_EndpointsErrors['app___create']]; export type AppShowRequest = operations['app___show']['requestBody']['content']['application/json']; export type AppShowResponse = operations['app___show']['responses']['200']['content']['application/json']; +export type AppShowErrors = _Operations_EndpointsErrors['app___show'][keyof _Operations_EndpointsErrors['app___show']]; export type AuthAcceptRequest = operations['auth___accept']['requestBody']['content']['application/json']; +export type AuthAcceptErrors = _Operations_EndpointsErrors['auth___accept'][keyof _Operations_EndpointsErrors['auth___accept']]; export type AuthSessionGenerateRequest = operations['auth___session___generate']['requestBody']['content']['application/json']; export type AuthSessionGenerateResponse = operations['auth___session___generate']['responses']['200']['content']['application/json']; +export type AuthSessionGenerateErrors = _Operations_EndpointsErrors['auth___session___generate'][keyof _Operations_EndpointsErrors['auth___session___generate']]; export type AuthSessionShowRequest = operations['auth___session___show']['requestBody']['content']['application/json']; export type AuthSessionShowResponse = operations['auth___session___show']['responses']['200']['content']['application/json']; +export type AuthSessionShowErrors = _Operations_EndpointsErrors['auth___session___show'][keyof _Operations_EndpointsErrors['auth___session___show']]; export type AuthSessionUserkeyRequest = operations['auth___session___userkey']['requestBody']['content']['application/json']; export type AuthSessionUserkeyResponse = operations['auth___session___userkey']['responses']['200']['content']['application/json']; +export type AuthSessionUserkeyErrors = _Operations_EndpointsErrors['auth___session___userkey'][keyof _Operations_EndpointsErrors['auth___session___userkey']]; export type BlockingCreateRequest = operations['blocking___create']['requestBody']['content']['application/json']; export type BlockingCreateResponse = operations['blocking___create']['responses']['200']['content']['application/json']; +export type BlockingCreateErrors = _Operations_EndpointsErrors['blocking___create'][keyof _Operations_EndpointsErrors['blocking___create']]; export type BlockingDeleteRequest = operations['blocking___delete']['requestBody']['content']['application/json']; export type BlockingDeleteResponse = operations['blocking___delete']['responses']['200']['content']['application/json']; +export type BlockingDeleteErrors = _Operations_EndpointsErrors['blocking___delete'][keyof _Operations_EndpointsErrors['blocking___delete']]; export type BlockingListRequest = operations['blocking___list']['requestBody']['content']['application/json']; export type BlockingListResponse = operations['blocking___list']['responses']['200']['content']['application/json']; +export type BlockingListErrors = _Operations_EndpointsErrors['blocking___list'][keyof _Operations_EndpointsErrors['blocking___list']]; export type ChannelsCreateRequest = operations['channels___create']['requestBody']['content']['application/json']; export type ChannelsCreateResponse = operations['channels___create']['responses']['200']['content']['application/json']; +export type ChannelsCreateErrors = _Operations_EndpointsErrors['channels___create'][keyof _Operations_EndpointsErrors['channels___create']]; export type ChannelsFeaturedResponse = operations['channels___featured']['responses']['200']['content']['application/json']; +export type ChannelsFeaturedErrors = _Operations_EndpointsErrors['channels___featured'][keyof _Operations_EndpointsErrors['channels___featured']]; export type ChannelsFollowRequest = operations['channels___follow']['requestBody']['content']['application/json']; +export type ChannelsFollowErrors = _Operations_EndpointsErrors['channels___follow'][keyof _Operations_EndpointsErrors['channels___follow']]; export type ChannelsFollowedRequest = operations['channels___followed']['requestBody']['content']['application/json']; export type ChannelsFollowedResponse = operations['channels___followed']['responses']['200']['content']['application/json']; +export type ChannelsFollowedErrors = _Operations_EndpointsErrors['channels___followed'][keyof _Operations_EndpointsErrors['channels___followed']]; export type ChannelsOwnedRequest = operations['channels___owned']['requestBody']['content']['application/json']; export type ChannelsOwnedResponse = operations['channels___owned']['responses']['200']['content']['application/json']; +export type ChannelsOwnedErrors = _Operations_EndpointsErrors['channels___owned'][keyof _Operations_EndpointsErrors['channels___owned']]; export type ChannelsShowRequest = operations['channels___show']['requestBody']['content']['application/json']; export type ChannelsShowResponse = operations['channels___show']['responses']['200']['content']['application/json']; +export type ChannelsShowErrors = _Operations_EndpointsErrors['channels___show'][keyof _Operations_EndpointsErrors['channels___show']]; export type ChannelsTimelineRequest = operations['channels___timeline']['requestBody']['content']['application/json']; export type ChannelsTimelineResponse = operations['channels___timeline']['responses']['200']['content']['application/json']; +export type ChannelsTimelineErrors = _Operations_EndpointsErrors['channels___timeline'][keyof _Operations_EndpointsErrors['channels___timeline']]; export type ChannelsUnfollowRequest = operations['channels___unfollow']['requestBody']['content']['application/json']; +export type ChannelsUnfollowErrors = _Operations_EndpointsErrors['channels___unfollow'][keyof _Operations_EndpointsErrors['channels___unfollow']]; export type ChannelsUpdateRequest = operations['channels___update']['requestBody']['content']['application/json']; export type ChannelsUpdateResponse = operations['channels___update']['responses']['200']['content']['application/json']; +export type ChannelsUpdateErrors = _Operations_EndpointsErrors['channels___update'][keyof _Operations_EndpointsErrors['channels___update']]; export type ChannelsFavoriteRequest = operations['channels___favorite']['requestBody']['content']['application/json']; +export type ChannelsFavoriteErrors = _Operations_EndpointsErrors['channels___favorite'][keyof _Operations_EndpointsErrors['channels___favorite']]; export type ChannelsUnfavoriteRequest = operations['channels___unfavorite']['requestBody']['content']['application/json']; +export type ChannelsUnfavoriteErrors = _Operations_EndpointsErrors['channels___unfavorite'][keyof _Operations_EndpointsErrors['channels___unfavorite']]; export type ChannelsMyFavoritesResponse = operations['channels___my-favorites']['responses']['200']['content']['application/json']; +export type ChannelsMyFavoritesErrors = _Operations_EndpointsErrors['channels___my-favorites'][keyof _Operations_EndpointsErrors['channels___my-favorites']]; export type ChannelsSearchRequest = operations['channels___search']['requestBody']['content']['application/json']; export type ChannelsSearchResponse = operations['channels___search']['responses']['200']['content']['application/json']; +export type ChannelsSearchErrors = _Operations_EndpointsErrors['channels___search'][keyof _Operations_EndpointsErrors['channels___search']]; export type ChartsActiveUsersRequest = operations['charts___active-users']['requestBody']['content']['application/json']; export type ChartsActiveUsersResponse = operations['charts___active-users']['responses']['200']['content']['application/json']; +export type ChartsActiveUsersErrors = _Operations_EndpointsErrors['charts___active-users'][keyof _Operations_EndpointsErrors['charts___active-users']]; export type ChartsApRequestRequest = operations['charts___ap-request']['requestBody']['content']['application/json']; export type ChartsApRequestResponse = operations['charts___ap-request']['responses']['200']['content']['application/json']; +export type ChartsApRequestErrors = _Operations_EndpointsErrors['charts___ap-request'][keyof _Operations_EndpointsErrors['charts___ap-request']]; export type ChartsDriveRequest = operations['charts___drive']['requestBody']['content']['application/json']; export type ChartsDriveResponse = operations['charts___drive']['responses']['200']['content']['application/json']; +export type ChartsDriveErrors = _Operations_EndpointsErrors['charts___drive'][keyof _Operations_EndpointsErrors['charts___drive']]; export type ChartsFederationRequest = operations['charts___federation']['requestBody']['content']['application/json']; export type ChartsFederationResponse = operations['charts___federation']['responses']['200']['content']['application/json']; +export type ChartsFederationErrors = _Operations_EndpointsErrors['charts___federation'][keyof _Operations_EndpointsErrors['charts___federation']]; export type ChartsInstanceRequest = operations['charts___instance']['requestBody']['content']['application/json']; export type ChartsInstanceResponse = operations['charts___instance']['responses']['200']['content']['application/json']; +export type ChartsInstanceErrors = _Operations_EndpointsErrors['charts___instance'][keyof _Operations_EndpointsErrors['charts___instance']]; export type ChartsNotesRequest = operations['charts___notes']['requestBody']['content']['application/json']; export type ChartsNotesResponse = operations['charts___notes']['responses']['200']['content']['application/json']; +export type ChartsNotesErrors = _Operations_EndpointsErrors['charts___notes'][keyof _Operations_EndpointsErrors['charts___notes']]; export type ChartsUserDriveRequest = operations['charts___user___drive']['requestBody']['content']['application/json']; export type ChartsUserDriveResponse = operations['charts___user___drive']['responses']['200']['content']['application/json']; +export type ChartsUserDriveErrors = _Operations_EndpointsErrors['charts___user___drive'][keyof _Operations_EndpointsErrors['charts___user___drive']]; export type ChartsUserFollowingRequest = operations['charts___user___following']['requestBody']['content']['application/json']; export type ChartsUserFollowingResponse = operations['charts___user___following']['responses']['200']['content']['application/json']; +export type ChartsUserFollowingErrors = _Operations_EndpointsErrors['charts___user___following'][keyof _Operations_EndpointsErrors['charts___user___following']]; export type ChartsUserNotesRequest = operations['charts___user___notes']['requestBody']['content']['application/json']; export type ChartsUserNotesResponse = operations['charts___user___notes']['responses']['200']['content']['application/json']; +export type ChartsUserNotesErrors = _Operations_EndpointsErrors['charts___user___notes'][keyof _Operations_EndpointsErrors['charts___user___notes']]; export type ChartsUserPvRequest = operations['charts___user___pv']['requestBody']['content']['application/json']; export type ChartsUserPvResponse = operations['charts___user___pv']['responses']['200']['content']['application/json']; +export type ChartsUserPvErrors = _Operations_EndpointsErrors['charts___user___pv'][keyof _Operations_EndpointsErrors['charts___user___pv']]; export type ChartsUserReactionsRequest = operations['charts___user___reactions']['requestBody']['content']['application/json']; export type ChartsUserReactionsResponse = operations['charts___user___reactions']['responses']['200']['content']['application/json']; +export type ChartsUserReactionsErrors = _Operations_EndpointsErrors['charts___user___reactions'][keyof _Operations_EndpointsErrors['charts___user___reactions']]; export type ChartsUsersRequest = operations['charts___users']['requestBody']['content']['application/json']; export type ChartsUsersResponse = operations['charts___users']['responses']['200']['content']['application/json']; +export type ChartsUsersErrors = _Operations_EndpointsErrors['charts___users'][keyof _Operations_EndpointsErrors['charts___users']]; export type ClipsAddNoteRequest = operations['clips___add-note']['requestBody']['content']['application/json']; +export type ClipsAddNoteErrors = _Operations_EndpointsErrors['clips___add-note'][keyof _Operations_EndpointsErrors['clips___add-note']]; export type ClipsRemoveNoteRequest = operations['clips___remove-note']['requestBody']['content']['application/json']; +export type ClipsRemoveNoteErrors = _Operations_EndpointsErrors['clips___remove-note'][keyof _Operations_EndpointsErrors['clips___remove-note']]; export type ClipsCreateRequest = operations['clips___create']['requestBody']['content']['application/json']; export type ClipsCreateResponse = operations['clips___create']['responses']['200']['content']['application/json']; +export type ClipsCreateErrors = _Operations_EndpointsErrors['clips___create'][keyof _Operations_EndpointsErrors['clips___create']]; export type ClipsDeleteRequest = operations['clips___delete']['requestBody']['content']['application/json']; +export type ClipsDeleteErrors = _Operations_EndpointsErrors['clips___delete'][keyof _Operations_EndpointsErrors['clips___delete']]; export type ClipsListResponse = operations['clips___list']['responses']['200']['content']['application/json']; +export type ClipsListErrors = _Operations_EndpointsErrors['clips___list'][keyof _Operations_EndpointsErrors['clips___list']]; export type ClipsNotesRequest = operations['clips___notes']['requestBody']['content']['application/json']; export type ClipsNotesResponse = operations['clips___notes']['responses']['200']['content']['application/json']; +export type ClipsNotesErrors = _Operations_EndpointsErrors['clips___notes'][keyof _Operations_EndpointsErrors['clips___notes']]; export type ClipsShowRequest = operations['clips___show']['requestBody']['content']['application/json']; export type ClipsShowResponse = operations['clips___show']['responses']['200']['content']['application/json']; +export type ClipsShowErrors = _Operations_EndpointsErrors['clips___show'][keyof _Operations_EndpointsErrors['clips___show']]; export type ClipsUpdateRequest = operations['clips___update']['requestBody']['content']['application/json']; export type ClipsUpdateResponse = operations['clips___update']['responses']['200']['content']['application/json']; +export type ClipsUpdateErrors = _Operations_EndpointsErrors['clips___update'][keyof _Operations_EndpointsErrors['clips___update']]; export type ClipsFavoriteRequest = operations['clips___favorite']['requestBody']['content']['application/json']; +export type ClipsFavoriteErrors = _Operations_EndpointsErrors['clips___favorite'][keyof _Operations_EndpointsErrors['clips___favorite']]; export type ClipsUnfavoriteRequest = operations['clips___unfavorite']['requestBody']['content']['application/json']; +export type ClipsUnfavoriteErrors = _Operations_EndpointsErrors['clips___unfavorite'][keyof _Operations_EndpointsErrors['clips___unfavorite']]; export type ClipsMyFavoritesResponse = operations['clips___my-favorites']['responses']['200']['content']['application/json']; +export type ClipsMyFavoritesErrors = _Operations_EndpointsErrors['clips___my-favorites'][keyof _Operations_EndpointsErrors['clips___my-favorites']]; export type DriveResponse = operations['drive']['responses']['200']['content']['application/json']; +export type DriveErrors = _Operations_EndpointsErrors['drive'][keyof _Operations_EndpointsErrors['drive']]; export type DriveFilesRequest = operations['drive___files']['requestBody']['content']['application/json']; export type DriveFilesResponse = operations['drive___files']['responses']['200']['content']['application/json']; +export type DriveFilesErrors = _Operations_EndpointsErrors['drive___files'][keyof _Operations_EndpointsErrors['drive___files']]; export type DriveFilesAttachedNotesRequest = operations['drive___files___attached-notes']['requestBody']['content']['application/json']; export type DriveFilesAttachedNotesResponse = operations['drive___files___attached-notes']['responses']['200']['content']['application/json']; +export type DriveFilesAttachedNotesErrors = _Operations_EndpointsErrors['drive___files___attached-notes'][keyof _Operations_EndpointsErrors['drive___files___attached-notes']]; export type DriveFilesCheckExistenceRequest = operations['drive___files___check-existence']['requestBody']['content']['application/json']; export type DriveFilesCheckExistenceResponse = operations['drive___files___check-existence']['responses']['200']['content']['application/json']; +export type DriveFilesCheckExistenceErrors = _Operations_EndpointsErrors['drive___files___check-existence'][keyof _Operations_EndpointsErrors['drive___files___check-existence']]; export type DriveFilesCreateRequest = operations['drive___files___create']['requestBody']['content']['multipart/form-data']; export type DriveFilesCreateResponse = operations['drive___files___create']['responses']['200']['content']['application/json']; +export type DriveFilesCreateErrors = _Operations_EndpointsErrors['drive___files___create'][keyof _Operations_EndpointsErrors['drive___files___create']]; export type DriveFilesDeleteRequest = operations['drive___files___delete']['requestBody']['content']['application/json']; +export type DriveFilesDeleteErrors = _Operations_EndpointsErrors['drive___files___delete'][keyof _Operations_EndpointsErrors['drive___files___delete']]; export type DriveFilesFindByHashRequest = operations['drive___files___find-by-hash']['requestBody']['content']['application/json']; export type DriveFilesFindByHashResponse = operations['drive___files___find-by-hash']['responses']['200']['content']['application/json']; +export type DriveFilesFindByHashErrors = _Operations_EndpointsErrors['drive___files___find-by-hash'][keyof _Operations_EndpointsErrors['drive___files___find-by-hash']]; export type DriveFilesFindRequest = operations['drive___files___find']['requestBody']['content']['application/json']; export type DriveFilesFindResponse = operations['drive___files___find']['responses']['200']['content']['application/json']; +export type DriveFilesFindErrors = _Operations_EndpointsErrors['drive___files___find'][keyof _Operations_EndpointsErrors['drive___files___find']]; export type DriveFilesShowRequest = operations['drive___files___show']['requestBody']['content']['application/json']; export type DriveFilesShowResponse = operations['drive___files___show']['responses']['200']['content']['application/json']; +export type DriveFilesShowErrors = _Operations_EndpointsErrors['drive___files___show'][keyof _Operations_EndpointsErrors['drive___files___show']]; export type DriveFilesUpdateRequest = operations['drive___files___update']['requestBody']['content']['application/json']; export type DriveFilesUpdateResponse = operations['drive___files___update']['responses']['200']['content']['application/json']; +export type DriveFilesUpdateErrors = _Operations_EndpointsErrors['drive___files___update'][keyof _Operations_EndpointsErrors['drive___files___update']]; export type DriveFilesUploadFromUrlRequest = operations['drive___files___upload-from-url']['requestBody']['content']['application/json']; +export type DriveFilesUploadFromUrlErrors = _Operations_EndpointsErrors['drive___files___upload-from-url'][keyof _Operations_EndpointsErrors['drive___files___upload-from-url']]; export type DriveFoldersRequest = operations['drive___folders']['requestBody']['content']['application/json']; export type DriveFoldersResponse = operations['drive___folders']['responses']['200']['content']['application/json']; +export type DriveFoldersErrors = _Operations_EndpointsErrors['drive___folders'][keyof _Operations_EndpointsErrors['drive___folders']]; export type DriveFoldersCreateRequest = operations['drive___folders___create']['requestBody']['content']['application/json']; export type DriveFoldersCreateResponse = operations['drive___folders___create']['responses']['200']['content']['application/json']; +export type DriveFoldersCreateErrors = _Operations_EndpointsErrors['drive___folders___create'][keyof _Operations_EndpointsErrors['drive___folders___create']]; export type DriveFoldersDeleteRequest = operations['drive___folders___delete']['requestBody']['content']['application/json']; +export type DriveFoldersDeleteErrors = _Operations_EndpointsErrors['drive___folders___delete'][keyof _Operations_EndpointsErrors['drive___folders___delete']]; export type DriveFoldersFindRequest = operations['drive___folders___find']['requestBody']['content']['application/json']; export type DriveFoldersFindResponse = operations['drive___folders___find']['responses']['200']['content']['application/json']; +export type DriveFoldersFindErrors = _Operations_EndpointsErrors['drive___folders___find'][keyof _Operations_EndpointsErrors['drive___folders___find']]; export type DriveFoldersShowRequest = operations['drive___folders___show']['requestBody']['content']['application/json']; export type DriveFoldersShowResponse = operations['drive___folders___show']['responses']['200']['content']['application/json']; +export type DriveFoldersShowErrors = _Operations_EndpointsErrors['drive___folders___show'][keyof _Operations_EndpointsErrors['drive___folders___show']]; export type DriveFoldersUpdateRequest = operations['drive___folders___update']['requestBody']['content']['application/json']; export type DriveFoldersUpdateResponse = operations['drive___folders___update']['responses']['200']['content']['application/json']; +export type DriveFoldersUpdateErrors = _Operations_EndpointsErrors['drive___folders___update'][keyof _Operations_EndpointsErrors['drive___folders___update']]; export type DriveStreamRequest = operations['drive___stream']['requestBody']['content']['application/json']; export type DriveStreamResponse = operations['drive___stream']['responses']['200']['content']['application/json']; +export type DriveStreamErrors = _Operations_EndpointsErrors['drive___stream'][keyof _Operations_EndpointsErrors['drive___stream']]; export type EmailAddressAvailableRequest = operations['email-address___available']['requestBody']['content']['application/json']; export type EmailAddressAvailableResponse = operations['email-address___available']['responses']['200']['content']['application/json']; +export type EmailAddressAvailableErrors = _Operations_EndpointsErrors['email-address___available'][keyof _Operations_EndpointsErrors['email-address___available']]; export type EndpointRequest = operations['endpoint']['requestBody']['content']['application/json']; export type EndpointResponse = operations['endpoint']['responses']['200']['content']['application/json']; +export type EndpointErrors = _Operations_EndpointsErrors['endpoint'][keyof _Operations_EndpointsErrors['endpoint']]; export type EndpointsResponse = operations['endpoints']['responses']['200']['content']['application/json']; +export type EndpointsErrors = _Operations_EndpointsErrors['endpoints'][keyof _Operations_EndpointsErrors['endpoints']]; +export type ExportCustomEmojisErrors = _Operations_EndpointsErrors['export-custom-emojis'][keyof _Operations_EndpointsErrors['export-custom-emojis']]; export type FederationFollowersRequest = operations['federation___followers']['requestBody']['content']['application/json']; export type FederationFollowersResponse = operations['federation___followers']['responses']['200']['content']['application/json']; +export type FederationFollowersErrors = _Operations_EndpointsErrors['federation___followers'][keyof _Operations_EndpointsErrors['federation___followers']]; export type FederationFollowingRequest = operations['federation___following']['requestBody']['content']['application/json']; export type FederationFollowingResponse = operations['federation___following']['responses']['200']['content']['application/json']; +export type FederationFollowingErrors = _Operations_EndpointsErrors['federation___following'][keyof _Operations_EndpointsErrors['federation___following']]; export type FederationInstancesRequest = operations['federation___instances']['requestBody']['content']['application/json']; export type FederationInstancesResponse = operations['federation___instances']['responses']['200']['content']['application/json']; +export type FederationInstancesErrors = _Operations_EndpointsErrors['federation___instances'][keyof _Operations_EndpointsErrors['federation___instances']]; export type FederationShowInstanceRequest = operations['federation___show-instance']['requestBody']['content']['application/json']; export type FederationShowInstanceResponse = operations['federation___show-instance']['responses']['200']['content']['application/json']; +export type FederationShowInstanceErrors = _Operations_EndpointsErrors['federation___show-instance'][keyof _Operations_EndpointsErrors['federation___show-instance']]; export type FederationUpdateRemoteUserRequest = operations['federation___update-remote-user']['requestBody']['content']['application/json']; +export type FederationUpdateRemoteUserErrors = _Operations_EndpointsErrors['federation___update-remote-user'][keyof _Operations_EndpointsErrors['federation___update-remote-user']]; export type FederationUsersRequest = operations['federation___users']['requestBody']['content']['application/json']; export type FederationUsersResponse = operations['federation___users']['responses']['200']['content']['application/json']; +export type FederationUsersErrors = _Operations_EndpointsErrors['federation___users'][keyof _Operations_EndpointsErrors['federation___users']]; export type FederationStatsRequest = operations['federation___stats']['requestBody']['content']['application/json']; export type FederationStatsResponse = operations['federation___stats']['responses']['200']['content']['application/json']; +export type FederationStatsErrors = _Operations_EndpointsErrors['federation___stats'][keyof _Operations_EndpointsErrors['federation___stats']]; export type FollowingCreateRequest = operations['following___create']['requestBody']['content']['application/json']; export type FollowingCreateResponse = operations['following___create']['responses']['200']['content']['application/json']; +export type FollowingCreateErrors = _Operations_EndpointsErrors['following___create'][keyof _Operations_EndpointsErrors['following___create']]; export type FollowingDeleteRequest = operations['following___delete']['requestBody']['content']['application/json']; export type FollowingDeleteResponse = operations['following___delete']['responses']['200']['content']['application/json']; +export type FollowingDeleteErrors = _Operations_EndpointsErrors['following___delete'][keyof _Operations_EndpointsErrors['following___delete']]; export type FollowingUpdateRequest = operations['following___update']['requestBody']['content']['application/json']; export type FollowingUpdateResponse = operations['following___update']['responses']['200']['content']['application/json']; +export type FollowingUpdateErrors = _Operations_EndpointsErrors['following___update'][keyof _Operations_EndpointsErrors['following___update']]; export type FollowingUpdateAllRequest = operations['following___update-all']['requestBody']['content']['application/json']; +export type FollowingUpdateAllErrors = _Operations_EndpointsErrors['following___update-all'][keyof _Operations_EndpointsErrors['following___update-all']]; export type FollowingInvalidateRequest = operations['following___invalidate']['requestBody']['content']['application/json']; export type FollowingInvalidateResponse = operations['following___invalidate']['responses']['200']['content']['application/json']; +export type FollowingInvalidateErrors = _Operations_EndpointsErrors['following___invalidate'][keyof _Operations_EndpointsErrors['following___invalidate']]; export type FollowingRequestsAcceptRequest = operations['following___requests___accept']['requestBody']['content']['application/json']; +export type FollowingRequestsAcceptErrors = _Operations_EndpointsErrors['following___requests___accept'][keyof _Operations_EndpointsErrors['following___requests___accept']]; export type FollowingRequestsCancelRequest = operations['following___requests___cancel']['requestBody']['content']['application/json']; export type FollowingRequestsCancelResponse = operations['following___requests___cancel']['responses']['200']['content']['application/json']; +export type FollowingRequestsCancelErrors = _Operations_EndpointsErrors['following___requests___cancel'][keyof _Operations_EndpointsErrors['following___requests___cancel']]; export type FollowingRequestsListRequest = operations['following___requests___list']['requestBody']['content']['application/json']; export type FollowingRequestsListResponse = operations['following___requests___list']['responses']['200']['content']['application/json']; +export type FollowingRequestsListErrors = _Operations_EndpointsErrors['following___requests___list'][keyof _Operations_EndpointsErrors['following___requests___list']]; export type FollowingRequestsRejectRequest = operations['following___requests___reject']['requestBody']['content']['application/json']; +export type FollowingRequestsRejectErrors = _Operations_EndpointsErrors['following___requests___reject'][keyof _Operations_EndpointsErrors['following___requests___reject']]; export type GalleryFeaturedRequest = operations['gallery___featured']['requestBody']['content']['application/json']; export type GalleryFeaturedResponse = operations['gallery___featured']['responses']['200']['content']['application/json']; +export type GalleryFeaturedErrors = _Operations_EndpointsErrors['gallery___featured'][keyof _Operations_EndpointsErrors['gallery___featured']]; export type GalleryPopularResponse = operations['gallery___popular']['responses']['200']['content']['application/json']; +export type GalleryPopularErrors = _Operations_EndpointsErrors['gallery___popular'][keyof _Operations_EndpointsErrors['gallery___popular']]; export type GalleryPostsRequest = operations['gallery___posts']['requestBody']['content']['application/json']; export type GalleryPostsResponse = operations['gallery___posts']['responses']['200']['content']['application/json']; +export type GalleryPostsErrors = _Operations_EndpointsErrors['gallery___posts'][keyof _Operations_EndpointsErrors['gallery___posts']]; export type GalleryPostsCreateRequest = operations['gallery___posts___create']['requestBody']['content']['application/json']; export type GalleryPostsCreateResponse = operations['gallery___posts___create']['responses']['200']['content']['application/json']; +export type GalleryPostsCreateErrors = _Operations_EndpointsErrors['gallery___posts___create'][keyof _Operations_EndpointsErrors['gallery___posts___create']]; export type GalleryPostsDeleteRequest = operations['gallery___posts___delete']['requestBody']['content']['application/json']; +export type GalleryPostsDeleteErrors = _Operations_EndpointsErrors['gallery___posts___delete'][keyof _Operations_EndpointsErrors['gallery___posts___delete']]; export type GalleryPostsLikeRequest = operations['gallery___posts___like']['requestBody']['content']['application/json']; +export type GalleryPostsLikeErrors = _Operations_EndpointsErrors['gallery___posts___like'][keyof _Operations_EndpointsErrors['gallery___posts___like']]; export type GalleryPostsShowRequest = operations['gallery___posts___show']['requestBody']['content']['application/json']; export type GalleryPostsShowResponse = operations['gallery___posts___show']['responses']['200']['content']['application/json']; +export type GalleryPostsShowErrors = _Operations_EndpointsErrors['gallery___posts___show'][keyof _Operations_EndpointsErrors['gallery___posts___show']]; export type GalleryPostsUnlikeRequest = operations['gallery___posts___unlike']['requestBody']['content']['application/json']; +export type GalleryPostsUnlikeErrors = _Operations_EndpointsErrors['gallery___posts___unlike'][keyof _Operations_EndpointsErrors['gallery___posts___unlike']]; export type GalleryPostsUpdateRequest = operations['gallery___posts___update']['requestBody']['content']['application/json']; export type GalleryPostsUpdateResponse = operations['gallery___posts___update']['responses']['200']['content']['application/json']; +export type GalleryPostsUpdateErrors = _Operations_EndpointsErrors['gallery___posts___update'][keyof _Operations_EndpointsErrors['gallery___posts___update']]; export type GetOnlineUsersCountResponse = operations['get-online-users-count']['responses']['200']['content']['application/json']; +export type GetOnlineUsersCountErrors = _Operations_EndpointsErrors['get-online-users-count'][keyof _Operations_EndpointsErrors['get-online-users-count']]; export type GetAvatarDecorationsResponse = operations['get-avatar-decorations']['responses']['200']['content']['application/json']; +export type GetAvatarDecorationsErrors = _Operations_EndpointsErrors['get-avatar-decorations'][keyof _Operations_EndpointsErrors['get-avatar-decorations']]; export type HashtagsListRequest = operations['hashtags___list']['requestBody']['content']['application/json']; export type HashtagsListResponse = operations['hashtags___list']['responses']['200']['content']['application/json']; +export type HashtagsListErrors = _Operations_EndpointsErrors['hashtags___list'][keyof _Operations_EndpointsErrors['hashtags___list']]; export type HashtagsSearchRequest = operations['hashtags___search']['requestBody']['content']['application/json']; export type HashtagsSearchResponse = operations['hashtags___search']['responses']['200']['content']['application/json']; +export type HashtagsSearchErrors = _Operations_EndpointsErrors['hashtags___search'][keyof _Operations_EndpointsErrors['hashtags___search']]; export type HashtagsShowRequest = operations['hashtags___show']['requestBody']['content']['application/json']; export type HashtagsShowResponse = operations['hashtags___show']['responses']['200']['content']['application/json']; +export type HashtagsShowErrors = _Operations_EndpointsErrors['hashtags___show'][keyof _Operations_EndpointsErrors['hashtags___show']]; export type HashtagsTrendResponse = operations['hashtags___trend']['responses']['200']['content']['application/json']; +export type HashtagsTrendErrors = _Operations_EndpointsErrors['hashtags___trend'][keyof _Operations_EndpointsErrors['hashtags___trend']]; export type HashtagsUsersRequest = operations['hashtags___users']['requestBody']['content']['application/json']; export type HashtagsUsersResponse = operations['hashtags___users']['responses']['200']['content']['application/json']; +export type HashtagsUsersErrors = _Operations_EndpointsErrors['hashtags___users'][keyof _Operations_EndpointsErrors['hashtags___users']]; export type IResponse = operations['i']['responses']['200']['content']['application/json']; +export type IErrors = _Operations_EndpointsErrors['i'][keyof _Operations_EndpointsErrors['i']]; export type I2faDoneRequest = operations['i___2fa___done']['requestBody']['content']['application/json']; export type I2faDoneResponse = operations['i___2fa___done']['responses']['200']['content']['application/json']; +export type I2faDoneErrors = _Operations_EndpointsErrors['i___2fa___done'][keyof _Operations_EndpointsErrors['i___2fa___done']]; export type I2faKeyDoneRequest = operations['i___2fa___key-done']['requestBody']['content']['application/json']; export type I2faKeyDoneResponse = operations['i___2fa___key-done']['responses']['200']['content']['application/json']; +export type I2faKeyDoneErrors = _Operations_EndpointsErrors['i___2fa___key-done'][keyof _Operations_EndpointsErrors['i___2fa___key-done']]; export type I2faPasswordLessRequest = operations['i___2fa___password-less']['requestBody']['content']['application/json']; +export type I2faPasswordLessErrors = _Operations_EndpointsErrors['i___2fa___password-less'][keyof _Operations_EndpointsErrors['i___2fa___password-less']]; export type I2faRegisterKeyRequest = operations['i___2fa___register-key']['requestBody']['content']['application/json']; export type I2faRegisterKeyResponse = operations['i___2fa___register-key']['responses']['200']['content']['application/json']; +export type I2faRegisterKeyErrors = _Operations_EndpointsErrors['i___2fa___register-key'][keyof _Operations_EndpointsErrors['i___2fa___register-key']]; export type I2faRegisterRequest = operations['i___2fa___register']['requestBody']['content']['application/json']; export type I2faRegisterResponse = operations['i___2fa___register']['responses']['200']['content']['application/json']; +export type I2faRegisterErrors = _Operations_EndpointsErrors['i___2fa___register'][keyof _Operations_EndpointsErrors['i___2fa___register']]; export type I2faUpdateKeyRequest = operations['i___2fa___update-key']['requestBody']['content']['application/json']; +export type I2faUpdateKeyErrors = _Operations_EndpointsErrors['i___2fa___update-key'][keyof _Operations_EndpointsErrors['i___2fa___update-key']]; export type I2faRemoveKeyRequest = operations['i___2fa___remove-key']['requestBody']['content']['application/json']; +export type I2faRemoveKeyErrors = _Operations_EndpointsErrors['i___2fa___remove-key'][keyof _Operations_EndpointsErrors['i___2fa___remove-key']]; export type I2faUnregisterRequest = operations['i___2fa___unregister']['requestBody']['content']['application/json']; +export type I2faUnregisterErrors = _Operations_EndpointsErrors['i___2fa___unregister'][keyof _Operations_EndpointsErrors['i___2fa___unregister']]; export type IAppsRequest = operations['i___apps']['requestBody']['content']['application/json']; export type IAppsResponse = operations['i___apps']['responses']['200']['content']['application/json']; +export type IAppsErrors = _Operations_EndpointsErrors['i___apps'][keyof _Operations_EndpointsErrors['i___apps']]; export type IAuthorizedAppsRequest = operations['i___authorized-apps']['requestBody']['content']['application/json']; export type IAuthorizedAppsResponse = operations['i___authorized-apps']['responses']['200']['content']['application/json']; +export type IAuthorizedAppsErrors = _Operations_EndpointsErrors['i___authorized-apps'][keyof _Operations_EndpointsErrors['i___authorized-apps']]; export type IClaimAchievementRequest = operations['i___claim-achievement']['requestBody']['content']['application/json']; +export type IClaimAchievementErrors = _Operations_EndpointsErrors['i___claim-achievement'][keyof _Operations_EndpointsErrors['i___claim-achievement']]; export type IChangePasswordRequest = operations['i___change-password']['requestBody']['content']['application/json']; +export type IChangePasswordErrors = _Operations_EndpointsErrors['i___change-password'][keyof _Operations_EndpointsErrors['i___change-password']]; export type IDeleteAccountRequest = operations['i___delete-account']['requestBody']['content']['application/json']; +export type IDeleteAccountErrors = _Operations_EndpointsErrors['i___delete-account'][keyof _Operations_EndpointsErrors['i___delete-account']]; +export type IExportBlockingErrors = _Operations_EndpointsErrors['i___export-blocking'][keyof _Operations_EndpointsErrors['i___export-blocking']]; export type IExportFollowingRequest = operations['i___export-following']['requestBody']['content']['application/json']; +export type IExportFollowingErrors = _Operations_EndpointsErrors['i___export-following'][keyof _Operations_EndpointsErrors['i___export-following']]; +export type IExportMuteErrors = _Operations_EndpointsErrors['i___export-mute'][keyof _Operations_EndpointsErrors['i___export-mute']]; +export type IExportNotesErrors = _Operations_EndpointsErrors['i___export-notes'][keyof _Operations_EndpointsErrors['i___export-notes']]; +export type IExportClipsErrors = _Operations_EndpointsErrors['i___export-clips'][keyof _Operations_EndpointsErrors['i___export-clips']]; +export type IExportFavoritesErrors = _Operations_EndpointsErrors['i___export-favorites'][keyof _Operations_EndpointsErrors['i___export-favorites']]; +export type IExportUserListsErrors = _Operations_EndpointsErrors['i___export-user-lists'][keyof _Operations_EndpointsErrors['i___export-user-lists']]; +export type IExportAntennasErrors = _Operations_EndpointsErrors['i___export-antennas'][keyof _Operations_EndpointsErrors['i___export-antennas']]; export type IFavoritesRequest = operations['i___favorites']['requestBody']['content']['application/json']; export type IFavoritesResponse = operations['i___favorites']['responses']['200']['content']['application/json']; +export type IFavoritesErrors = _Operations_EndpointsErrors['i___favorites'][keyof _Operations_EndpointsErrors['i___favorites']]; export type IGalleryLikesRequest = operations['i___gallery___likes']['requestBody']['content']['application/json']; export type IGalleryLikesResponse = operations['i___gallery___likes']['responses']['200']['content']['application/json']; +export type IGalleryLikesErrors = _Operations_EndpointsErrors['i___gallery___likes'][keyof _Operations_EndpointsErrors['i___gallery___likes']]; export type IGalleryPostsRequest = operations['i___gallery___posts']['requestBody']['content']['application/json']; export type IGalleryPostsResponse = operations['i___gallery___posts']['responses']['200']['content']['application/json']; +export type IGalleryPostsErrors = _Operations_EndpointsErrors['i___gallery___posts'][keyof _Operations_EndpointsErrors['i___gallery___posts']]; export type IImportBlockingRequest = operations['i___import-blocking']['requestBody']['content']['application/json']; +export type IImportBlockingErrors = _Operations_EndpointsErrors['i___import-blocking'][keyof _Operations_EndpointsErrors['i___import-blocking']]; export type IImportFollowingRequest = operations['i___import-following']['requestBody']['content']['application/json']; +export type IImportFollowingErrors = _Operations_EndpointsErrors['i___import-following'][keyof _Operations_EndpointsErrors['i___import-following']]; export type IImportMutingRequest = operations['i___import-muting']['requestBody']['content']['application/json']; +export type IImportMutingErrors = _Operations_EndpointsErrors['i___import-muting'][keyof _Operations_EndpointsErrors['i___import-muting']]; export type IImportUserListsRequest = operations['i___import-user-lists']['requestBody']['content']['application/json']; +export type IImportUserListsErrors = _Operations_EndpointsErrors['i___import-user-lists'][keyof _Operations_EndpointsErrors['i___import-user-lists']]; export type IImportAntennasRequest = operations['i___import-antennas']['requestBody']['content']['application/json']; +export type IImportAntennasErrors = _Operations_EndpointsErrors['i___import-antennas'][keyof _Operations_EndpointsErrors['i___import-antennas']]; export type INotificationsRequest = operations['i___notifications']['requestBody']['content']['application/json']; export type INotificationsResponse = operations['i___notifications']['responses']['200']['content']['application/json']; +export type INotificationsErrors = _Operations_EndpointsErrors['i___notifications'][keyof _Operations_EndpointsErrors['i___notifications']]; export type INotificationsGroupedRequest = operations['i___notifications-grouped']['requestBody']['content']['application/json']; export type INotificationsGroupedResponse = operations['i___notifications-grouped']['responses']['200']['content']['application/json']; +export type INotificationsGroupedErrors = _Operations_EndpointsErrors['i___notifications-grouped'][keyof _Operations_EndpointsErrors['i___notifications-grouped']]; export type IPageLikesRequest = operations['i___page-likes']['requestBody']['content']['application/json']; export type IPageLikesResponse = operations['i___page-likes']['responses']['200']['content']['application/json']; +export type IPageLikesErrors = _Operations_EndpointsErrors['i___page-likes'][keyof _Operations_EndpointsErrors['i___page-likes']]; export type IPagesRequest = operations['i___pages']['requestBody']['content']['application/json']; export type IPagesResponse = operations['i___pages']['responses']['200']['content']['application/json']; +export type IPagesErrors = _Operations_EndpointsErrors['i___pages'][keyof _Operations_EndpointsErrors['i___pages']]; export type IPinRequest = operations['i___pin']['requestBody']['content']['application/json']; export type IPinResponse = operations['i___pin']['responses']['200']['content']['application/json']; +export type IPinErrors = _Operations_EndpointsErrors['i___pin'][keyof _Operations_EndpointsErrors['i___pin']]; +export type IReadAllUnreadNotesErrors = _Operations_EndpointsErrors['i___read-all-unread-notes'][keyof _Operations_EndpointsErrors['i___read-all-unread-notes']]; export type IReadAnnouncementRequest = operations['i___read-announcement']['requestBody']['content']['application/json']; +export type IReadAnnouncementErrors = _Operations_EndpointsErrors['i___read-announcement'][keyof _Operations_EndpointsErrors['i___read-announcement']]; export type IRegenerateTokenRequest = operations['i___regenerate-token']['requestBody']['content']['application/json']; +export type IRegenerateTokenErrors = _Operations_EndpointsErrors['i___regenerate-token'][keyof _Operations_EndpointsErrors['i___regenerate-token']]; 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 IRegistryGetAllErrors = _Operations_EndpointsErrors['i___registry___get-all'][keyof _Operations_EndpointsErrors['i___registry___get-all']]; 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 IRegistryGetDetailErrors = _Operations_EndpointsErrors['i___registry___get-detail'][keyof _Operations_EndpointsErrors['i___registry___get-detail']]; export type IRegistryGetRequest = operations['i___registry___get']['requestBody']['content']['application/json']; export type IRegistryGetResponse = operations['i___registry___get']['responses']['200']['content']['application/json']; +export type IRegistryGetErrors = _Operations_EndpointsErrors['i___registry___get'][keyof _Operations_EndpointsErrors['i___registry___get']]; export type IRegistryKeysWithTypeRequest = operations['i___registry___keys-with-type']['requestBody']['content']['application/json']; export type IRegistryKeysWithTypeResponse = operations['i___registry___keys-with-type']['responses']['200']['content']['application/json']; +export type IRegistryKeysWithTypeErrors = _Operations_EndpointsErrors['i___registry___keys-with-type'][keyof _Operations_EndpointsErrors['i___registry___keys-with-type']]; export type IRegistryKeysRequest = operations['i___registry___keys']['requestBody']['content']['application/json']; export type IRegistryKeysResponse = operations['i___registry___keys']['responses']['200']['content']['application/json']; +export type IRegistryKeysErrors = _Operations_EndpointsErrors['i___registry___keys'][keyof _Operations_EndpointsErrors['i___registry___keys']]; export type IRegistryRemoveRequest = operations['i___registry___remove']['requestBody']['content']['application/json']; +export type IRegistryRemoveErrors = _Operations_EndpointsErrors['i___registry___remove'][keyof _Operations_EndpointsErrors['i___registry___remove']]; export type IRegistryScopesWithDomainResponse = operations['i___registry___scopes-with-domain']['responses']['200']['content']['application/json']; +export type IRegistryScopesWithDomainErrors = _Operations_EndpointsErrors['i___registry___scopes-with-domain'][keyof _Operations_EndpointsErrors['i___registry___scopes-with-domain']]; export type IRegistrySetRequest = operations['i___registry___set']['requestBody']['content']['application/json']; +export type IRegistrySetErrors = _Operations_EndpointsErrors['i___registry___set'][keyof _Operations_EndpointsErrors['i___registry___set']]; export type IRevokeTokenRequest = operations['i___revoke-token']['requestBody']['content']['application/json']; +export type IRevokeTokenErrors = _Operations_EndpointsErrors['i___revoke-token'][keyof _Operations_EndpointsErrors['i___revoke-token']]; export type ISigninHistoryRequest = operations['i___signin-history']['requestBody']['content']['application/json']; export type ISigninHistoryResponse = operations['i___signin-history']['responses']['200']['content']['application/json']; +export type ISigninHistoryErrors = _Operations_EndpointsErrors['i___signin-history'][keyof _Operations_EndpointsErrors['i___signin-history']]; export type IUnpinRequest = operations['i___unpin']['requestBody']['content']['application/json']; export type IUnpinResponse = operations['i___unpin']['responses']['200']['content']['application/json']; +export type IUnpinErrors = _Operations_EndpointsErrors['i___unpin'][keyof _Operations_EndpointsErrors['i___unpin']]; export type IUpdateEmailRequest = operations['i___update-email']['requestBody']['content']['application/json']; export type IUpdateEmailResponse = operations['i___update-email']['responses']['200']['content']['application/json']; +export type IUpdateEmailErrors = _Operations_EndpointsErrors['i___update-email'][keyof _Operations_EndpointsErrors['i___update-email']]; export type IUpdateRequest = operations['i___update']['requestBody']['content']['application/json']; export type IUpdateResponse = operations['i___update']['responses']['200']['content']['application/json']; +export type IUpdateErrors = _Operations_EndpointsErrors['i___update'][keyof _Operations_EndpointsErrors['i___update']]; export type IMoveRequest = operations['i___move']['requestBody']['content']['application/json']; export type IMoveResponse = operations['i___move']['responses']['200']['content']['application/json']; +export type IMoveErrors = _Operations_EndpointsErrors['i___move'][keyof _Operations_EndpointsErrors['i___move']]; export type IWebhooksCreateRequest = operations['i___webhooks___create']['requestBody']['content']['application/json']; export type IWebhooksCreateResponse = operations['i___webhooks___create']['responses']['200']['content']['application/json']; +export type IWebhooksCreateErrors = _Operations_EndpointsErrors['i___webhooks___create'][keyof _Operations_EndpointsErrors['i___webhooks___create']]; export type IWebhooksListResponse = operations['i___webhooks___list']['responses']['200']['content']['application/json']; +export type IWebhooksListErrors = _Operations_EndpointsErrors['i___webhooks___list'][keyof _Operations_EndpointsErrors['i___webhooks___list']]; export type IWebhooksShowRequest = operations['i___webhooks___show']['requestBody']['content']['application/json']; export type IWebhooksShowResponse = operations['i___webhooks___show']['responses']['200']['content']['application/json']; +export type IWebhooksShowErrors = _Operations_EndpointsErrors['i___webhooks___show'][keyof _Operations_EndpointsErrors['i___webhooks___show']]; export type IWebhooksUpdateRequest = operations['i___webhooks___update']['requestBody']['content']['application/json']; +export type IWebhooksUpdateErrors = _Operations_EndpointsErrors['i___webhooks___update'][keyof _Operations_EndpointsErrors['i___webhooks___update']]; export type IWebhooksDeleteRequest = operations['i___webhooks___delete']['requestBody']['content']['application/json']; +export type IWebhooksDeleteErrors = _Operations_EndpointsErrors['i___webhooks___delete'][keyof _Operations_EndpointsErrors['i___webhooks___delete']]; export type IWebhooksTestRequest = operations['i___webhooks___test']['requestBody']['content']['application/json']; +export type IWebhooksTestErrors = _Operations_EndpointsErrors['i___webhooks___test'][keyof _Operations_EndpointsErrors['i___webhooks___test']]; export type InviteCreateResponse = operations['invite___create']['responses']['200']['content']['application/json']; +export type InviteCreateErrors = _Operations_EndpointsErrors['invite___create'][keyof _Operations_EndpointsErrors['invite___create']]; export type InviteDeleteRequest = operations['invite___delete']['requestBody']['content']['application/json']; +export type InviteDeleteErrors = _Operations_EndpointsErrors['invite___delete'][keyof _Operations_EndpointsErrors['invite___delete']]; export type InviteListRequest = operations['invite___list']['requestBody']['content']['application/json']; export type InviteListResponse = operations['invite___list']['responses']['200']['content']['application/json']; +export type InviteListErrors = _Operations_EndpointsErrors['invite___list'][keyof _Operations_EndpointsErrors['invite___list']]; export type InviteLimitResponse = operations['invite___limit']['responses']['200']['content']['application/json']; +export type InviteLimitErrors = _Operations_EndpointsErrors['invite___limit'][keyof _Operations_EndpointsErrors['invite___limit']]; export type MetaRequest = operations['meta']['requestBody']['content']['application/json']; export type MetaResponse = operations['meta']['responses']['200']['content']['application/json']; +export type MetaErrors = _Operations_EndpointsErrors['meta'][keyof _Operations_EndpointsErrors['meta']]; export type EmojisResponse = operations['emojis']['responses']['200']['content']['application/json']; +export type EmojisErrors = _Operations_EndpointsErrors['emojis'][keyof _Operations_EndpointsErrors['emojis']]; export type EmojiRequest = operations['emoji']['requestBody']['content']['application/json']; export type EmojiResponse = operations['emoji']['responses']['200']['content']['application/json']; +export type EmojiErrors = _Operations_EndpointsErrors['emoji'][keyof _Operations_EndpointsErrors['emoji']]; export type MiauthGenTokenRequest = operations['miauth___gen-token']['requestBody']['content']['application/json']; export type MiauthGenTokenResponse = operations['miauth___gen-token']['responses']['200']['content']['application/json']; +export type MiauthGenTokenErrors = _Operations_EndpointsErrors['miauth___gen-token'][keyof _Operations_EndpointsErrors['miauth___gen-token']]; export type MuteCreateRequest = operations['mute___create']['requestBody']['content']['application/json']; +export type MuteCreateErrors = _Operations_EndpointsErrors['mute___create'][keyof _Operations_EndpointsErrors['mute___create']]; export type MuteDeleteRequest = operations['mute___delete']['requestBody']['content']['application/json']; +export type MuteDeleteErrors = _Operations_EndpointsErrors['mute___delete'][keyof _Operations_EndpointsErrors['mute___delete']]; export type MuteListRequest = operations['mute___list']['requestBody']['content']['application/json']; export type MuteListResponse = operations['mute___list']['responses']['200']['content']['application/json']; +export type MuteListErrors = _Operations_EndpointsErrors['mute___list'][keyof _Operations_EndpointsErrors['mute___list']]; export type RenoteMuteCreateRequest = operations['renote-mute___create']['requestBody']['content']['application/json']; +export type RenoteMuteCreateErrors = _Operations_EndpointsErrors['renote-mute___create'][keyof _Operations_EndpointsErrors['renote-mute___create']]; export type RenoteMuteDeleteRequest = operations['renote-mute___delete']['requestBody']['content']['application/json']; +export type RenoteMuteDeleteErrors = _Operations_EndpointsErrors['renote-mute___delete'][keyof _Operations_EndpointsErrors['renote-mute___delete']]; export type RenoteMuteListRequest = operations['renote-mute___list']['requestBody']['content']['application/json']; export type RenoteMuteListResponse = operations['renote-mute___list']['responses']['200']['content']['application/json']; +export type RenoteMuteListErrors = _Operations_EndpointsErrors['renote-mute___list'][keyof _Operations_EndpointsErrors['renote-mute___list']]; export type MyAppsRequest = operations['my___apps']['requestBody']['content']['application/json']; export type MyAppsResponse = operations['my___apps']['responses']['200']['content']['application/json']; +export type MyAppsErrors = _Operations_EndpointsErrors['my___apps'][keyof _Operations_EndpointsErrors['my___apps']]; export type NotesRequest = operations['notes']['requestBody']['content']['application/json']; export type NotesResponse = operations['notes']['responses']['200']['content']['application/json']; +export type NotesErrors = _Operations_EndpointsErrors['notes'][keyof _Operations_EndpointsErrors['notes']]; export type NotesChildrenRequest = operations['notes___children']['requestBody']['content']['application/json']; export type NotesChildrenResponse = operations['notes___children']['responses']['200']['content']['application/json']; +export type NotesChildrenErrors = _Operations_EndpointsErrors['notes___children'][keyof _Operations_EndpointsErrors['notes___children']]; export type NotesClipsRequest = operations['notes___clips']['requestBody']['content']['application/json']; export type NotesClipsResponse = operations['notes___clips']['responses']['200']['content']['application/json']; +export type NotesClipsErrors = _Operations_EndpointsErrors['notes___clips'][keyof _Operations_EndpointsErrors['notes___clips']]; export type NotesConversationRequest = operations['notes___conversation']['requestBody']['content']['application/json']; export type NotesConversationResponse = operations['notes___conversation']['responses']['200']['content']['application/json']; +export type NotesConversationErrors = _Operations_EndpointsErrors['notes___conversation'][keyof _Operations_EndpointsErrors['notes___conversation']]; export type NotesCreateRequest = operations['notes___create']['requestBody']['content']['application/json']; export type NotesCreateResponse = operations['notes___create']['responses']['200']['content']['application/json']; +export type NotesCreateErrors = _Operations_EndpointsErrors['notes___create'][keyof _Operations_EndpointsErrors['notes___create']]; export type NotesDeleteRequest = operations['notes___delete']['requestBody']['content']['application/json']; +export type NotesDeleteErrors = _Operations_EndpointsErrors['notes___delete'][keyof _Operations_EndpointsErrors['notes___delete']]; export type NotesFavoritesCreateRequest = operations['notes___favorites___create']['requestBody']['content']['application/json']; +export type NotesFavoritesCreateErrors = _Operations_EndpointsErrors['notes___favorites___create'][keyof _Operations_EndpointsErrors['notes___favorites___create']]; export type NotesFavoritesDeleteRequest = operations['notes___favorites___delete']['requestBody']['content']['application/json']; +export type NotesFavoritesDeleteErrors = _Operations_EndpointsErrors['notes___favorites___delete'][keyof _Operations_EndpointsErrors['notes___favorites___delete']]; export type NotesFeaturedRequest = operations['notes___featured']['requestBody']['content']['application/json']; export type NotesFeaturedResponse = operations['notes___featured']['responses']['200']['content']['application/json']; +export type NotesFeaturedErrors = _Operations_EndpointsErrors['notes___featured'][keyof _Operations_EndpointsErrors['notes___featured']]; 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 NotesGlobalTimelineErrors = _Operations_EndpointsErrors['notes___global-timeline'][keyof _Operations_EndpointsErrors['notes___global-timeline']]; 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 NotesHybridTimelineErrors = _Operations_EndpointsErrors['notes___hybrid-timeline'][keyof _Operations_EndpointsErrors['notes___hybrid-timeline']]; export type NotesLocalTimelineRequest = operations['notes___local-timeline']['requestBody']['content']['application/json']; export type NotesLocalTimelineResponse = operations['notes___local-timeline']['responses']['200']['content']['application/json']; +export type NotesLocalTimelineErrors = _Operations_EndpointsErrors['notes___local-timeline'][keyof _Operations_EndpointsErrors['notes___local-timeline']]; export type NotesMentionsRequest = operations['notes___mentions']['requestBody']['content']['application/json']; export type NotesMentionsResponse = operations['notes___mentions']['responses']['200']['content']['application/json']; +export type NotesMentionsErrors = _Operations_EndpointsErrors['notes___mentions'][keyof _Operations_EndpointsErrors['notes___mentions']]; export type NotesPollsRecommendationRequest = operations['notes___polls___recommendation']['requestBody']['content']['application/json']; export type NotesPollsRecommendationResponse = operations['notes___polls___recommendation']['responses']['200']['content']['application/json']; +export type NotesPollsRecommendationErrors = _Operations_EndpointsErrors['notes___polls___recommendation'][keyof _Operations_EndpointsErrors['notes___polls___recommendation']]; export type NotesPollsVoteRequest = operations['notes___polls___vote']['requestBody']['content']['application/json']; +export type NotesPollsVoteErrors = _Operations_EndpointsErrors['notes___polls___vote'][keyof _Operations_EndpointsErrors['notes___polls___vote']]; export type NotesReactionsRequest = operations['notes___reactions']['requestBody']['content']['application/json']; export type NotesReactionsResponse = operations['notes___reactions']['responses']['200']['content']['application/json']; +export type NotesReactionsErrors = _Operations_EndpointsErrors['notes___reactions'][keyof _Operations_EndpointsErrors['notes___reactions']]; export type NotesReactionsCreateRequest = operations['notes___reactions___create']['requestBody']['content']['application/json']; +export type NotesReactionsCreateErrors = _Operations_EndpointsErrors['notes___reactions___create'][keyof _Operations_EndpointsErrors['notes___reactions___create']]; export type NotesReactionsDeleteRequest = operations['notes___reactions___delete']['requestBody']['content']['application/json']; +export type NotesReactionsDeleteErrors = _Operations_EndpointsErrors['notes___reactions___delete'][keyof _Operations_EndpointsErrors['notes___reactions___delete']]; export type NotesRenotesRequest = operations['notes___renotes']['requestBody']['content']['application/json']; export type NotesRenotesResponse = operations['notes___renotes']['responses']['200']['content']['application/json']; +export type NotesRenotesErrors = _Operations_EndpointsErrors['notes___renotes'][keyof _Operations_EndpointsErrors['notes___renotes']]; export type NotesRepliesRequest = operations['notes___replies']['requestBody']['content']['application/json']; export type NotesRepliesResponse = operations['notes___replies']['responses']['200']['content']['application/json']; +export type NotesRepliesErrors = _Operations_EndpointsErrors['notes___replies'][keyof _Operations_EndpointsErrors['notes___replies']]; export type NotesSearchByTagRequest = operations['notes___search-by-tag']['requestBody']['content']['application/json']; export type NotesSearchByTagResponse = operations['notes___search-by-tag']['responses']['200']['content']['application/json']; +export type NotesSearchByTagErrors = _Operations_EndpointsErrors['notes___search-by-tag'][keyof _Operations_EndpointsErrors['notes___search-by-tag']]; export type NotesSearchRequest = operations['notes___search']['requestBody']['content']['application/json']; export type NotesSearchResponse = operations['notes___search']['responses']['200']['content']['application/json']; +export type NotesSearchErrors = _Operations_EndpointsErrors['notes___search'][keyof _Operations_EndpointsErrors['notes___search']]; export type NotesShowRequest = operations['notes___show']['requestBody']['content']['application/json']; export type NotesShowResponse = operations['notes___show']['responses']['200']['content']['application/json']; +export type NotesShowErrors = _Operations_EndpointsErrors['notes___show'][keyof _Operations_EndpointsErrors['notes___show']]; export type NotesStateRequest = operations['notes___state']['requestBody']['content']['application/json']; export type NotesStateResponse = operations['notes___state']['responses']['200']['content']['application/json']; +export type NotesStateErrors = _Operations_EndpointsErrors['notes___state'][keyof _Operations_EndpointsErrors['notes___state']]; export type NotesThreadMutingCreateRequest = operations['notes___thread-muting___create']['requestBody']['content']['application/json']; +export type NotesThreadMutingCreateErrors = _Operations_EndpointsErrors['notes___thread-muting___create'][keyof _Operations_EndpointsErrors['notes___thread-muting___create']]; export type NotesThreadMutingDeleteRequest = operations['notes___thread-muting___delete']['requestBody']['content']['application/json']; +export type NotesThreadMutingDeleteErrors = _Operations_EndpointsErrors['notes___thread-muting___delete'][keyof _Operations_EndpointsErrors['notes___thread-muting___delete']]; export type NotesTimelineRequest = operations['notes___timeline']['requestBody']['content']['application/json']; export type NotesTimelineResponse = operations['notes___timeline']['responses']['200']['content']['application/json']; +export type NotesTimelineErrors = _Operations_EndpointsErrors['notes___timeline'][keyof _Operations_EndpointsErrors['notes___timeline']]; export type NotesTranslateRequest = operations['notes___translate']['requestBody']['content']['application/json']; export type NotesTranslateResponse = operations['notes___translate']['responses']['200']['content']['application/json']; +export type NotesTranslateErrors = _Operations_EndpointsErrors['notes___translate'][keyof _Operations_EndpointsErrors['notes___translate']]; export type NotesUnrenoteRequest = operations['notes___unrenote']['requestBody']['content']['application/json']; +export type NotesUnrenoteErrors = _Operations_EndpointsErrors['notes___unrenote'][keyof _Operations_EndpointsErrors['notes___unrenote']]; 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 NotesUserListTimelineErrors = _Operations_EndpointsErrors['notes___user-list-timeline'][keyof _Operations_EndpointsErrors['notes___user-list-timeline']]; export type NotificationsCreateRequest = operations['notifications___create']['requestBody']['content']['application/json']; +export type NotificationsCreateErrors = _Operations_EndpointsErrors['notifications___create'][keyof _Operations_EndpointsErrors['notifications___create']]; +export type NotificationsFlushErrors = _Operations_EndpointsErrors['notifications___flush'][keyof _Operations_EndpointsErrors['notifications___flush']]; +export type NotificationsMarkAllAsReadErrors = _Operations_EndpointsErrors['notifications___mark-all-as-read'][keyof _Operations_EndpointsErrors['notifications___mark-all-as-read']]; +export type NotificationsTestNotificationErrors = _Operations_EndpointsErrors['notifications___test-notification'][keyof _Operations_EndpointsErrors['notifications___test-notification']]; export type PagePushRequest = operations['page-push']['requestBody']['content']['application/json']; +export type PagePushErrors = _Operations_EndpointsErrors['page-push'][keyof _Operations_EndpointsErrors['page-push']]; export type PagesCreateRequest = operations['pages___create']['requestBody']['content']['application/json']; export type PagesCreateResponse = operations['pages___create']['responses']['200']['content']['application/json']; +export type PagesCreateErrors = _Operations_EndpointsErrors['pages___create'][keyof _Operations_EndpointsErrors['pages___create']]; export type PagesDeleteRequest = operations['pages___delete']['requestBody']['content']['application/json']; +export type PagesDeleteErrors = _Operations_EndpointsErrors['pages___delete'][keyof _Operations_EndpointsErrors['pages___delete']]; export type PagesFeaturedResponse = operations['pages___featured']['responses']['200']['content']['application/json']; +export type PagesFeaturedErrors = _Operations_EndpointsErrors['pages___featured'][keyof _Operations_EndpointsErrors['pages___featured']]; export type PagesLikeRequest = operations['pages___like']['requestBody']['content']['application/json']; +export type PagesLikeErrors = _Operations_EndpointsErrors['pages___like'][keyof _Operations_EndpointsErrors['pages___like']]; export type PagesShowRequest = operations['pages___show']['requestBody']['content']['application/json']; export type PagesShowResponse = operations['pages___show']['responses']['200']['content']['application/json']; +export type PagesShowErrors = _Operations_EndpointsErrors['pages___show'][keyof _Operations_EndpointsErrors['pages___show']]; export type PagesUnlikeRequest = operations['pages___unlike']['requestBody']['content']['application/json']; +export type PagesUnlikeErrors = _Operations_EndpointsErrors['pages___unlike'][keyof _Operations_EndpointsErrors['pages___unlike']]; export type PagesUpdateRequest = operations['pages___update']['requestBody']['content']['application/json']; +export type PagesUpdateErrors = _Operations_EndpointsErrors['pages___update'][keyof _Operations_EndpointsErrors['pages___update']]; export type FlashCreateRequest = operations['flash___create']['requestBody']['content']['application/json']; export type FlashCreateResponse = operations['flash___create']['responses']['200']['content']['application/json']; +export type FlashCreateErrors = _Operations_EndpointsErrors['flash___create'][keyof _Operations_EndpointsErrors['flash___create']]; export type FlashDeleteRequest = operations['flash___delete']['requestBody']['content']['application/json']; +export type FlashDeleteErrors = _Operations_EndpointsErrors['flash___delete'][keyof _Operations_EndpointsErrors['flash___delete']]; export type FlashFeaturedRequest = operations['flash___featured']['requestBody']['content']['application/json']; export type FlashFeaturedResponse = operations['flash___featured']['responses']['200']['content']['application/json']; +export type FlashFeaturedErrors = _Operations_EndpointsErrors['flash___featured'][keyof _Operations_EndpointsErrors['flash___featured']]; export type FlashLikeRequest = operations['flash___like']['requestBody']['content']['application/json']; +export type FlashLikeErrors = _Operations_EndpointsErrors['flash___like'][keyof _Operations_EndpointsErrors['flash___like']]; export type FlashShowRequest = operations['flash___show']['requestBody']['content']['application/json']; export type FlashShowResponse = operations['flash___show']['responses']['200']['content']['application/json']; +export type FlashShowErrors = _Operations_EndpointsErrors['flash___show'][keyof _Operations_EndpointsErrors['flash___show']]; export type FlashUnlikeRequest = operations['flash___unlike']['requestBody']['content']['application/json']; +export type FlashUnlikeErrors = _Operations_EndpointsErrors['flash___unlike'][keyof _Operations_EndpointsErrors['flash___unlike']]; export type FlashUpdateRequest = operations['flash___update']['requestBody']['content']['application/json']; +export type FlashUpdateErrors = _Operations_EndpointsErrors['flash___update'][keyof _Operations_EndpointsErrors['flash___update']]; export type FlashMyRequest = operations['flash___my']['requestBody']['content']['application/json']; export type FlashMyResponse = operations['flash___my']['responses']['200']['content']['application/json']; +export type FlashMyErrors = _Operations_EndpointsErrors['flash___my'][keyof _Operations_EndpointsErrors['flash___my']]; export type FlashMyLikesRequest = operations['flash___my-likes']['requestBody']['content']['application/json']; export type FlashMyLikesResponse = operations['flash___my-likes']['responses']['200']['content']['application/json']; +export type FlashMyLikesErrors = _Operations_EndpointsErrors['flash___my-likes'][keyof _Operations_EndpointsErrors['flash___my-likes']]; export type PingResponse = operations['ping']['responses']['200']['content']['application/json']; +export type PingErrors = _Operations_EndpointsErrors['ping'][keyof _Operations_EndpointsErrors['ping']]; export type PinnedUsersResponse = operations['pinned-users']['responses']['200']['content']['application/json']; +export type PinnedUsersErrors = _Operations_EndpointsErrors['pinned-users'][keyof _Operations_EndpointsErrors['pinned-users']]; export type PromoReadRequest = operations['promo___read']['requestBody']['content']['application/json']; +export type PromoReadErrors = _Operations_EndpointsErrors['promo___read'][keyof _Operations_EndpointsErrors['promo___read']]; export type RolesListResponse = operations['roles___list']['responses']['200']['content']['application/json']; +export type RolesListErrors = _Operations_EndpointsErrors['roles___list'][keyof _Operations_EndpointsErrors['roles___list']]; export type RolesShowRequest = operations['roles___show']['requestBody']['content']['application/json']; export type RolesShowResponse = operations['roles___show']['responses']['200']['content']['application/json']; +export type RolesShowErrors = _Operations_EndpointsErrors['roles___show'][keyof _Operations_EndpointsErrors['roles___show']]; export type RolesUsersRequest = operations['roles___users']['requestBody']['content']['application/json']; export type RolesUsersResponse = operations['roles___users']['responses']['200']['content']['application/json']; +export type RolesUsersErrors = _Operations_EndpointsErrors['roles___users'][keyof _Operations_EndpointsErrors['roles___users']]; export type RolesNotesRequest = operations['roles___notes']['requestBody']['content']['application/json']; export type RolesNotesResponse = operations['roles___notes']['responses']['200']['content']['application/json']; +export type RolesNotesErrors = _Operations_EndpointsErrors['roles___notes'][keyof _Operations_EndpointsErrors['roles___notes']]; export type RequestResetPasswordRequest = operations['request-reset-password']['requestBody']['content']['application/json']; +export type RequestResetPasswordErrors = _Operations_EndpointsErrors['request-reset-password'][keyof _Operations_EndpointsErrors['request-reset-password']]; +export type ResetDbErrors = _Operations_EndpointsErrors['reset-db'][keyof _Operations_EndpointsErrors['reset-db']]; export type ResetPasswordRequest = operations['reset-password']['requestBody']['content']['application/json']; +export type ResetPasswordErrors = _Operations_EndpointsErrors['reset-password'][keyof _Operations_EndpointsErrors['reset-password']]; export type ServerInfoResponse = operations['server-info']['responses']['200']['content']['application/json']; +export type ServerInfoErrors = _Operations_EndpointsErrors['server-info'][keyof _Operations_EndpointsErrors['server-info']]; export type StatsResponse = operations['stats']['responses']['200']['content']['application/json']; +export type StatsErrors = _Operations_EndpointsErrors['stats'][keyof _Operations_EndpointsErrors['stats']]; export type SwShowRegistrationRequest = operations['sw___show-registration']['requestBody']['content']['application/json']; export type SwShowRegistrationResponse = operations['sw___show-registration']['responses']['200']['content']['application/json']; +export type SwShowRegistrationErrors = _Operations_EndpointsErrors['sw___show-registration'][keyof _Operations_EndpointsErrors['sw___show-registration']]; export type SwUpdateRegistrationRequest = operations['sw___update-registration']['requestBody']['content']['application/json']; export type SwUpdateRegistrationResponse = operations['sw___update-registration']['responses']['200']['content']['application/json']; +export type SwUpdateRegistrationErrors = _Operations_EndpointsErrors['sw___update-registration'][keyof _Operations_EndpointsErrors['sw___update-registration']]; export type SwRegisterRequest = operations['sw___register']['requestBody']['content']['application/json']; export type SwRegisterResponse = operations['sw___register']['responses']['200']['content']['application/json']; +export type SwRegisterErrors = _Operations_EndpointsErrors['sw___register'][keyof _Operations_EndpointsErrors['sw___register']]; export type SwUnregisterRequest = operations['sw___unregister']['requestBody']['content']['application/json']; +export type SwUnregisterErrors = _Operations_EndpointsErrors['sw___unregister'][keyof _Operations_EndpointsErrors['sw___unregister']]; export type TestRequest = operations['test']['requestBody']['content']['application/json']; export type TestResponse = operations['test']['responses']['200']['content']['application/json']; +export type TestErrors = _Operations_EndpointsErrors['test'][keyof _Operations_EndpointsErrors['test']]; export type UsernameAvailableRequest = operations['username___available']['requestBody']['content']['application/json']; export type UsernameAvailableResponse = operations['username___available']['responses']['200']['content']['application/json']; +export type UsernameAvailableErrors = _Operations_EndpointsErrors['username___available'][keyof _Operations_EndpointsErrors['username___available']]; export type UsersRequest = operations['users']['requestBody']['content']['application/json']; export type UsersResponse = operations['users']['responses']['200']['content']['application/json']; +export type UsersErrors = _Operations_EndpointsErrors['users'][keyof _Operations_EndpointsErrors['users']]; export type UsersClipsRequest = operations['users___clips']['requestBody']['content']['application/json']; export type UsersClipsResponse = operations['users___clips']['responses']['200']['content']['application/json']; +export type UsersClipsErrors = _Operations_EndpointsErrors['users___clips'][keyof _Operations_EndpointsErrors['users___clips']]; export type UsersFollowersRequest = operations['users___followers']['requestBody']['content']['application/json']; export type UsersFollowersResponse = operations['users___followers']['responses']['200']['content']['application/json']; +export type UsersFollowersErrors = _Operations_EndpointsErrors['users___followers'][keyof _Operations_EndpointsErrors['users___followers']]; export type UsersFollowingRequest = operations['users___following']['requestBody']['content']['application/json']; export type UsersFollowingResponse = operations['users___following']['responses']['200']['content']['application/json']; +export type UsersFollowingErrors = _Operations_EndpointsErrors['users___following'][keyof _Operations_EndpointsErrors['users___following']]; export type UsersGalleryPostsRequest = operations['users___gallery___posts']['requestBody']['content']['application/json']; export type UsersGalleryPostsResponse = operations['users___gallery___posts']['responses']['200']['content']['application/json']; +export type UsersGalleryPostsErrors = _Operations_EndpointsErrors['users___gallery___posts'][keyof _Operations_EndpointsErrors['users___gallery___posts']]; export type UsersGetFrequentlyRepliedUsersRequest = operations['users___get-frequently-replied-users']['requestBody']['content']['application/json']; export type UsersGetFrequentlyRepliedUsersResponse = operations['users___get-frequently-replied-users']['responses']['200']['content']['application/json']; +export type UsersGetFrequentlyRepliedUsersErrors = _Operations_EndpointsErrors['users___get-frequently-replied-users'][keyof _Operations_EndpointsErrors['users___get-frequently-replied-users']]; export type UsersFeaturedNotesRequest = operations['users___featured-notes']['requestBody']['content']['application/json']; export type UsersFeaturedNotesResponse = operations['users___featured-notes']['responses']['200']['content']['application/json']; +export type UsersFeaturedNotesErrors = _Operations_EndpointsErrors['users___featured-notes'][keyof _Operations_EndpointsErrors['users___featured-notes']]; export type UsersListsCreateRequest = operations['users___lists___create']['requestBody']['content']['application/json']; export type UsersListsCreateResponse = operations['users___lists___create']['responses']['200']['content']['application/json']; +export type UsersListsCreateErrors = _Operations_EndpointsErrors['users___lists___create'][keyof _Operations_EndpointsErrors['users___lists___create']]; export type UsersListsDeleteRequest = operations['users___lists___delete']['requestBody']['content']['application/json']; +export type UsersListsDeleteErrors = _Operations_EndpointsErrors['users___lists___delete'][keyof _Operations_EndpointsErrors['users___lists___delete']]; export type UsersListsListRequest = operations['users___lists___list']['requestBody']['content']['application/json']; export type UsersListsListResponse = operations['users___lists___list']['responses']['200']['content']['application/json']; +export type UsersListsListErrors = _Operations_EndpointsErrors['users___lists___list'][keyof _Operations_EndpointsErrors['users___lists___list']]; export type UsersListsPullRequest = operations['users___lists___pull']['requestBody']['content']['application/json']; +export type UsersListsPullErrors = _Operations_EndpointsErrors['users___lists___pull'][keyof _Operations_EndpointsErrors['users___lists___pull']]; export type UsersListsPushRequest = operations['users___lists___push']['requestBody']['content']['application/json']; +export type UsersListsPushErrors = _Operations_EndpointsErrors['users___lists___push'][keyof _Operations_EndpointsErrors['users___lists___push']]; export type UsersListsShowRequest = operations['users___lists___show']['requestBody']['content']['application/json']; export type UsersListsShowResponse = operations['users___lists___show']['responses']['200']['content']['application/json']; +export type UsersListsShowErrors = _Operations_EndpointsErrors['users___lists___show'][keyof _Operations_EndpointsErrors['users___lists___show']]; export type UsersListsFavoriteRequest = operations['users___lists___favorite']['requestBody']['content']['application/json']; +export type UsersListsFavoriteErrors = _Operations_EndpointsErrors['users___lists___favorite'][keyof _Operations_EndpointsErrors['users___lists___favorite']]; export type UsersListsUnfavoriteRequest = operations['users___lists___unfavorite']['requestBody']['content']['application/json']; +export type UsersListsUnfavoriteErrors = _Operations_EndpointsErrors['users___lists___unfavorite'][keyof _Operations_EndpointsErrors['users___lists___unfavorite']]; export type UsersListsUpdateRequest = operations['users___lists___update']['requestBody']['content']['application/json']; export type UsersListsUpdateResponse = operations['users___lists___update']['responses']['200']['content']['application/json']; +export type UsersListsUpdateErrors = _Operations_EndpointsErrors['users___lists___update'][keyof _Operations_EndpointsErrors['users___lists___update']]; export type UsersListsCreateFromPublicRequest = operations['users___lists___create-from-public']['requestBody']['content']['application/json']; export type UsersListsCreateFromPublicResponse = operations['users___lists___create-from-public']['responses']['200']['content']['application/json']; +export type UsersListsCreateFromPublicErrors = _Operations_EndpointsErrors['users___lists___create-from-public'][keyof _Operations_EndpointsErrors['users___lists___create-from-public']]; export type UsersListsUpdateMembershipRequest = operations['users___lists___update-membership']['requestBody']['content']['application/json']; +export type UsersListsUpdateMembershipErrors = _Operations_EndpointsErrors['users___lists___update-membership'][keyof _Operations_EndpointsErrors['users___lists___update-membership']]; export type UsersListsGetMembershipsRequest = operations['users___lists___get-memberships']['requestBody']['content']['application/json']; export type UsersListsGetMembershipsResponse = operations['users___lists___get-memberships']['responses']['200']['content']['application/json']; +export type UsersListsGetMembershipsErrors = _Operations_EndpointsErrors['users___lists___get-memberships'][keyof _Operations_EndpointsErrors['users___lists___get-memberships']]; export type UsersNotesRequest = operations['users___notes']['requestBody']['content']['application/json']; export type UsersNotesResponse = operations['users___notes']['responses']['200']['content']['application/json']; +export type UsersNotesErrors = _Operations_EndpointsErrors['users___notes'][keyof _Operations_EndpointsErrors['users___notes']]; export type UsersPagesRequest = operations['users___pages']['requestBody']['content']['application/json']; export type UsersPagesResponse = operations['users___pages']['responses']['200']['content']['application/json']; +export type UsersPagesErrors = _Operations_EndpointsErrors['users___pages'][keyof _Operations_EndpointsErrors['users___pages']]; export type UsersFlashsRequest = operations['users___flashs']['requestBody']['content']['application/json']; export type UsersFlashsResponse = operations['users___flashs']['responses']['200']['content']['application/json']; +export type UsersFlashsErrors = _Operations_EndpointsErrors['users___flashs'][keyof _Operations_EndpointsErrors['users___flashs']]; export type UsersReactionsRequest = operations['users___reactions']['requestBody']['content']['application/json']; export type UsersReactionsResponse = operations['users___reactions']['responses']['200']['content']['application/json']; +export type UsersReactionsErrors = _Operations_EndpointsErrors['users___reactions'][keyof _Operations_EndpointsErrors['users___reactions']]; export type UsersRecommendationRequest = operations['users___recommendation']['requestBody']['content']['application/json']; export type UsersRecommendationResponse = operations['users___recommendation']['responses']['200']['content']['application/json']; +export type UsersRecommendationErrors = _Operations_EndpointsErrors['users___recommendation'][keyof _Operations_EndpointsErrors['users___recommendation']]; export type UsersRelationRequest = operations['users___relation']['requestBody']['content']['application/json']; export type UsersRelationResponse = operations['users___relation']['responses']['200']['content']['application/json']; +export type UsersRelationErrors = _Operations_EndpointsErrors['users___relation'][keyof _Operations_EndpointsErrors['users___relation']]; export type UsersReportAbuseRequest = operations['users___report-abuse']['requestBody']['content']['application/json']; +export type UsersReportAbuseErrors = _Operations_EndpointsErrors['users___report-abuse'][keyof _Operations_EndpointsErrors['users___report-abuse']]; export type UsersSearchByUsernameAndHostRequest = operations['users___search-by-username-and-host']['requestBody']['content']['application/json']; export type UsersSearchByUsernameAndHostResponse = operations['users___search-by-username-and-host']['responses']['200']['content']['application/json']; +export type UsersSearchByUsernameAndHostErrors = _Operations_EndpointsErrors['users___search-by-username-and-host'][keyof _Operations_EndpointsErrors['users___search-by-username-and-host']]; export type UsersSearchRequest = operations['users___search']['requestBody']['content']['application/json']; export type UsersSearchResponse = operations['users___search']['responses']['200']['content']['application/json']; +export type UsersSearchErrors = _Operations_EndpointsErrors['users___search'][keyof _Operations_EndpointsErrors['users___search']]; export type UsersShowRequest = operations['users___show']['requestBody']['content']['application/json']; export type UsersShowResponse = operations['users___show']['responses']['200']['content']['application/json']; +export type UsersShowErrors = _Operations_EndpointsErrors['users___show'][keyof _Operations_EndpointsErrors['users___show']]; export type UsersAchievementsRequest = operations['users___achievements']['requestBody']['content']['application/json']; export type UsersAchievementsResponse = operations['users___achievements']['responses']['200']['content']['application/json']; +export type UsersAchievementsErrors = _Operations_EndpointsErrors['users___achievements'][keyof _Operations_EndpointsErrors['users___achievements']]; export type UsersUpdateMemoRequest = operations['users___update-memo']['requestBody']['content']['application/json']; +export type UsersUpdateMemoErrors = _Operations_EndpointsErrors['users___update-memo'][keyof _Operations_EndpointsErrors['users___update-memo']]; export type FetchRssRequest = operations['fetch-rss']['requestBody']['content']['application/json']; export type FetchRssResponse = operations['fetch-rss']['responses']['200']['content']['application/json']; +export type FetchRssErrors = _Operations_EndpointsErrors['fetch-rss'][keyof _Operations_EndpointsErrors['fetch-rss']]; 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 FetchExternalResourcesErrors = _Operations_EndpointsErrors['fetch-external-resources'][keyof _Operations_EndpointsErrors['fetch-external-resources']]; export type RetentionResponse = operations['retention']['responses']['200']['content']['application/json']; +export type RetentionErrors = _Operations_EndpointsErrors['retention'][keyof _Operations_EndpointsErrors['retention']]; export type BubbleGameRegisterRequest = operations['bubble-game___register']['requestBody']['content']['application/json']; +export type BubbleGameRegisterErrors = _Operations_EndpointsErrors['bubble-game___register'][keyof _Operations_EndpointsErrors['bubble-game___register']]; export type BubbleGameRankingRequest = operations['bubble-game___ranking']['requestBody']['content']['application/json']; export type BubbleGameRankingResponse = operations['bubble-game___ranking']['responses']['200']['content']['application/json']; +export type BubbleGameRankingErrors = _Operations_EndpointsErrors['bubble-game___ranking'][keyof _Operations_EndpointsErrors['bubble-game___ranking']]; export type ReversiCancelMatchRequest = operations['reversi___cancel-match']['requestBody']['content']['application/json']; +export type ReversiCancelMatchErrors = _Operations_EndpointsErrors['reversi___cancel-match'][keyof _Operations_EndpointsErrors['reversi___cancel-match']]; export type ReversiGamesRequest = operations['reversi___games']['requestBody']['content']['application/json']; export type ReversiGamesResponse = operations['reversi___games']['responses']['200']['content']['application/json']; +export type ReversiGamesErrors = _Operations_EndpointsErrors['reversi___games'][keyof _Operations_EndpointsErrors['reversi___games']]; export type ReversiMatchRequest = operations['reversi___match']['requestBody']['content']['application/json']; export type ReversiMatchResponse = operations['reversi___match']['responses']['200']['content']['application/json']; +export type ReversiMatchErrors = _Operations_EndpointsErrors['reversi___match'][keyof _Operations_EndpointsErrors['reversi___match']]; export type ReversiInvitationsResponse = operations['reversi___invitations']['responses']['200']['content']['application/json']; +export type ReversiInvitationsErrors = _Operations_EndpointsErrors['reversi___invitations'][keyof _Operations_EndpointsErrors['reversi___invitations']]; export type ReversiShowGameRequest = operations['reversi___show-game']['requestBody']['content']['application/json']; export type ReversiShowGameResponse = operations['reversi___show-game']['responses']['200']['content']['application/json']; +export type ReversiShowGameErrors = _Operations_EndpointsErrors['reversi___show-game'][keyof _Operations_EndpointsErrors['reversi___show-game']]; export type ReversiSurrenderRequest = operations['reversi___surrender']['requestBody']['content']['application/json']; +export type ReversiSurrenderErrors = _Operations_EndpointsErrors['reversi___surrender'][keyof _Operations_EndpointsErrors['reversi___surrender']]; export type ReversiVerifyRequest = operations['reversi___verify']['requestBody']['content']['application/json']; export type ReversiVerifyResponse = operations['reversi___verify']['responses']['200']['content']['application/json']; +export type ReversiVerifyErrors = _Operations_EndpointsErrors['reversi___verify'][keyof _Operations_EndpointsErrors['reversi___verify']]; diff --git a/packages/misskey-js/src/entities.ts b/packages/misskey-js/src/entities.ts index dd88791ed0..9322c87885 100644 --- a/packages/misskey-js/src/entities.ts +++ b/packages/misskey-js/src/entities.ts @@ -13,6 +13,7 @@ import { import type { AuthenticationResponseJSON, PublicKeyCredentialRequestOptionsJSON } from '@simplewebauthn/types'; export * from './autogen/entities.js'; +export { CommonErrorTypes } from './autogen/endpointErrors.js'; export * from './autogen/models.js'; export type ID = string; @@ -273,6 +274,18 @@ export type SignupPendingResponse = { i: string, }; +export type SignupErrors = { + message: 'DUPLICATED_USERNAME', + code: 400, +} | { + message: 'USED_USERNAME', + code: 400, +} | { + message: 'DENIED_USERNAME', + code: 400, +/* eslint-disable-next-line @typescript-eslint/no-explicit-any */ +} | Record; + export type SigninFlowRequest = { username: string; password?: string; @@ -297,6 +310,32 @@ export type SigninFlowResponse = { authRequest: PublicKeyCredentialRequestOptionsJSON; }; +type WebAuthnServiceErrors = { + id: '2d16e51c-007b-4edd-afd2-f7dd02c947f6', // Invalid context (WebAuthnService) +} | { + id: '36b96a7d-b547-412d-aeed-2d611cdc8cdc', // Unknown WebAuthn Key (WebAuthnService) +} | { + id: 'b18c89a7-5b5e-4cec-bb5b-0419f332d430', // Verification failed (WebAuthnService) +}; + +export type SigninFlowErrors = { + message: 'Too many failed attempts to sign in. Try again later.', + code: 'TOO_MANY_AUTHENTICATION_FAILURES', + id: '22d05606-fbcf-421a-a2db-b32610dcfd1b', +} | { + id: '6cc579cc-885d-43d8-95c2-b8c7fc963280', // User not found +} | { + id: 'e03a5f46-d309-4865-9b69-56282d94e1eb', // User is suspended +} | { + id: '4e30e80c-e338-45a0-8c8f-44455efa3b76', // Internal server error +} | { + id: '932c904e-9460-45b7-9ce6-7ed33be7eb2c', // Invalid credentials +} | { + id: 'cdf1235b-ac71-46d4-a3a6-84ccce48df6f', // Invalid one-time password +} | { + id: '93b86c4b-72f9-40eb-9815-798928603d1e', // Invalid passkey credential +} | WebAuthnServiceErrors; + export type SigninWithPasskeyRequest = { credential?: AuthenticationResponseJSON; context?: string; @@ -311,6 +350,24 @@ export type SigninWithPasskeyResponse = { signinResponse: SigninFlowResponse & { finished: true }; }; +export type SigninWithPasskeyErrors = { + message: 'Too many failed attempts to sign in. Try again later.', + code: 'TOO_MANY_AUTHENTICATION_FAILURES', + id: '22d05606-fbcf-421a-a2db-b32610dcfd1b', +} | { + id: '4e30e80c-e338-45a0-8c8f-44455efa3b76', // Internal server error +} | { + id: '1658cc2e-4495-461f-aee4-d403cdf073c1', // No Context +} | { + id: '932c904e-9460-45b7-9ce6-7ed33be7eb2c', // Invalid credentials +} | { + id: '652f899f-66d4-490e-993e-6606c8ec04c3', // User not found +} | { + id: 'e03a5f46-d309-4865-9b69-56282d94e1eb', // User is suspended +} | { + id: '2d84773e-f7b7-4d0b-8f72-bb69b584c912', // Passwordless Login is disabled +} | WebAuthnServiceErrors; + type Values> = T[keyof T]; export type PartialRolePolicyOverride = Partial<{[k in keyof RolePolicies]: Omit, 'value'> & { value: RolePolicies[k] }}>;