UNPKG

guildedapi-types.ts

Version:

Up to date Guilded API Typings. Contribution is welcome.

16 lines 1.96 kB
import type * as OpenAPI from "../../schemas/v1"; export type PUTMemberNicknameBody = OpenAPI.operations["MemberNicknameUpdate"]["requestBody"]["content"]["application/json"]; export type PUTMemberNicknameResponse = OpenAPI.operations["MemberNicknameUpdate"]["responses"]["200"]["content"]["application/json"]; export type GETGuildMemberResponse = OpenAPI.operations["ServerMemberRead"]["responses"]["200"]["content"]["application/json"]; export type GETGuildMembersResponse = OpenAPI.operations["ServerMemberReadMany"]["responses"]["200"]["content"]["application/json"]; export type GETGuildMemberPermissionResponse = OpenAPI.operations["ServerMemberPermissionsRead"]["responses"]["200"]["content"]["application/json"]; export type POSTAwardGuildMemberXPBody = OpenAPI.operations["ServerXpForUserCreate"]["requestBody"]["content"]["application/json"]; export type POSTAwardGuildMemberXPResponse = OpenAPI.operations["ServerXpForUserCreate"]["responses"]["200"]["content"]["application/json"]; export type PUTAwardGuildMemberXPBody = OpenAPI.operations["ServerXpForUserUpdate"]["requestBody"]["content"]["application/json"]; export type PUTAwardGuildMemberXPResponse = OpenAPI.operations["ServerXpForUserUpdate"]["responses"]["200"]["content"]["application/json"]; export type POSTAwardGuildRoleXPBody = OpenAPI.operations["ServerXpForRoleCreate"]["requestBody"]["content"]["application/json"]; export type POSTBulkAwardXPBody = OpenAPI.operations["ServerXpForUserCreateMany"]["requestBody"]["content"]["application/json"]; export type POSTBulkAwardXPResponse = OpenAPI.operations["ServerXpForUserCreateMany"]["responses"]["200"]["content"]["application/json"]; export type PUTBulkSetXPBody = OpenAPI.operations["ServerXpForUserUpdateMany"]["requestBody"]["content"]["application/json"]; export type PUTBulkSetXPResponse = OpenAPI.operations["ServerXpForUserUpdateMany"]["responses"]["200"]["content"]["application/json"]; //# sourceMappingURL=Members.d.ts.map