chore(misskey-js): update misskey-js with api.json (#12778)
pnpm build && pnpm build-misskey-js-with-types && pnpm --filter misskey-js api
This commit is contained in:
parent
0009aa332b
commit
237fe242ad
6 changed files with 889 additions and 383 deletions
|
@ -21,6 +21,11 @@ declare namespace acct {
|
|||
}
|
||||
export { acct }
|
||||
|
||||
// Warning: (ae-forgotten-export) The symbol "components" needs to be exported by the entry point index.d.ts
|
||||
//
|
||||
// @public (undocumented)
|
||||
type Ad = components['schemas']['Ad'];
|
||||
|
||||
// Warning: (ae-forgotten-export) The symbol "operations" needs to be exported by the entry point index.d.ts
|
||||
//
|
||||
// @public (undocumented)
|
||||
|
@ -41,15 +46,24 @@ type AdminAccountsDeleteRequest = operations['admin/accounts/delete']['requestBo
|
|||
// @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 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 AdminAdDeleteRequest = operations['admin/ad/delete']['requestBody']['content']['application/json'];
|
||||
|
||||
// @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 AdminAdUpdateRequest = operations['admin/ad/update']['requestBody']['content']['application/json'];
|
||||
|
||||
|
@ -167,12 +181,18 @@ type AdminFederationRemoveAllFollowingRequest = operations['admin/federation/rem
|
|||
// @public (undocumented)
|
||||
type AdminFederationUpdateInstanceRequest = operations['admin/federation/update-instance']['requestBody']['content']['application/json'];
|
||||
|
||||
// @public (undocumented)
|
||||
type AdminGetIndexStatsResponse = operations['admin/get-index-stats']['responses']['200']['content']['application/json'];
|
||||
|
||||
// @public (undocumented)
|
||||
type AdminGetTableStatsResponse = operations['admin/get-table-stats']['responses']['200']['content']['application/json'];
|
||||
|
||||
// @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 AdminInviteCreateRequest = operations['admin/invite/create']['requestBody']['content']['application/json'];
|
||||
|
||||
|
@ -257,6 +277,9 @@ type AdminRolesUpdateRequest = operations['admin/roles/update']['requestBody']['
|
|||
// @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 AdminSendEmailRequest = operations['admin/send-email']['requestBody']['content']['application/json'];
|
||||
|
||||
|
@ -299,8 +322,6 @@ type AdminUpdateMetaRequest = operations['admin/update-meta']['requestBody']['co
|
|||
// @public (undocumented)
|
||||
type AdminUpdateUserNoteRequest = operations['admin/update-user-note']['requestBody']['content']['application/json'];
|
||||
|
||||
// Warning: (ae-forgotten-export) The symbol "components" needs to be exported by the entry point index.d.ts
|
||||
//
|
||||
// @public (undocumented)
|
||||
type Announcement = components['schemas']['Announcement'];
|
||||
|
||||
|
@ -989,6 +1010,9 @@ type EmptyResponse = Record<string, unknown> | undefined;
|
|||
// @public (undocumented)
|
||||
type EndpointRequest = operations['endpoint']['requestBody']['content']['application/json'];
|
||||
|
||||
// @public (undocumented)
|
||||
type EndpointResponse = operations['endpoint']['responses']['200']['content']['application/json'];
|
||||
|
||||
// Warning: (ae-forgotten-export) The symbol "Overwrite" needs to be exported by the entry point index.d.ts
|
||||
// Warning: (ae-forgotten-export) The symbol "Endpoints_2" needs to be exported by the entry point index.d.ts
|
||||
//
|
||||
|
@ -1038,9 +1062,12 @@ declare namespace entities {
|
|||
AdminAccountsCreateResponse,
|
||||
AdminAccountsDeleteRequest,
|
||||
AdminAccountsFindByEmailRequest,
|
||||
AdminAccountsFindByEmailResponse,
|
||||
AdminAdCreateRequest,
|
||||
AdminAdCreateResponse,
|
||||
AdminAdDeleteRequest,
|
||||
AdminAdListRequest,
|
||||
AdminAdListResponse,
|
||||
AdminAdUpdateRequest,
|
||||
AdminAnnouncementsCreateRequest,
|
||||
AdminAnnouncementsCreateResponse,
|
||||
|
@ -1080,8 +1107,10 @@ declare namespace entities {
|
|||
AdminFederationRefreshRemoteInstanceMetadataRequest,
|
||||
AdminFederationRemoveAllFollowingRequest,
|
||||
AdminFederationUpdateInstanceRequest,
|
||||
AdminGetIndexStatsResponse,
|
||||
AdminGetTableStatsResponse,
|
||||
AdminGetUserIpsRequest,
|
||||
AdminGetUserIpsResponse,
|
||||
AdminInviteCreateRequest,
|
||||
AdminInviteCreateResponse,
|
||||
AdminInviteListRequest,
|
||||
|
@ -1123,6 +1152,7 @@ declare namespace entities {
|
|||
AdminRolesUnassignRequest,
|
||||
AdminRolesUpdateDefaultPoliciesRequest,
|
||||
AdminRolesUsersRequest,
|
||||
AdminRolesUsersResponse,
|
||||
AnnouncementsRequest,
|
||||
AnnouncementsResponse,
|
||||
AntennasCreateRequest,
|
||||
|
@ -1250,6 +1280,7 @@ declare namespace entities {
|
|||
EmailAddressAvailableRequest,
|
||||
EmailAddressAvailableResponse,
|
||||
EndpointRequest,
|
||||
EndpointResponse,
|
||||
EndpointsResponse,
|
||||
FederationFollowersRequest,
|
||||
FederationFollowersResponse,
|
||||
|
@ -1263,6 +1294,7 @@ declare namespace entities {
|
|||
FederationUsersRequest,
|
||||
FederationUsersResponse,
|
||||
FederationStatsRequest,
|
||||
FederationStatsResponse,
|
||||
FollowingCreateRequest,
|
||||
FollowingCreateResponse,
|
||||
FollowingDeleteRequest,
|
||||
|
@ -1292,6 +1324,7 @@ declare namespace entities {
|
|||
GalleryPostsUnlikeRequest,
|
||||
GalleryPostsUpdateRequest,
|
||||
GalleryPostsUpdateResponse,
|
||||
GetOnlineUsersCountResponse,
|
||||
GetAvatarDecorationsResponse,
|
||||
HashtagsListRequest,
|
||||
HashtagsListResponse,
|
||||
|
@ -1305,14 +1338,19 @@ declare namespace entities {
|
|||
IResponse,
|
||||
I2faDoneRequest,
|
||||
I2faKeyDoneRequest,
|
||||
I2faKeyDoneResponse,
|
||||
I2faPasswordLessRequest,
|
||||
I2faRegisterKeyRequest,
|
||||
I2faRegisterKeyResponse,
|
||||
I2faRegisterRequest,
|
||||
I2faRegisterResponse,
|
||||
I2faUpdateKeyRequest,
|
||||
I2faRemoveKeyRequest,
|
||||
I2faUnregisterRequest,
|
||||
IAppsRequest,
|
||||
IAppsResponse,
|
||||
IAuthorizedAppsRequest,
|
||||
IAuthorizedAppsResponse,
|
||||
IClaimAchievementRequest,
|
||||
IChangePasswordRequest,
|
||||
IDeleteAccountRequest,
|
||||
|
@ -1341,11 +1379,16 @@ declare namespace entities {
|
|||
IReadAnnouncementRequest,
|
||||
IRegenerateTokenRequest,
|
||||
IRegistryGetAllRequest,
|
||||
IRegistryGetAllResponse,
|
||||
IRegistryGetDetailRequest,
|
||||
IRegistryGetDetailResponse,
|
||||
IRegistryGetRequest,
|
||||
IRegistryGetResponse,
|
||||
IRegistryKeysWithTypeRequest,
|
||||
IRegistryKeysWithTypeResponse,
|
||||
IRegistryKeysRequest,
|
||||
IRegistryRemoveRequest,
|
||||
IRegistryScopesWithDomainResponse,
|
||||
IRegistrySetRequest,
|
||||
IRevokeTokenRequest,
|
||||
ISigninHistoryRequest,
|
||||
|
@ -1353,11 +1396,16 @@ declare namespace entities {
|
|||
IUnpinRequest,
|
||||
IUnpinResponse,
|
||||
IUpdateEmailRequest,
|
||||
IUpdateEmailResponse,
|
||||
IUpdateRequest,
|
||||
IUpdateResponse,
|
||||
IMoveRequest,
|
||||
IMoveResponse,
|
||||
IWebhooksCreateRequest,
|
||||
IWebhooksCreateResponse,
|
||||
IWebhooksListResponse,
|
||||
IWebhooksShowRequest,
|
||||
IWebhooksShowResponse,
|
||||
IWebhooksUpdateRequest,
|
||||
IWebhooksDeleteRequest,
|
||||
InviteCreateResponse,
|
||||
|
@ -1445,6 +1493,7 @@ declare namespace entities {
|
|||
PagesUnlikeRequest,
|
||||
PagesUpdateRequest,
|
||||
FlashCreateRequest,
|
||||
FlashCreateResponse,
|
||||
FlashDeleteRequest,
|
||||
FlashFeaturedResponse,
|
||||
FlashLikeRequest,
|
||||
|
@ -1463,10 +1512,12 @@ declare namespace entities {
|
|||
RolesShowRequest,
|
||||
RolesShowResponse,
|
||||
RolesUsersRequest,
|
||||
RolesUsersResponse,
|
||||
RolesNotesRequest,
|
||||
RolesNotesResponse,
|
||||
RequestResetPasswordRequest,
|
||||
ResetPasswordRequest,
|
||||
ServerInfoResponse,
|
||||
StatsResponse,
|
||||
SwShowRegistrationRequest,
|
||||
SwShowRegistrationResponse,
|
||||
|
@ -1476,6 +1527,7 @@ declare namespace entities {
|
|||
SwRegisterResponse,
|
||||
SwUnregisterRequest,
|
||||
TestRequest,
|
||||
TestResponse,
|
||||
UsernameAvailableRequest,
|
||||
UsernameAvailableResponse,
|
||||
UsersRequest,
|
||||
|
@ -1509,6 +1561,7 @@ declare namespace entities {
|
|||
UsersListsCreateFromPublicResponse,
|
||||
UsersListsUpdateMembershipRequest,
|
||||
UsersListsGetMembershipsRequest,
|
||||
UsersListsGetMembershipsResponse,
|
||||
UsersNotesRequest,
|
||||
UsersNotesResponse,
|
||||
UsersPagesRequest,
|
||||
|
@ -1529,9 +1582,12 @@ declare namespace entities {
|
|||
UsersShowRequest,
|
||||
UsersShowResponse,
|
||||
UsersAchievementsRequest,
|
||||
UsersAchievementsResponse,
|
||||
UsersUpdateMemoRequest,
|
||||
FetchRssRequest,
|
||||
FetchRssResponse,
|
||||
FetchExternalResourcesRequest,
|
||||
FetchExternalResourcesResponse,
|
||||
RetentionResponse,
|
||||
Error_2 as Error,
|
||||
UserLite,
|
||||
|
@ -1542,6 +1598,7 @@ declare namespace entities {
|
|||
UserDetailed,
|
||||
User,
|
||||
UserList,
|
||||
Ad,
|
||||
Announcement,
|
||||
App,
|
||||
Note,
|
||||
|
@ -1606,6 +1663,9 @@ type FederationShowInstanceResponse = operations['federation/show-instance']['re
|
|||
// @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 FederationUpdateRemoteUserRequest = operations['federation/update-remote-user']['requestBody']['content']['application/json'];
|
||||
|
||||
|
@ -1618,6 +1678,9 @@ type FederationUsersResponse = operations['federation/users']['responses']['200'
|
|||
// @public (undocumented)
|
||||
type FetchExternalResourcesRequest = operations['fetch-external-resources']['requestBody']['content']['application/json'];
|
||||
|
||||
// @public (undocumented)
|
||||
type FetchExternalResourcesResponse = operations['fetch-external-resources']['responses']['200']['content']['application/json'];
|
||||
|
||||
// @public (undocumented)
|
||||
type FetchLike = (input: string, init?: {
|
||||
method?: string;
|
||||
|
@ -1635,12 +1698,18 @@ type FetchLike = (input: string, init?: {
|
|||
// @public (undocumented)
|
||||
type FetchRssRequest = operations['fetch-rss']['requestBody']['content']['application/json'];
|
||||
|
||||
// @public (undocumented)
|
||||
type FetchRssResponse = operations['fetch-rss']['responses']['200']['content']['application/json'];
|
||||
|
||||
// @public (undocumented)
|
||||
type Flash = components['schemas']['Flash'];
|
||||
|
||||
// @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 FlashDeleteRequest = operations['flash/delete']['requestBody']['content']['application/json'];
|
||||
|
||||
|
@ -1776,6 +1845,9 @@ type GalleryPostsUpdateResponse = operations['gallery/posts/update']['responses'
|
|||
// @public (undocumented)
|
||||
type GetAvatarDecorationsResponse = operations['get-avatar-decorations']['responses']['200']['content']['application/json'];
|
||||
|
||||
// @public (undocumented)
|
||||
type GetOnlineUsersCountResponse = operations['get-online-users-count']['responses']['200']['content']['application/json'];
|
||||
|
||||
// @public (undocumented)
|
||||
type Hashtag = components['schemas']['Hashtag'];
|
||||
|
||||
|
@ -1812,15 +1884,24 @@ type I2faDoneRequest = operations['i/2fa/done']['requestBody']['content']['appli
|
|||
// @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 I2faPasswordLessRequest = operations['i/2fa/password-less']['requestBody']['content']['application/json'];
|
||||
|
||||
// @public (undocumented)
|
||||
type I2faRegisterKeyRequest = operations['i/2fa/register-key']['requestBody']['content']['application/json'];
|
||||
|
||||
// @public (undocumented)
|
||||
type I2faRegisterKeyResponse = operations['i/2fa/register-key']['responses']['200']['content']['application/json'];
|
||||
|
||||
// @public (undocumented)
|
||||
type I2faRegisterRequest = operations['i/2fa/register']['requestBody']['content']['application/json'];
|
||||
|
||||
// @public (undocumented)
|
||||
type I2faRegisterResponse = operations['i/2fa/register']['responses']['200']['content']['application/json'];
|
||||
|
||||
// @public (undocumented)
|
||||
type I2faRemoveKeyRequest = operations['i/2fa/remove-key']['requestBody']['content']['application/json'];
|
||||
|
||||
|
@ -1833,9 +1914,15 @@ type I2faUpdateKeyRequest = operations['i/2fa/update-key']['requestBody']['conte
|
|||
// @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 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 IChangePasswordRequest = operations['i/change-password']['requestBody']['content']['application/json'];
|
||||
|
||||
|
@ -1887,6 +1974,9 @@ type IImportUserListsRequest = operations['i/import-user-lists']['requestBody'][
|
|||
// @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 INotificationsGroupedRequest = operations['i/notifications-grouped']['requestBody']['content']['application/json'];
|
||||
|
||||
|
@ -1944,21 +2034,36 @@ type IRegenerateTokenRequest = operations['i/regenerate-token']['requestBody']['
|
|||
// @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 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 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 IRegistryKeysRequest = operations['i/registry/keys']['requestBody']['content']['application/json'];
|
||||
|
||||
// @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 IRegistryRemoveRequest = operations['i/registry/remove']['requestBody']['content']['application/json'];
|
||||
|
||||
// @public (undocumented)
|
||||
type IRegistryScopesWithDomainResponse = operations['i/registry/scopes-with-domain']['responses']['200']['content']['application/json'];
|
||||
|
||||
// @public (undocumented)
|
||||
type IRegistrySetRequest = operations['i/registry/set']['requestBody']['content']['application/json'];
|
||||
|
||||
|
@ -1986,6 +2091,9 @@ type IUnpinResponse = operations['i/unpin']['responses']['200']['content']['appl
|
|||
// @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 IUpdateRequest = operations['i/update']['requestBody']['content']['application/json'];
|
||||
|
||||
|
@ -1995,12 +2103,21 @@ type IUpdateResponse = operations['i/update']['responses']['200']['content']['ap
|
|||
// @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 IWebhooksDeleteRequest = operations['i/webhooks/delete']['requestBody']['content']['application/json'];
|
||||
|
||||
// @public (undocumented)
|
||||
type IWebhooksListResponse = operations['i/webhooks/list']['responses']['200']['content']['application/json'];
|
||||
|
||||
// @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 IWebhooksUpdateRequest = operations['i/webhooks/update']['requestBody']['content']['application/json'];
|
||||
|
||||
|
@ -2469,6 +2586,12 @@ type RolesShowResponse = operations['roles/show']['responses']['200']['content']
|
|||
// @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 ServerInfoResponse = operations['server-info']['responses']['200']['content']['application/json'];
|
||||
|
||||
// @public (undocumented)
|
||||
type ServerStats = {
|
||||
cpu: number;
|
||||
|
@ -2565,6 +2688,9 @@ type SwUpdateRegistrationResponse = operations['sw/update-registration']['respon
|
|||
// @public (undocumented)
|
||||
type TestRequest = operations['test']['requestBody']['content']['application/json'];
|
||||
|
||||
// @public (undocumented)
|
||||
type TestResponse = operations['test']['responses']['200']['content']['application/json'];
|
||||
|
||||
// @public (undocumented)
|
||||
function toString_2(acct: Acct): string;
|
||||
|
||||
|
@ -2595,6 +2721,9 @@ type UsernameAvailableResponse = operations['username/available']['responses']['
|
|||
// @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 UsersClipsRequest = operations['users/clips']['requestBody']['content']['application/json'];
|
||||
|
||||
|
@ -2658,6 +2787,9 @@ type UsersListsFavoriteRequest = operations['users/lists/favorite']['requestBody
|
|||
// @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 UsersListsListRequest = operations['users/lists/list']['requestBody']['content']['application/json'];
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue