@ughuuu/gamend 1.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (349) hide show
  1. package/LICENSE +21 -0
  2. package/README.md +862 -0
  3. package/dist/ApiClient.js +703 -0
  4. package/dist/api/AchievementsApi.js +224 -0
  5. package/dist/api/AdminAchievementsApi.js +356 -0
  6. package/dist/api/AdminAnalyticsApi.js +237 -0
  7. package/dist/api/AdminChatApi.js +770 -0
  8. package/dist/api/AdminEconomyApi.js +327 -0
  9. package/dist/api/AdminGroupsApi.js +193 -0
  10. package/dist/api/AdminKVApi.js +305 -0
  11. package/dist/api/AdminLeaderboardsApi.js +490 -0
  12. package/dist/api/AdminLobbiesApi.js +190 -0
  13. package/dist/api/AdminMatchmakingApi.js +165 -0
  14. package/dist/api/AdminNotificationsApi.js +179 -0
  15. package/dist/api/AdminPushApi.js +179 -0
  16. package/dist/api/AdminQuestsApi.js +512 -0
  17. package/dist/api/AdminReadyChecksApi.js +169 -0
  18. package/dist/api/AdminRetentionApi.js +110 -0
  19. package/dist/api/AdminSessionsApi.js +165 -0
  20. package/dist/api/AdminStorageApi.js +212 -0
  21. package/dist/api/AdminTournamentsApi.js +468 -0
  22. package/dist/api/AdminUsersApi.js +130 -0
  23. package/dist/api/AuthenticationApi.js +556 -0
  24. package/dist/api/ChatApi.js +779 -0
  25. package/dist/api/ClientLogsApi.js +119 -0
  26. package/dist/api/EconomyApi.js +153 -0
  27. package/dist/api/FriendsApi.js +528 -0
  28. package/dist/api/GroupsApi.js +1105 -0
  29. package/dist/api/HealthApi.js +78 -0
  30. package/dist/api/HooksApi.js +114 -0
  31. package/dist/api/KVApi.js +95 -0
  32. package/dist/api/LeaderboardsApi.js +342 -0
  33. package/dist/api/LobbiesApi.js +495 -0
  34. package/dist/api/MatchmakingApi.js +187 -0
  35. package/dist/api/NotificationsApi.js +169 -0
  36. package/dist/api/PartiesApi.js +605 -0
  37. package/dist/api/PaymentsApi.js +377 -0
  38. package/dist/api/PushApi.js +166 -0
  39. package/dist/api/QuestsApi.js +270 -0
  40. package/dist/api/ReadyChecksApi.js +258 -0
  41. package/dist/api/SignalingApi.js +78 -0
  42. package/dist/api/StatsApi.js +78 -0
  43. package/dist/api/TimeApi.js +78 -0
  44. package/dist/api/TournamentsApi.js +394 -0
  45. package/dist/api/UsersApi.js +423 -0
  46. package/dist/gamend_proto.js +444 -0
  47. package/dist/gamend_realtime.pb.js +3145 -0
  48. package/dist/index.js +2090 -0
  49. package/dist/model/AcceptPartyInvite200Response.js +168 -0
  50. package/dist/model/AcceptPartyInvite200ResponseMembersInner.js +150 -0
  51. package/dist/model/AcceptPartyInviteRequest.js +113 -0
  52. package/dist/model/AdminCancelMatchmakingTicket200Response.js +91 -0
  53. package/dist/model/AdminCancelReadyCheck200Response.js +91 -0
  54. package/dist/model/AdminCancelReadyCheck200ResponseData.js +223 -0
  55. package/dist/model/AdminConsumeItem400Response.js +89 -0
  56. package/dist/model/AdminCreateAchievementRequest.js +182 -0
  57. package/dist/model/AdminCreateChatFilterWordRequest.js +194 -0
  58. package/dist/model/AdminCreateChatMute200Response.js +91 -0
  59. package/dist/model/AdminCreateChatMuteRequest.js +189 -0
  60. package/dist/model/AdminCreateKvEntry200Response.js +91 -0
  61. package/dist/model/AdminCreateKvEntryRequest.js +146 -0
  62. package/dist/model/AdminCreateLeaderboard200Response.js +91 -0
  63. package/dist/model/AdminCreateLeaderboard200ResponseData.js +248 -0
  64. package/dist/model/AdminCreateLeaderboardRequest.js +244 -0
  65. package/dist/model/AdminCreateNotification400Response.js +89 -0
  66. package/dist/model/AdminCreateNotificationRequest.js +165 -0
  67. package/dist/model/AdminCreateQuestRequest.js +350 -0
  68. package/dist/model/AdminCreateQuestRequestObjectivesInner.js +128 -0
  69. package/dist/model/AdminCreateQuestRequestRewardsInner.js +152 -0
  70. package/dist/model/AdminDeleteChatConversation200Response.js +91 -0
  71. package/dist/model/AdminDeleteChatConversation200ResponseData.js +85 -0
  72. package/dist/model/AdminDeleteChatFilterWordsByLang200Response.js +93 -0
  73. package/dist/model/AdminDrawTournament200Response.js +91 -0
  74. package/dist/model/AdminDrawTournament200ResponseData.js +310 -0
  75. package/dist/model/AdminEndLeaderboard200Response.js +91 -0
  76. package/dist/model/AdminEndLeaderboard200ResponseData.js +231 -0
  77. package/dist/model/AdminGetAnalyticsCounts200Response.js +143 -0
  78. package/dist/model/AdminGetAnalyticsCounts200ResponseTotalsInner.js +97 -0
  79. package/dist/model/AdminGetAnalyticsDaily200Response.js +119 -0
  80. package/dist/model/AdminGetAnalyticsDaily200ResponseSeriesInner.js +128 -0
  81. package/dist/model/AdminGetAnalyticsEconomy200Response.js +150 -0
  82. package/dist/model/AdminGetAnalyticsEconomy200ResponseFlowInner.js +133 -0
  83. package/dist/model/AdminGetAnalyticsEconomy200ResponseTotalsInner.js +133 -0
  84. package/dist/model/AdminGetAnalyticsSummary200Response.js +179 -0
  85. package/dist/model/AdminGrantAchievementRequest.js +126 -0
  86. package/dist/model/AdminGrantItemRequest.js +136 -0
  87. package/dist/model/AdminImportChatFilterWords200Response.js +93 -0
  88. package/dist/model/AdminImportChatFilterWordsRequest.js +150 -0
  89. package/dist/model/AdminIncrementAchievementRequest.js +134 -0
  90. package/dist/model/AdminListAchievements200Response.js +118 -0
  91. package/dist/model/AdminListAchievements200ResponseDataInner.js +185 -0
  92. package/dist/model/AdminListChatFilterWords200Response.js +136 -0
  93. package/dist/model/AdminListChatMessages200Response.js +124 -0
  94. package/dist/model/AdminListChatMessages200ResponseDataInner.js +213 -0
  95. package/dist/model/AdminListChatMutes200Response.js +124 -0
  96. package/dist/model/AdminListChatMutes200ResponseDataInner.js +226 -0
  97. package/dist/model/AdminListChatReports200Response.js +124 -0
  98. package/dist/model/AdminListGroups200Response.js +124 -0
  99. package/dist/model/AdminListKvEntries200Response.js +124 -0
  100. package/dist/model/AdminListKvEntries200ResponseDataInner.js +147 -0
  101. package/dist/model/AdminListLobbies200Response.js +124 -0
  102. package/dist/model/AdminListLobbies200ResponseDataInner.js +191 -0
  103. package/dist/model/AdminListMatchmakingTickets200Response.js +124 -0
  104. package/dist/model/AdminListMatchmakingTickets200ResponseDataInner.js +196 -0
  105. package/dist/model/AdminListNotifications200Response.js +124 -0
  106. package/dist/model/AdminListNotifications200ResponseDataInner.js +173 -0
  107. package/dist/model/AdminListNotifications200ResponseMeta.js +125 -0
  108. package/dist/model/AdminListPushTokens200Response.js +118 -0
  109. package/dist/model/AdminListPushTokens200ResponseDataInner.js +226 -0
  110. package/dist/model/AdminListQuestProgress200Response.js +118 -0
  111. package/dist/model/AdminListQuestProgress200ResponseDataInner.js +208 -0
  112. package/dist/model/AdminListQuests200Response.js +118 -0
  113. package/dist/model/AdminListQuests200ResponseDataInner.js +339 -0
  114. package/dist/model/AdminListReadyChecks200Response.js +124 -0
  115. package/dist/model/AdminListSessions200Response.js +124 -0
  116. package/dist/model/AdminListSessions200ResponseDataInner.js +141 -0
  117. package/dist/model/AdminListStorageObjects200Response.js +132 -0
  118. package/dist/model/AdminListStorageObjects200ResponseDataInner.js +105 -0
  119. package/dist/model/AdminListStorageObjects200ResponseUsage.js +93 -0
  120. package/dist/model/AdminMatchmakingStats200Response.js +91 -0
  121. package/dist/model/AdminMatchmakingStats200ResponseData.js +113 -0
  122. package/dist/model/AdminResetQuestRequest.js +127 -0
  123. package/dist/model/AdminResolveChatReport200Response.js +91 -0
  124. package/dist/model/AdminResolveChatReport200ResponseData.js +274 -0
  125. package/dist/model/AdminResolveChatReportRequest.js +153 -0
  126. package/dist/model/AdminResolveTournamentMatchRequest.js +90 -0
  127. package/dist/model/AdminRevokeAchievementRequest.js +126 -0
  128. package/dist/model/AdminRunRetention200Response.js +104 -0
  129. package/dist/model/AdminSendPushRequest.js +190 -0
  130. package/dist/model/AdminSetQuestIconRequest.js +112 -0
  131. package/dist/model/AdminSpendCurrencyRequest.js +160 -0
  132. package/dist/model/AdminSubmitLeaderboardScore200Response.js +91 -0
  133. package/dist/model/AdminSubmitLeaderboardScore200ResponseData.js +141 -0
  134. package/dist/model/AdminSubmitLeaderboardScoreRequest.js +142 -0
  135. package/dist/model/AdminTestChatPhrase200Response.js +91 -0
  136. package/dist/model/AdminTestChatPhrase200ResponseData.js +187 -0
  137. package/dist/model/AdminTestChatPhrase200ResponseDataHitsInner.js +113 -0
  138. package/dist/model/AdminTestChatPhraseRequest.js +112 -0
  139. package/dist/model/AdminTournamentIconUploadUrlRequest.js +112 -0
  140. package/dist/model/AdminUpdateAchievementRequest.js +145 -0
  141. package/dist/model/AdminUpdateChatFilterWord200Response.js +91 -0
  142. package/dist/model/AdminUpdateChatFilterWord200ResponseData.js +195 -0
  143. package/dist/model/AdminUpdateChatFilterWordRequest.js +166 -0
  144. package/dist/model/AdminUpdateGroup200Response.js +199 -0
  145. package/dist/model/AdminUpdateGroupRequest.js +138 -0
  146. package/dist/model/AdminUpdateKvEntryRequest.js +129 -0
  147. package/dist/model/AdminUpdateLeaderboardRecord200Response.js +91 -0
  148. package/dist/model/AdminUpdateLeaderboardRecord200ResponseData.js +165 -0
  149. package/dist/model/AdminUpdateLeaderboardRecordRequest.js +93 -0
  150. package/dist/model/AdminUpdateLeaderboardRequest.js +137 -0
  151. package/dist/model/AdminUpdateLobby200Response.js +91 -0
  152. package/dist/model/AdminUpdateLobbyRequest.js +142 -0
  153. package/dist/model/AdminUpdateTournamentRequest.js +266 -0
  154. package/dist/model/AdminUpdateUser200Response.js +91 -0
  155. package/dist/model/AdminUpdateUser200ResponseData.js +193 -0
  156. package/dist/model/AdminUpdateUserRequest.js +113 -0
  157. package/dist/model/AdminUpsertKv200Response.js +91 -0
  158. package/dist/model/AdminUpsertKv200ResponseData.js +159 -0
  159. package/dist/model/AdminUpsertKvRequest.js +154 -0
  160. package/dist/model/ApproveJoinRequest200Response.js +205 -0
  161. package/dist/model/CallHook200Response.js +88 -0
  162. package/dist/model/CallHookRequest.js +140 -0
  163. package/dist/model/CancelGroupInvite200Response.js +89 -0
  164. package/dist/model/CancelJoinRequest200Response.js +181 -0
  165. package/dist/model/CancelPartyInviteRequest.js +113 -0
  166. package/dist/model/ChatUnreadCount200Response.js +91 -0
  167. package/dist/model/ChatUnreadCount200ResponseData.js +85 -0
  168. package/dist/model/ClaimQuest200Response.js +91 -0
  169. package/dist/model/ClaimQuest200ResponseData.js +124 -0
  170. package/dist/model/ClientLogBatch.js +148 -0
  171. package/dist/model/ClientLogEntry.js +217 -0
  172. package/dist/model/ClientLogPolicy.js +193 -0
  173. package/dist/model/ClientLogResult.js +146 -0
  174. package/dist/model/ClientLogSession.js +256 -0
  175. package/dist/model/CreateCurrentUserAvatarUploadUrlRequest.js +124 -0
  176. package/dist/model/CreateFriendRequestRequest.js +113 -0
  177. package/dist/model/CreateGroupRequest.js +203 -0
  178. package/dist/model/CreateLobby401Response.js +89 -0
  179. package/dist/model/CreateLobbyRequest.js +155 -0
  180. package/dist/model/CreatePartyRequest.js +98 -0
  181. package/dist/model/DeclineGroupInvite200Response.js +89 -0
  182. package/dist/model/DeclinePartyInviteRequest.js +113 -0
  183. package/dist/model/DeleteNotifications200Response.js +91 -0
  184. package/dist/model/DeleteNotifications200ResponseData.js +86 -0
  185. package/dist/model/DeleteNotificationsRequest.js +113 -0
  186. package/dist/model/DeletePushToken200Response.js +210 -0
  187. package/dist/model/DemoteGroupMemberRequest.js +113 -0
  188. package/dist/model/DeviceLoginRequest.js +113 -0
  189. package/dist/model/ErrorResponse.js +114 -0
  190. package/dist/model/GameServerWebApiV1TournamentControllerIndex200Response.js +110 -0
  191. package/dist/model/GameServerWebApiV1TournamentControllerIndex200ResponseDataInner.js +258 -0
  192. package/dist/model/GameServerWebApiV1TournamentControllerMyMatch200Response.js +173 -0
  193. package/dist/model/GetCurrentUser200Response.js +214 -0
  194. package/dist/model/GetCurrentUser200ResponseLinkedProviders.js +126 -0
  195. package/dist/model/GetCurrentUserInventory200Response.js +87 -0
  196. package/dist/model/GetKv200Response.js +93 -0
  197. package/dist/model/GetLobby200Response.js +133 -0
  198. package/dist/model/GetMyReadyCheck200Response.js +105 -0
  199. package/dist/model/GetMyReadyCheck200ResponseLobby.js +257 -0
  200. package/dist/model/GetMyReadyCheck200ResponseParty.js +257 -0
  201. package/dist/model/GetMyRecord200Response.js +91 -0
  202. package/dist/model/GetMyRecord200ResponseData.js +151 -0
  203. package/dist/model/GetServerTime200Response.js +86 -0
  204. package/dist/model/GetStats200Response.js +91 -0
  205. package/dist/model/GetStats200ResponseData.js +151 -0
  206. package/dist/model/HealthResponse.js +129 -0
  207. package/dist/model/InviteToGroup200Response.js +90 -0
  208. package/dist/model/InviteToGroupRequest.js +113 -0
  209. package/dist/model/InviteToPartyRequest.js +113 -0
  210. package/dist/model/JoinLobby200Response.js +89 -0
  211. package/dist/model/JoinLobbyRequest.js +90 -0
  212. package/dist/model/JoinPartyByCodeRequest.js +113 -0
  213. package/dist/model/KickGroupMemberRequest.js +113 -0
  214. package/dist/model/KickPartyMemberRequest.js +113 -0
  215. package/dist/model/KickUser200Response.js +89 -0
  216. package/dist/model/KickUserRequest.js +109 -0
  217. package/dist/model/LeaveLobby200Response.js +89 -0
  218. package/dist/model/LinkDeviceRequest.js +112 -0
  219. package/dist/model/ListAuthProviders200Response.js +122 -0
  220. package/dist/model/ListBlacklistedUsers200Response.js +118 -0
  221. package/dist/model/ListBlacklistedUsers200ResponseDataInner.js +113 -0
  222. package/dist/model/ListBlockedFriends200Response.js +124 -0
  223. package/dist/model/ListBlockedFriends200ResponseDataInner.js +103 -0
  224. package/dist/model/ListBlockedFriends200ResponseDataInnerRequester.js +113 -0
  225. package/dist/model/ListChatMessages200Response.js +118 -0
  226. package/dist/model/ListChatMessages200ResponseDataInner.js +208 -0
  227. package/dist/model/ListCurrentUserLedger200Response.js +118 -0
  228. package/dist/model/ListCurrentUserLedger200ResponseDataInner.js +145 -0
  229. package/dist/model/ListFriendRequests200Response.js +105 -0
  230. package/dist/model/ListFriendRequests200ResponseData.js +139 -0
  231. package/dist/model/ListFriendRequests200ResponseDataIncomingInner.js +140 -0
  232. package/dist/model/ListFriendRequests200ResponseDataIncomingInnerRequester.js +142 -0
  233. package/dist/model/ListFriendRequests200ResponseIncomingInner.js +140 -0
  234. package/dist/model/ListFriendRequests200ResponseIncomingInnerRequester.js +142 -0
  235. package/dist/model/ListFriendRequests200ResponseMeta.js +104 -0
  236. package/dist/model/ListFriends200Response.js +124 -0
  237. package/dist/model/ListFriends200ResponseDataInner.js +164 -0
  238. package/dist/model/ListFriends200ResponseMeta.js +125 -0
  239. package/dist/model/ListGroupInvitations200Response.js +124 -0
  240. package/dist/model/ListGroupInvitations200ResponseDataInner.js +183 -0
  241. package/dist/model/ListGroupMembers200Response.js +124 -0
  242. package/dist/model/ListGroupMembers200ResponseDataInner.js +180 -0
  243. package/dist/model/ListGroupMutes200Response.js +124 -0
  244. package/dist/model/ListGroupMutes200ResponseDataInner.js +193 -0
  245. package/dist/model/ListGroupMutes200ResponseMeta.js +109 -0
  246. package/dist/model/ListJoinRequests200Response.js +124 -0
  247. package/dist/model/ListLeaderboardRecords200Response.js +124 -0
  248. package/dist/model/ListLeaderboardRecords200ResponseDataInner.js +134 -0
  249. package/dist/model/ListLeaderboardRecords200ResponseMeta.js +125 -0
  250. package/dist/model/ListLeaderboards200Response.js +124 -0
  251. package/dist/model/ListLeaderboards200ResponseDataInner.js +247 -0
  252. package/dist/model/ListLobbies200Response.js +124 -0
  253. package/dist/model/ListLobbies200ResponseDataInner.js +192 -0
  254. package/dist/model/ListLobbies200ResponseInner.js +153 -0
  255. package/dist/model/ListLobbies200ResponseMeta.js +125 -0
  256. package/dist/model/ListMyGroups200Response.js +124 -0
  257. package/dist/model/ListMyGroups200ResponseDataInner.js +243 -0
  258. package/dist/model/ListNotifications200Response.js +124 -0
  259. package/dist/model/ListNotifications200ResponseDataInner.js +186 -0
  260. package/dist/model/ListPartyInvitations200ResponseInner.js +171 -0
  261. package/dist/model/ListPushTokens200Response.js +118 -0
  262. package/dist/model/ListRecordsAroundUser200Response.js +110 -0
  263. package/dist/model/ListSentInvitations200Response.js +124 -0
  264. package/dist/model/ListSentInvitations200ResponseDataInner.js +181 -0
  265. package/dist/model/ListTournaments200Response.js +110 -0
  266. package/dist/model/ListTournaments200ResponseDataInner.js +271 -0
  267. package/dist/model/LobbyStats200Response.js +91 -0
  268. package/dist/model/LobbyStats200ResponseData.js +104 -0
  269. package/dist/model/Login200Response.js +91 -0
  270. package/dist/model/Login200ResponseData.js +150 -0
  271. package/dist/model/Login200ResponseDataUser.js +97 -0
  272. package/dist/model/LoginRequest.js +128 -0
  273. package/dist/model/MarkChatReadRequest.js +169 -0
  274. package/dist/model/MatchmakingCancel200Response.js +85 -0
  275. package/dist/model/MatchmakingJoin201Response.js +91 -0
  276. package/dist/model/MatchmakingJoin201ResponseData.js +186 -0
  277. package/dist/model/MatchmakingJoinRequest.js +101 -0
  278. package/dist/model/MatchmakingMyTicket200Response.js +91 -0
  279. package/dist/model/MatchmakingMyTicket200ResponseData.js +186 -0
  280. package/dist/model/MatchmakingStats200Response.js +91 -0
  281. package/dist/model/MatchmakingStats200ResponseData.js +118 -0
  282. package/dist/model/MatchmakingStats200ResponseDataQueuesInner.js +93 -0
  283. package/dist/model/MuteGroupMemberRequest.js +135 -0
  284. package/dist/model/MyAchievements200Response.js +124 -0
  285. package/dist/model/MyAchievements200ResponseDataInner.js +196 -0
  286. package/dist/model/OAuthSessionData.js +153 -0
  287. package/dist/model/OAuthSessionDataDetails.js +128 -0
  288. package/dist/model/OAuthSessionStatus.js +173 -0
  289. package/dist/model/OauthApiCallback200Response.js +91 -0
  290. package/dist/model/OauthApiCallbackRequest.js +90 -0
  291. package/dist/model/OauthCallbackApiAppleIosRequest.js +113 -0
  292. package/dist/model/OauthGoogleIdTokenRequest.js +113 -0
  293. package/dist/model/OauthRequest200Response.js +103 -0
  294. package/dist/model/OauthSessionStatus404Response.js +126 -0
  295. package/dist/model/OpenLobbyReadyCheck201Response.js +256 -0
  296. package/dist/model/OpenLobbyReadyCheckRequest.js +95 -0
  297. package/dist/model/PartyCreateLobbyRequest.js +139 -0
  298. package/dist/model/PartyJoinLobbyRequest.js +90 -0
  299. package/dist/model/PartyStats200Response.js +91 -0
  300. package/dist/model/PartyStats200ResponseData.js +93 -0
  301. package/dist/model/PaymentsEntitlements401Response.js +89 -0
  302. package/dist/model/PaymentsSteamCheckoutRequest.js +169 -0
  303. package/dist/model/PaymentsSteamFinalizeRequest.js +112 -0
  304. package/dist/model/PaymentsStripeCheckoutRequest.js +133 -0
  305. package/dist/model/PromoteGroupMemberRequest.js +113 -0
  306. package/dist/model/QuestStats200Response.js +91 -0
  307. package/dist/model/QuestStats200ResponseData.js +101 -0
  308. package/dist/model/QuickJoinRequest.js +108 -0
  309. package/dist/model/RefreshToken200Response.js +91 -0
  310. package/dist/model/RefreshToken200ResponseData.js +151 -0
  311. package/dist/model/RefreshTokenRequest.js +113 -0
  312. package/dist/model/RegisterPushTokenRequest.js +199 -0
  313. package/dist/model/RemoveFriendship401Response.js +89 -0
  314. package/dist/model/ReportChatMessageRequest.js +90 -0
  315. package/dist/model/ResolveLeaderboardSlugs200Response.js +89 -0
  316. package/dist/model/ResolveLeaderboardSlugs200ResponseDataValue.js +264 -0
  317. package/dist/model/ResolveLeaderboardSlugsRequest.js +113 -0
  318. package/dist/model/RespondReadyCheckRequest.js +140 -0
  319. package/dist/model/SearchUsers200Response.js +124 -0
  320. package/dist/model/SearchUsers200ResponseDataInner.js +168 -0
  321. package/dist/model/SendChatMessageRequest.js +180 -0
  322. package/dist/model/SendNotificationRequest.js +163 -0
  323. package/dist/model/SetLobbyStateRequest.js +126 -0
  324. package/dist/model/ShowParty200Response.js +160 -0
  325. package/dist/model/ShowParty200ResponseMembersInner.js +137 -0
  326. package/dist/model/SignalingStats200Response.js +91 -0
  327. package/dist/model/SignalingStats200ResponseData.js +101 -0
  328. package/dist/model/TournamentMyMatch200Response.js +173 -0
  329. package/dist/model/UnmuteLobbyMemberRequest.js +113 -0
  330. package/dist/model/UpdateChatMessageRequest.js +99 -0
  331. package/dist/model/UpdateCurrentUserDisplayName400Response.js +97 -0
  332. package/dist/model/UpdateCurrentUserDisplayNameRequest.js +112 -0
  333. package/dist/model/UpdateCurrentUserPassword400Response.js +97 -0
  334. package/dist/model/UpdateCurrentUserPasswordRequest.js +125 -0
  335. package/dist/model/UpdateCurrentUserUsernameRequest.js +112 -0
  336. package/dist/model/UpdateGroupRequest.js +173 -0
  337. package/dist/model/UpdateLobbyRequest.js +161 -0
  338. package/dist/model/UpdatePartyRequest.js +95 -0
  339. package/dist/model/UserQuests200Response.js +124 -0
  340. package/dist/model/UserQuests200ResponseDataInner.js +401 -0
  341. package/dist/model/UserQuests200ResponseDataInnerObjectivesInner.js +108 -0
  342. package/dist/model/UserQuests200ResponseDataInnerProgress.js +159 -0
  343. package/dist/model/UserQuests200ResponseDataInnerRewardsInner.js +130 -0
  344. package/dist/model/UserQuests200ResponseMeta.js +125 -0
  345. package/dist/model/UserStats200Response.js +91 -0
  346. package/dist/model/UserStats200ResponseData.js +117 -0
  347. package/dist/realtime.js +370 -0
  348. package/dist/webrtc.js +541 -0
  349. package/package.json +51 -0
package/README.md ADDED
@@ -0,0 +1,862 @@
1
+ # @ughuuu/gamend
2
+
3
+ UghuuuGamend - JavaScript client for @ughuuu/gamend
4
+ API for Gamend. Provides HTTP REST API, real-time WebSocket channels, and WebRTC DataChannels for low-latency game data. Features authentication, users, lobbies, groups, parties, friends, chat, notifications, quests, leaderboards, tournaments, matchmaking, payments, server scripting, and admin portal.
5
+
6
+ ## **1. Authentication**
7
+
8
+ This API uses JWT (JSON Web Tokens) with access and refresh tokens:
9
+
10
+ ### **1.1 Getting Tokens**
11
+ - **Email/Password**: POST to `/api/v1/login` with email and password
12
+ - **Device (SDK)**: POST to `/api/v1/login` with a `device_id` string (creates/returns a device user)
13
+ - **Discord OAuth**: Use `/api/v1/auth/discord` flow
14
+ - **Google OAuth**: Use `/api/v1/auth/google` flow
15
+ - **Facebook OAuth**: Use `/api/v1/auth/facebook` flow
16
+ - **Apple Sign In**: Use `/auth/apple` browser flow or apple sdk flow
17
+ - **Steam (OpenID)**: Use `/api/v1/auth/steam` flow
18
+
19
+ Both methods return:
20
+ - `access_token` - Short-lived (15 min), use for API requests
21
+ - `refresh_token` - Long-lived (30 days), use to get new access tokens
22
+
23
+ ### **1.2 Using Tokens**
24
+ Include the access token in the Authorization header:
25
+ ```
26
+ Authorization: Bearer <access_token>
27
+ ```
28
+
29
+ ### **1.3 Refreshing Tokens**
30
+ When your access token expires, use POST `/api/v1/refresh` with your refresh token to get a new access token.
31
+
32
+ ## **2. Users**
33
+ Users endpoints cover the user lifecycle and profile features. Key highlights:
34
+
35
+ - **Registration and login** (email/password, device token for SDKs, and OAuth providers)
36
+ - **Profile metadata** (JSON blob per user) and editable profile fields
37
+ - **Account lifecycle**: password reset, email confirmation, and account deletion
38
+ - **Sessions & tokens**: both browser sessions and JWT-based API tokens are supported
39
+
40
+ ## **3. Friends**
41
+ The Friends domain offers lightweight social features:
42
+
43
+ - **Friend requests** (send / accept / reject / block flows)
44
+ - **Friend listing & pagination**, with basic privacy controls
45
+ - **Domain helpers** to manage and query friend relationships from API or UI contexts
46
+
47
+ ## **4. Lobbies**
48
+ Lobbies provide matchmaking / room management primitives. Highlights:
49
+
50
+ - **Create / list / update / delete** lobbies with rich metadata (mode, region, tags)
51
+ - **Host-managed or hostless** modes (hostless allowed internally, not creatable via public API)
52
+ - **Membership management**: join, leave, kick users, and automatic host transfer
53
+ - **Controls & protection**: max users, hidden/locked states, and optional password protection
54
+ - **Hidden lobbies** are excluded from public listings; public listing endpoints are paginated
55
+
56
+ ## **5. Notifications**
57
+ Persistent user-to-user notifications that survive across sessions:
58
+
59
+ - **Send notifications** to accepted friends with a title, optional content, and optional metadata
60
+ - **List own notifications** with pagination (ordered oldest-first)
61
+ - **Delete notifications** by ID (single or batch)
62
+ - **Real-time delivery** via the user WebSocket channel (`\"notification\"` events)
63
+ - **Offline delivery**: undeleted notifications are replayed on WebSocket reconnect
64
+ - **Push delivery**: notifications also fan out to the recipient's registered mobile devices (see Push notifications)
65
+
66
+ ## **5b. Push notifications**
67
+ Mobile/web push delivery to registered devices (FCM for Android/Web, APNs-direct for iOS):
68
+
69
+ - **Register device tokens** via `POST /me/push_tokens` (`token`, `platform`, optional `provider`/`device_id`); re-registering a `device_id` rotates its token in place
70
+ - **List/remove own devices** via `GET /me/push_tokens` and `DELETE /me/push_tokens/:id`
71
+ - **Server-authoritative sending** — no public send endpoint; pushes originate from server hooks (`Gamend.Push.send_to_user/2`) or the admin API
72
+ - **Per-token routing**: each token's `provider` (\"fcm\" | \"apns\") selects the delivery backend; unconfigured backends log instead of sending (dev-friendly)
73
+ - **Reliability**: delivery rides the durable job queue with retries; dead tokens reported by the provider are disabled automatically
74
+
75
+ ## **6. Groups**
76
+ Groups provide persistent community management for players:
77
+
78
+ - **Three group types**: `public` (anyone joins directly), `private` (users request to join, admins approve), `hidden` (invite-only, never listed)
79
+ - **Membership roles**: `admin` and `member`, with promote/demote capabilities
80
+ - **Join requests**: for private groups, users submit requests that admins approve or reject
81
+ - **Invitations**: admins can invite users directly (blocked users are rejected)
82
+ - **CRUD operations**: create, update, delete groups with metadata support
83
+ - **Group chat**: integrated via the Chat API with `chat_type: \"group\"`
84
+
85
+ ## **7. Parties**
86
+ Ephemeral groups of users for short-lived sessions (e.g., matchmaking squads):
87
+
88
+ - **Invite-only joining**: the party leader sends invites by user ID to friends or shared-group members
89
+ - **Invite flow**: `POST /parties/invite` → recipient accepts via `POST /parties/invite/accept` or declines via `POST /parties/invite/decline`; leader can cancel via `POST /parties/invite/cancel`
90
+ - **Invite visibility**: leader can list sent invites (`GET /parties/invitations/sent`); recipient can list received invites (`GET /parties/invitations`)
91
+ - **Connection requirement**: invites can only be sent to users who are friends or share at least one group with the leader
92
+ - **One party at a time**: a user can only be in one party; accepting an invite while already in a party is rejected
93
+ - **Leader management**: the creator is the leader; leadership can be transferred
94
+ - **Lobby integration**: parties can create or join lobbies as a group
95
+ - **Party chat**: integrated via the Chat API with `chat_type: \"party\"`
96
+ - **Real-time events** via the party WebSocket channel
97
+
98
+ ## **8. Chat**
99
+ Real-time messaging across multiple conversation types:
100
+
101
+ - **Chat types**: `lobby` (within a lobby), `group` (within a group), `party` (within a party), `friend` (DMs between friends)
102
+ - **Send messages** with content, optional metadata, and automatic access validation
103
+ - **List messages** with pagination (newest first)
104
+ - **Read tracking**: mark messages as read and get unread counts per conversation
105
+ - **Real-time delivery** via PubSub and WebSocket channels
106
+ - **Moderation is built in**: an admin-managed word filter (`block` / `mask` / `flag`, matched on a normalized form so leetspeak and padding do not slip through) and mutes are enforced before a message is stored or broadcast; the `before_chat_message` pipeline hook stays available for rules of your own
107
+ - **Report a message**: `POST /chat/messages/:id/report` with an optional `reason` — one report per player per message, capped per day; reports the filter files itself have no reporter
108
+ - **Scoped mutes** mirror kick: `POST /lobbies/mute` + `/lobbies/unmute` (lobby host), `POST /groups/:id/mute` + `/groups/:id/unmute` (group admin), `POST /parties/mute` + `/parties/unmute` (party leader), each with a paginated `.../mutes` listing for the same authority. Body is `{target_user_id, expires_at?, reason?}`; omitting `expires_at` mutes permanently
109
+ - **Global mutes and the blocklist are server-authoritative** — no public endpoint; admin API (`/api/v1/admin/chat`) or a plugin calling `Gamend.Chat.mute_user/4`
110
+ - **Real-time moderation events**: the muted player receives `chat_muted` / `chat_unmuted` on their user channel
111
+
112
+ ## **9. Leaderboards**
113
+ Server-managed ranked scoreboards:
114
+
115
+ - **Multiple leaderboards**: create named leaderboards with configurable sort order
116
+ - **Score submission**: submit scores with optional metadata
117
+ - **Rankings**: retrieve paginated rankings with user details
118
+ - **Reset support**: leaderboards can be reset periodically
119
+
120
+ ## **10. Key-Value Storage**
121
+ Per-user persistent key-value storage for game state, preferences, and settings:
122
+
123
+ - **Get/set/delete** key-value pairs scoped to the authenticated user
124
+ - **List keys** with optional prefix filtering
125
+ - **Metadata support**: values can include arbitrary JSON metadata
126
+
127
+ ## **11. Quests / Progression**
128
+ One event-driven progression engine covering achievements, daily/weekly quests, time-boxed event quests, chains, and groups:
129
+
130
+ - **Kinds**: `achievement` (permanent one-shot — the replacement for the old achievements system), `daily`/`weekly` (reset per UTC period), `event` (starts_at/ends_at window), `chain` (requires a prerequisite quest)
131
+ - **Objectives**: each quest lists objectives `{event, target, params}`; server-side `report_event` advances every matching active quest — there is **no public endpoint to advance progress** (server-authoritative)
132
+ - **Rewards**: currencies (Economy) and items (Inventory), paid **exactly once** per period via idempotent grants; `auto_claim` quests pay on completion, others via `POST /me/quests/:key/claim`
133
+ - **My quests**: `GET /me/quests` returns active quests, per-period progress, and a claimable flag; hidden quests appear once completed
134
+ - **Groups**: quests sharing a `group_key` collapse to one entry carrying `group_size`; `?group=<key>` lists that group's members in full
135
+ - **Catalog**: `GET /quests` and per-user completions `GET /quests/user/:user_id` (gated by `LIST_QUESTS_ENABLED`)
136
+ - **Admin management**: definitions CRUD plus per-user grant/reset/force-claim under `/api/v1/admin/quests`
137
+
138
+ ## **12. Tournaments**
139
+ Single-elimination bracket tournaments, server-structured and game-judged:
140
+
141
+ - **Registration window → seeded draw → timed rounds → champions**; recurring tournaments (cron) create one occurrence per cycle sharing a slug; a nil starts_at keeps registration open until an admin draws manually
142
+ - **Join/leave** as an entry leader (`POST`/`DELETE /tournaments/:id/join`); team composition is game policy
143
+ - **Browse**: list/filter tournaments, standings, full bracket view, and the caller's current match (`GET /tournaments/:id/my_match`)
144
+ - **Match verdicts are server-side** (game hooks) — no public resolve endpoint; clients get `tournament_match_ready` / `tournament_match_resolved` / `tournament_updated` / `tournament_finished` on the user channel
145
+ - **Admin management** over HTTP: create/update/delete, cancel, draw now, finish, and force match verdicts under `/api/v1/admin/tournaments`
146
+
147
+ ## **13. Matchmaking**
148
+ Ticket-based queueing that turns waiting players into hidden, locked lobbies:
149
+
150
+ - **Join over HTTP** (`POST /matchmaking/tickets` with a `match_params` string map); only tickets with identical params match together — encode mode/map/skill band as parameter values
151
+ - **A match forms** when a group reaches `max_players`, or has at least `min_players` and the oldest ticket outwaited the timeout; the server creates a hidden lobby, seats everyone and locks it
152
+ - **The result is a push, not a poll**: matched players receive `match_found` (`lobby_id`, `match_params`) on their user channel; disconnecting cancels your tickets
153
+ - **Inspect**: `GET /matchmaking/tickets/me` for your ticket, `GET /matchmaking/stats` for queue depths
154
+ - **Admin management** over HTTP: list/filter tickets, force-cancel, and stats under `/api/v1/admin/matchmaking`
155
+
156
+ ## **14. Ready checks**
157
+ One primitive for \"everyone must answer before this proceeds\", with one client-facing surface:
158
+
159
+ - **A player holds at most one check per lane** — the match lane (lobby ready-up or matchmaking accept) and the party lane (the party's standing board) — so answering needs no id: `GET /me/ready_check` returns `{\"lobby\": …, \"party\": …}` (each null when none) and `POST /me/ready_check` with `{\"ready\": true|false, \"scope\": \"lobby\"|\"party\"}` answers one (scope defaults to `lobby`)
160
+ - **Two kinds.** `ready` (lobby/party board) is a toggle — a \"no\" just leaves the check open, and it lists every participant. `accept` (match confirmation) is final — one decline fails it for everyone — and returns counts plus your own state, so a pending match does not reveal who you were paired with
161
+ - **Hosts open one** with `POST /lobbies/ready_check` (host-managed lobbies only; hostless matchmaking lobbies belong to the server), **party leaders** with `POST /parties/ready_check`; either call is a **reset** — it quietly replaces an already-open board with a fresh one over the current members, so the same endpoint serves \"ready check!\", \"force ready\" (with `timeout_ms`) and \"start over\". Call it off with `DELETE /lobbies/ready_check` / `DELETE /parties/ready_check`. The opener is pre-marked ready — clicking the button is their answer
162
+ - **Failure does nothing on its own**: a declined or timed-out check kicks nobody, starts nothing, and moves no lobby state. It reports who did not answer, and the game (or the host, with the kick they already have) decides
163
+ - **Live**: `ready_check_started` / `ready_check_updated` / `ready_check_passed` / `ready_check_failed` on the lobby channel, the party channel for a party board, or the user channel for an accept check
164
+ - **Admin management** over HTTP: list/filter checks, force-cancel, and 24h outcome stats under `/api/v1/admin/ready_checks`
165
+
166
+ ## **15. Real-time: WebSocket Channels**
167
+ The server provides real-time communication via Phoenix WebSocket channels. Connect to the WebSocket endpoint and join topic-based channels for live updates.
168
+
169
+ ### **15.1 Connection**
170
+ Connect to `wss://your-server.com/socket` with your JWT token as a parameter:
171
+ ```
172
+ const socket = new Socket(\"wss://your-server.com/socket\", { params: { token: \"<access_token>\" } })
173
+ socket.connect()
174
+ ```
175
+
176
+ ### **15.2 Available Channels**
177
+ - **User channel** (`user:<user_id>`): notifications, friend events, quest progress/completions/claims, party/group invites, tournament events, chat mutes (`chat_muted` / `chat_unmuted`), KV subscriptions
178
+ - **Lobby channel** (`lobby:<lobby_id>`): lobby member joins/leaves, lobby updates, lobby chat
179
+ - **Lobbies channel** (`lobbies`): global lobby list changes (created, updated, deleted)
180
+ - **Group channel** (`group:<group_id>`): group member changes, group updates, group chat
181
+ - **Groups channel** (`groups`): global group list changes
182
+ - **Party channel** (`party:<party_id>`): party member changes, party updates, party chat
183
+
184
+ ### **15.3 JS SDK Helper**
185
+ The `GameRealtime` class (included in this SDK) wraps Phoenix.Socket with convenient channel helpers:
186
+ ```javascript
187
+ import { GameRealtime } from '@ughuuu/gamend'
188
+ const realtime = new GameRealtime('https://your-server.com', accessToken)
189
+ const userChannel = realtime.joinUserChannel(userId)
190
+ userChannel.on('notification', payload => console.log(payload))
191
+ ```
192
+ Requires the `phoenix` npm package as a peer dependency: `npm install phoenix`
193
+
194
+ ## **16. Real-time: WebRTC DataChannels**
195
+ For low-latency game data, the server supports WebRTC DataChannels alongside WebSocket. The server acts as a WebRTC peer (not P2P between clients).
196
+
197
+ ### **16.1 How It Works**
198
+ 1. Client connects via WebSocket and joins the **User channel**
199
+ 2. Client sends an SDP offer over the channel (`webrtc:offer` event)
200
+ 3. Server responds with an SDP answer (`webrtc:answer` event)
201
+ 4. ICE candidates are exchanged (`webrtc:ice` events)
202
+ 5. Once connected, named DataChannels carry game data at low latency
203
+
204
+ ### **16.2 Default DataChannels**
205
+ - **`events`** (reliable, ordered): important game events (player actions, state changes)
206
+ - **`state`** (unreliable, unordered): high-frequency position/state sync
207
+
208
+ ### **16.3 JS SDK Helper**
209
+ The `GameWebRTC` class (included in this SDK, browser-only) handles signaling automatically:
210
+ ```javascript
211
+ import { GameRealtime, GameWebRTC } from '@ughuuu/gamend'
212
+ const realtime = new GameRealtime('https://your-server.com', token)
213
+ const userChannel = realtime.joinUserChannel(userId)
214
+ const webrtc = new GameWebRTC(userChannel, {
215
+ onData: (label, data) => console.log(label, data)
216
+ })
217
+ await webrtc.connect()
218
+ webrtc.send('events', JSON.stringify({ type: 'move', x: 10, y: 20 }))
219
+ ```
220
+
221
+ This SDK is automatically generated by the [OpenAPI Generator](https://openapi-generator.tech) project:
222
+
223
+ - API version: 1.0.0
224
+ - Package version: 1.0.0
225
+ - Generator version: 7.17.0
226
+ - Build package: org.openapitools.codegen.languages.JavascriptClientCodegen
227
+
228
+ ## Installation
229
+
230
+ ### For [Node.js](https://nodejs.org/)
231
+
232
+ #### npm
233
+
234
+ To publish the library as a [npm](https://www.npmjs.com/), please follow the procedure in ["Publishing npm packages"](https://docs.npmjs.com/getting-started/publishing-npm-packages).
235
+
236
+ Then install it via:
237
+
238
+ ```shell
239
+ npm install @ughuuu/gamend --save
240
+ ```
241
+
242
+ Finally, you need to build the module:
243
+
244
+ ```shell
245
+ npm run build
246
+ ```
247
+
248
+ ##### Local development
249
+
250
+ To use the library locally without publishing to a remote npm registry, first install the dependencies by changing into the directory containing `package.json` (and this README). Let's call this `JAVASCRIPT_CLIENT_DIR`. Then run:
251
+
252
+ ```shell
253
+ npm install
254
+ ```
255
+
256
+ Next, [link](https://docs.npmjs.com/cli/link) it globally in npm with the following, also from `JAVASCRIPT_CLIENT_DIR`:
257
+
258
+ ```shell
259
+ npm link
260
+ ```
261
+
262
+ To use the link you just defined in your project, switch to the directory you want to use your @ughuuu/gamend from, and run:
263
+
264
+ ```shell
265
+ npm link /path/to/<JAVASCRIPT_CLIENT_DIR>
266
+ ```
267
+
268
+ Finally, you need to build the module:
269
+
270
+ ```shell
271
+ npm run build
272
+ ```
273
+
274
+ #### git
275
+
276
+ If the library is hosted at a git repository, e.g.https://github.com/GIT_USER_ID/GIT_REPO_ID
277
+ then install it via:
278
+
279
+ ```shell
280
+ npm install GIT_USER_ID/GIT_REPO_ID --save
281
+ ```
282
+
283
+ ### For browser
284
+
285
+ The library also works in the browser environment via npm and [browserify](http://browserify.org/). After following
286
+ the above steps with Node.js and installing browserify with `npm install -g browserify`,
287
+ perform the following (assuming *main.js* is your entry file):
288
+
289
+ ```shell
290
+ browserify main.js > bundle.js
291
+ ```
292
+
293
+ Then include *bundle.js* in the HTML pages.
294
+
295
+ ### Webpack Configuration
296
+
297
+ Using Webpack you may encounter the following error: "Module not found: Error:
298
+ Cannot resolve module", most certainly you should disable AMD loader. Add/merge
299
+ the following section to your webpack config:
300
+
301
+ ```javascript
302
+ module: {
303
+ rules: [
304
+ {
305
+ parser: {
306
+ amd: false
307
+ }
308
+ }
309
+ ]
310
+ }
311
+ ```
312
+
313
+ ## Getting Started
314
+
315
+ Please follow the [installation](#installation) instruction and execute the following JS code:
316
+
317
+ ```javascript
318
+ var UghuuuGamend = require('@ughuuu/gamend');
319
+
320
+ var defaultClient = UghuuuGamend.ApiClient.instance;
321
+ // Configure Bearer (JWT) access token for authorization: authorization
322
+ var authorization = defaultClient.authentications['authorization'];
323
+ authorization.accessToken = "YOUR ACCESS TOKEN"
324
+
325
+ var api = new UghuuuGamend.AdminAnalyticsApi()
326
+ var opts = {
327
+ 'key': "'*'", // {String}
328
+ 'days': 7 // {Number}
329
+ };
330
+ api.adminGetAnalyticsCounts(opts).then(function(data) {
331
+ console.log('API called successfully. Returned data: ' + data);
332
+ }, function(error) {
333
+ console.error(error);
334
+ });
335
+
336
+
337
+ ```
338
+
339
+ ## Documentation for API Endpoints
340
+
341
+ All URIs are relative to *http://localhost:4000*
342
+
343
+ Class | Method | HTTP request | Description
344
+ ------------ | ------------- | ------------- | -------------
345
+ *UghuuuGamend.AdminAnalyticsApi* | [**adminGetAnalyticsCounts**](docs/AdminAnalyticsApi.md#adminGetAnalyticsCounts) | **GET** /api/v1/admin/analytics/counts | Daily counters by key or prefix (admin)
346
+ *UghuuuGamend.AdminAnalyticsApi* | [**adminGetAnalyticsDaily**](docs/AdminAnalyticsApi.md#adminGetAnalyticsDaily) | **GET** /api/v1/admin/analytics/daily | Per-day active / new users and cohort retention (admin)
347
+ *UghuuuGamend.AdminAnalyticsApi* | [**adminGetAnalyticsEconomy**](docs/AdminAnalyticsApi.md#adminGetAnalyticsEconomy) | **GET** /api/v1/admin/analytics/economy | Currency granted / spent per day per ledger reason (admin)
348
+ *UghuuuGamend.AdminAnalyticsApi* | [**adminGetAnalyticsSnapshot**](docs/AdminAnalyticsApi.md#adminGetAnalyticsSnapshot) | **GET** /api/v1/admin/analytics/snapshot | Live counters: players, lobbies, parties, quests, matchmaking, tournaments (admin)
349
+ *UghuuuGamend.AdminAnalyticsApi* | [**adminGetAnalyticsSummary**](docs/AdminAnalyticsApi.md#adminGetAnalyticsSummary) | **GET** /api/v1/admin/analytics | DAU / WAU / MAU, D1 / D7 / D30 and payer conversion (admin)
350
+ *UghuuuGamend.AdminChatApi* | [**adminCreateChatFilterWord**](docs/AdminChatApi.md#adminCreateChatFilterWord) | **POST** /api/v1/admin/chat/filter_words | Add a blocklist word (admin)
351
+ *UghuuuGamend.AdminChatApi* | [**adminCreateChatMute**](docs/AdminChatApi.md#adminCreateChatMute) | **POST** /api/v1/admin/chat/mutes | Mute a player (admin)
352
+ *UghuuuGamend.AdminChatApi* | [**adminDeleteChatConversation**](docs/AdminChatApi.md#adminDeleteChatConversation) | **DELETE** /api/v1/admin/chat/conversation | Delete all messages in a conversation (admin)
353
+ *UghuuuGamend.AdminChatApi* | [**adminDeleteChatFilterWord**](docs/AdminChatApi.md#adminDeleteChatFilterWord) | **DELETE** /api/v1/admin/chat/filter_words/{id} | Remove a blocklist word (admin)
354
+ *UghuuuGamend.AdminChatApi* | [**adminDeleteChatFilterWordsByLang**](docs/AdminChatApi.md#adminDeleteChatFilterWordsByLang) | **DELETE** /api/v1/admin/chat/filter_words | Remove an imported word list (admin)
355
+ *UghuuuGamend.AdminChatApi* | [**adminDeleteChatMessage**](docs/AdminChatApi.md#adminDeleteChatMessage) | **DELETE** /api/v1/admin/chat/{id} | Delete a chat message (admin)
356
+ *UghuuuGamend.AdminChatApi* | [**adminDeleteChatMute**](docs/AdminChatApi.md#adminDeleteChatMute) | **DELETE** /api/v1/admin/chat/mutes/{id} | Lift a mute (admin)
357
+ *UghuuuGamend.AdminChatApi* | [**adminDeleteChatReport**](docs/AdminChatApi.md#adminDeleteChatReport) | **DELETE** /api/v1/admin/chat/reports/{id} | Delete a chat report (admin)
358
+ *UghuuuGamend.AdminChatApi* | [**adminImportChatFilterWords**](docs/AdminChatApi.md#adminImportChatFilterWords) | **POST** /api/v1/admin/chat/filter_words/import | Import a bundled word list (admin)
359
+ *UghuuuGamend.AdminChatApi* | [**adminListChatFilterWords**](docs/AdminChatApi.md#adminListChatFilterWords) | **GET** /api/v1/admin/chat/filter_words | List blocklist words (admin)
360
+ *UghuuuGamend.AdminChatApi* | [**adminListChatMessages**](docs/AdminChatApi.md#adminListChatMessages) | **GET** /api/v1/admin/chat | List all chat messages (admin)
361
+ *UghuuuGamend.AdminChatApi* | [**adminListChatMutes**](docs/AdminChatApi.md#adminListChatMutes) | **GET** /api/v1/admin/chat/mutes | List chat mutes (admin)
362
+ *UghuuuGamend.AdminChatApi* | [**adminListChatReports**](docs/AdminChatApi.md#adminListChatReports) | **GET** /api/v1/admin/chat/reports | List chat reports (admin)
363
+ *UghuuuGamend.AdminChatApi* | [**adminResolveChatReport**](docs/AdminChatApi.md#adminResolveChatReport) | **POST** /api/v1/admin/chat/reports/{id}/resolve | Resolve a chat report (admin)
364
+ *UghuuuGamend.AdminChatApi* | [**adminTestChatPhrase**](docs/AdminChatApi.md#adminTestChatPhrase) | **POST** /api/v1/admin/chat/filter_words/test | Test a phrase against the filter (admin)
365
+ *UghuuuGamend.AdminChatApi* | [**adminUpdateChatFilterWord**](docs/AdminChatApi.md#adminUpdateChatFilterWord) | **PATCH** /api/v1/admin/chat/filter_words/{id} | Update a blocklist word (admin)
366
+ *UghuuuGamend.AdminEconomyApi* | [**adminConsumeItem**](docs/AdminEconomyApi.md#adminConsumeItem) | **POST** /api/v1/admin/economy/consume_item | Consume items from a user (admin)
367
+ *UghuuuGamend.AdminEconomyApi* | [**adminGrantCurrency**](docs/AdminEconomyApi.md#adminGrantCurrency) | **POST** /api/v1/admin/economy/grant | Grant currency to a user (admin)
368
+ *UghuuuGamend.AdminEconomyApi* | [**adminGrantItem**](docs/AdminEconomyApi.md#adminGrantItem) | **POST** /api/v1/admin/economy/grant_item | Grant items to a user (admin)
369
+ *UghuuuGamend.AdminEconomyApi* | [**adminListInventory**](docs/AdminEconomyApi.md#adminListInventory) | **GET** /api/v1/admin/economy/items | List inventory item stacks (admin)
370
+ *UghuuuGamend.AdminEconomyApi* | [**adminListLedger**](docs/AdminEconomyApi.md#adminListLedger) | **GET** /api/v1/admin/economy/ledger | List ledger entries (admin)
371
+ *UghuuuGamend.AdminEconomyApi* | [**adminListWallets**](docs/AdminEconomyApi.md#adminListWallets) | **GET** /api/v1/admin/economy/wallets | List wallets (admin)
372
+ *UghuuuGamend.AdminEconomyApi* | [**adminSpendCurrency**](docs/AdminEconomyApi.md#adminSpendCurrency) | **POST** /api/v1/admin/economy/spend | Spend currency from a user (admin)
373
+ *UghuuuGamend.AdminGroupsApi* | [**adminDeleteGroup**](docs/AdminGroupsApi.md#adminDeleteGroup) | **DELETE** /api/v1/admin/groups/{id} | Delete a group (admin)
374
+ *UghuuuGamend.AdminGroupsApi* | [**adminListGroups**](docs/AdminGroupsApi.md#adminListGroups) | **GET** /api/v1/admin/groups | List all groups (admin)
375
+ *UghuuuGamend.AdminGroupsApi* | [**adminUpdateGroup**](docs/AdminGroupsApi.md#adminUpdateGroup) | **PATCH** /api/v1/admin/groups/{id} | Update a group (admin)
376
+ *UghuuuGamend.AdminKVApi* | [**adminCreateKvEntry**](docs/AdminKVApi.md#adminCreateKvEntry) | **POST** /api/v1/admin/kv/entries | Create KV entry (admin)
377
+ *UghuuuGamend.AdminKVApi* | [**adminDeleteKv**](docs/AdminKVApi.md#adminDeleteKv) | **DELETE** /api/v1/admin/kv | Delete KV by key (admin)
378
+ *UghuuuGamend.AdminKVApi* | [**adminDeleteKvEntry**](docs/AdminKVApi.md#adminDeleteKvEntry) | **DELETE** /api/v1/admin/kv/entries/{id} | Delete KV entry by id (admin)
379
+ *UghuuuGamend.AdminKVApi* | [**adminListKvEntries**](docs/AdminKVApi.md#adminListKvEntries) | **GET** /api/v1/admin/kv/entries | List KV entries (admin)
380
+ *UghuuuGamend.AdminKVApi* | [**adminUpdateKvEntry**](docs/AdminKVApi.md#adminUpdateKvEntry) | **PATCH** /api/v1/admin/kv/entries/{id} | Update KV entry by id (admin)
381
+ *UghuuuGamend.AdminKVApi* | [**adminUpsertKv**](docs/AdminKVApi.md#adminUpsertKv) | **PUT** /api/v1/admin/kv | Upsert KV by key (admin)
382
+ *UghuuuGamend.AdminLeaderboardsApi* | [**adminCreateLeaderboard**](docs/AdminLeaderboardsApi.md#adminCreateLeaderboard) | **POST** /api/v1/admin/leaderboards | Create leaderboard (admin)
383
+ *UghuuuGamend.AdminLeaderboardsApi* | [**adminDeleteLeaderboard**](docs/AdminLeaderboardsApi.md#adminDeleteLeaderboard) | **DELETE** /api/v1/admin/leaderboards/{id} | Delete leaderboard (admin)
384
+ *UghuuuGamend.AdminLeaderboardsApi* | [**adminDeleteLeaderboardRecord**](docs/AdminLeaderboardsApi.md#adminDeleteLeaderboardRecord) | **DELETE** /api/v1/admin/leaderboards/{id}/records/{record_id} | Delete leaderboard record (admin)
385
+ *UghuuuGamend.AdminLeaderboardsApi* | [**adminDeleteLeaderboardUserRecord**](docs/AdminLeaderboardsApi.md#adminDeleteLeaderboardUserRecord) | **DELETE** /api/v1/admin/leaderboards/{id}/records/user/{user_id} | Delete a user&#39;s record (admin)
386
+ *UghuuuGamend.AdminLeaderboardsApi* | [**adminEndLeaderboard**](docs/AdminLeaderboardsApi.md#adminEndLeaderboard) | **POST** /api/v1/admin/leaderboards/{id}/end | End leaderboard (admin)
387
+ *UghuuuGamend.AdminLeaderboardsApi* | [**adminLeaderboardIconUploadUrl**](docs/AdminLeaderboardsApi.md#adminLeaderboardIconUploadUrl) | **POST** /api/v1/admin/leaderboards/{id}/icon/upload_url | Request an upload ticket for a leaderboard icon (admin)
388
+ *UghuuuGamend.AdminLeaderboardsApi* | [**adminSetLeaderboardIcon**](docs/AdminLeaderboardsApi.md#adminSetLeaderboardIcon) | **POST** /api/v1/admin/leaderboards/{id}/icon | Confirm an uploaded leaderboard icon (admin)
389
+ *UghuuuGamend.AdminLeaderboardsApi* | [**adminSubmitLeaderboardScore**](docs/AdminLeaderboardsApi.md#adminSubmitLeaderboardScore) | **POST** /api/v1/admin/leaderboards/{id}/records | Submit score (admin)
390
+ *UghuuuGamend.AdminLeaderboardsApi* | [**adminUpdateLeaderboard**](docs/AdminLeaderboardsApi.md#adminUpdateLeaderboard) | **PATCH** /api/v1/admin/leaderboards/{id} | Update leaderboard (admin)
391
+ *UghuuuGamend.AdminLeaderboardsApi* | [**adminUpdateLeaderboardRecord**](docs/AdminLeaderboardsApi.md#adminUpdateLeaderboardRecord) | **PATCH** /api/v1/admin/leaderboards/{id}/records/{record_id} | Update leaderboard record (admin)
392
+ *UghuuuGamend.AdminLobbiesApi* | [**adminDeleteLobby**](docs/AdminLobbiesApi.md#adminDeleteLobby) | **DELETE** /api/v1/admin/lobbies/{id} | Delete lobby by id (admin)
393
+ *UghuuuGamend.AdminLobbiesApi* | [**adminListLobbies**](docs/AdminLobbiesApi.md#adminListLobbies) | **GET** /api/v1/admin/lobbies | List all lobbies (admin)
394
+ *UghuuuGamend.AdminLobbiesApi* | [**adminUpdateLobby**](docs/AdminLobbiesApi.md#adminUpdateLobby) | **PATCH** /api/v1/admin/lobbies/{id} | Update lobby by id (admin)
395
+ *UghuuuGamend.AdminMatchmakingApi* | [**adminCancelMatchmakingTicket**](docs/AdminMatchmakingApi.md#adminCancelMatchmakingTicket) | **DELETE** /api/v1/admin/matchmaking/tickets/{id} | Cancel a matchmaking ticket (admin)
396
+ *UghuuuGamend.AdminMatchmakingApi* | [**adminListMatchmakingTickets**](docs/AdminMatchmakingApi.md#adminListMatchmakingTickets) | **GET** /api/v1/admin/matchmaking/tickets | List matchmaking tickets (admin)
397
+ *UghuuuGamend.AdminMatchmakingApi* | [**adminMatchmakingStats**](docs/AdminMatchmakingApi.md#adminMatchmakingStats) | **GET** /api/v1/admin/matchmaking/stats | Matchmaking statistics (admin)
398
+ *UghuuuGamend.AdminNotificationsApi* | [**adminCreateNotification**](docs/AdminNotificationsApi.md#adminCreateNotification) | **POST** /api/v1/admin/notifications | Create a notification (admin)
399
+ *UghuuuGamend.AdminNotificationsApi* | [**adminDeleteNotification**](docs/AdminNotificationsApi.md#adminDeleteNotification) | **DELETE** /api/v1/admin/notifications/{id} | Delete a notification (admin)
400
+ *UghuuuGamend.AdminNotificationsApi* | [**adminListNotifications**](docs/AdminNotificationsApi.md#adminListNotifications) | **GET** /api/v1/admin/notifications | List all notifications (admin)
401
+ *UghuuuGamend.AdminPushApi* | [**adminDeletePushToken**](docs/AdminPushApi.md#adminDeletePushToken) | **DELETE** /api/v1/admin/push/tokens/{id} | Delete a device push token (admin)
402
+ *UghuuuGamend.AdminPushApi* | [**adminListPushTokens**](docs/AdminPushApi.md#adminListPushTokens) | **GET** /api/v1/admin/push/tokens | List registered device push tokens (admin)
403
+ *UghuuuGamend.AdminPushApi* | [**adminSendPush**](docs/AdminPushApi.md#adminSendPush) | **POST** /api/v1/admin/push/send | Send a push notification to a user (admin)
404
+ *UghuuuGamend.AdminQuestsApi* | [**adminClaimQuest**](docs/AdminQuestsApi.md#adminClaimQuest) | **POST** /api/v1/admin/quests/claim | Claim a completed quest on a user&#39;s behalf (admin)
405
+ *UghuuuGamend.AdminQuestsApi* | [**adminCreateQuest**](docs/AdminQuestsApi.md#adminCreateQuest) | **POST** /api/v1/admin/quests | Create quest (admin)
406
+ *UghuuuGamend.AdminQuestsApi* | [**adminDeleteQuest**](docs/AdminQuestsApi.md#adminDeleteQuest) | **DELETE** /api/v1/admin/quests/{id} | Delete quest and all user progress (admin)
407
+ *UghuuuGamend.AdminQuestsApi* | [**adminGrantQuest**](docs/AdminQuestsApi.md#adminGrantQuest) | **POST** /api/v1/admin/quests/grant | Force-complete a quest for a user (admin)
408
+ *UghuuuGamend.AdminQuestsApi* | [**adminListQuestProgress**](docs/AdminQuestsApi.md#adminListQuestProgress) | **GET** /api/v1/admin/quests/progress | List quest progress rows (admin)
409
+ *UghuuuGamend.AdminQuestsApi* | [**adminListQuests**](docs/AdminQuestsApi.md#adminListQuests) | **GET** /api/v1/admin/quests | List all quest definitions (admin, includes inactive/hidden)
410
+ *UghuuuGamend.AdminQuestsApi* | [**adminQuestFunnel**](docs/AdminQuestsApi.md#adminQuestFunnel) | **GET** /api/v1/admin/quests/{key}/funnel | Per-status progress counts for one quest (admin)
411
+ *UghuuuGamend.AdminQuestsApi* | [**adminQuestIconUploadUrl**](docs/AdminQuestsApi.md#adminQuestIconUploadUrl) | **POST** /api/v1/admin/quests/{id}/icon/upload_url | Request an upload ticket for a quest icon (admin)
412
+ *UghuuuGamend.AdminQuestsApi* | [**adminResetQuest**](docs/AdminQuestsApi.md#adminResetQuest) | **POST** /api/v1/admin/quests/reset | Reset a user&#39;s current-period quest progress (admin)
413
+ *UghuuuGamend.AdminQuestsApi* | [**adminSetQuestIcon**](docs/AdminQuestsApi.md#adminSetQuestIcon) | **POST** /api/v1/admin/quests/{id}/icon | Confirm an uploaded quest icon (admin)
414
+ *UghuuuGamend.AdminQuestsApi* | [**adminUpdateQuest**](docs/AdminQuestsApi.md#adminUpdateQuest) | **PATCH** /api/v1/admin/quests/{id} | Update quest (admin)
415
+ *UghuuuGamend.AdminReadyChecksApi* | [**adminCancelReadyCheck**](docs/AdminReadyChecksApi.md#adminCancelReadyCheck) | **DELETE** /api/v1/admin/ready_checks/{id} | Force-cancel a pending ready check (admin)
416
+ *UghuuuGamend.AdminReadyChecksApi* | [**adminListReadyChecks**](docs/AdminReadyChecksApi.md#adminListReadyChecks) | **GET** /api/v1/admin/ready_checks | List ready checks (admin)
417
+ *UghuuuGamend.AdminReadyChecksApi* | [**adminReadyCheckStats**](docs/AdminReadyChecksApi.md#adminReadyCheckStats) | **GET** /api/v1/admin/ready_checks/stats | Ready check outcomes over the last 24 hours (admin)
418
+ *UghuuuGamend.AdminRetentionApi* | [**adminGetRetentionStatus**](docs/AdminRetentionApi.md#adminGetRetentionStatus) | **GET** /api/v1/admin/retention | Last retention sweep (admin)
419
+ *UghuuuGamend.AdminRetentionApi* | [**adminRunRetention**](docs/AdminRetentionApi.md#adminRunRetention) | **POST** /api/v1/admin/retention/run | Run a retention sweep now (admin)
420
+ *UghuuuGamend.AdminSessionsApi* | [**adminDeleteSession**](docs/AdminSessionsApi.md#adminDeleteSession) | **DELETE** /api/v1/admin/sessions/{id} | Delete session token by id (admin)
421
+ *UghuuuGamend.AdminSessionsApi* | [**adminDeleteUserSessions**](docs/AdminSessionsApi.md#adminDeleteUserSessions) | **DELETE** /api/v1/admin/users/{id}/sessions | Delete all session tokens for a user (admin)
422
+ *UghuuuGamend.AdminSessionsApi* | [**adminListSessions**](docs/AdminSessionsApi.md#adminListSessions) | **GET** /api/v1/admin/sessions | List sessions (admin)
423
+ *UghuuuGamend.AdminStorageApi* | [**adminDeleteStorageObject**](docs/AdminStorageApi.md#adminDeleteStorageObject) | **DELETE** /api/v1/admin/storage | Delete a stored object (admin)
424
+ *UghuuuGamend.AdminStorageApi* | [**adminDownloadStorageObject**](docs/AdminStorageApi.md#adminDownloadStorageObject) | **GET** /api/v1/admin/storage/object | Download an object by key (admin)
425
+ *UghuuuGamend.AdminStorageApi* | [**adminListStorageObjects**](docs/AdminStorageApi.md#adminListStorageObjects) | **GET** /api/v1/admin/storage | List stored objects with usage (admin)
426
+ *UghuuuGamend.AdminStorageApi* | [**adminUploadStorageObject**](docs/AdminStorageApi.md#adminUploadStorageObject) | **PUT** /api/v1/admin/storage/object | Upload or overwrite an object at any key (admin)
427
+ *UghuuuGamend.AdminTournamentsApi* | [**adminCancelTournament**](docs/AdminTournamentsApi.md#adminCancelTournament) | **POST** /api/v1/admin/tournaments/{id}/cancel | Cancel tournament (admin; terminal, no recurrence spawn)
428
+ *UghuuuGamend.AdminTournamentsApi* | [**adminCreateTournament**](docs/AdminTournamentsApi.md#adminCreateTournament) | **POST** /api/v1/admin/tournaments | Create tournament (admin)
429
+ *UghuuuGamend.AdminTournamentsApi* | [**adminDeleteTournament**](docs/AdminTournamentsApi.md#adminDeleteTournament) | **DELETE** /api/v1/admin/tournaments/{id} | Delete tournament and all its entries/matches (admin)
430
+ *UghuuuGamend.AdminTournamentsApi* | [**adminDrawTournament**](docs/AdminTournamentsApi.md#adminDrawTournament) | **POST** /api/v1/admin/tournaments/{id}/draw | Draw the bracket now (admin; pulls starts_at to now)
431
+ *UghuuuGamend.AdminTournamentsApi* | [**adminFinishTournament**](docs/AdminTournamentsApi.md#adminFinishTournament) | **POST** /api/v1/admin/tournaments/{id}/finish | Finish tournament now (admin; pulls ends_at to now)
432
+ *UghuuuGamend.AdminTournamentsApi* | [**adminReopenTournament**](docs/AdminTournamentsApi.md#adminReopenTournament) | **POST** /api/v1/admin/tournaments/{id}/reopen | Reopen a cancelled tournament (admin)
433
+ *UghuuuGamend.AdminTournamentsApi* | [**adminResolveTournamentMatch**](docs/AdminTournamentsApi.md#adminResolveTournamentMatch) | **POST** /api/v1/admin/tournaments/{id}/matches/{match_id}/resolve | Force a match verdict (admin)
434
+ *UghuuuGamend.AdminTournamentsApi* | [**adminSetTournamentIcon**](docs/AdminTournamentsApi.md#adminSetTournamentIcon) | **POST** /api/v1/admin/tournaments/{id}/icon | Confirm an uploaded tournament icon (admin)
435
+ *UghuuuGamend.AdminTournamentsApi* | [**adminTournamentIconUploadUrl**](docs/AdminTournamentsApi.md#adminTournamentIconUploadUrl) | **POST** /api/v1/admin/tournaments/{id}/icon/upload_url | Request an upload ticket for a tournament icon (admin)
436
+ *UghuuuGamend.AdminTournamentsApi* | [**adminUpdateTournament**](docs/AdminTournamentsApi.md#adminUpdateTournament) | **PATCH** /api/v1/admin/tournaments/{id} | Update tournament (admin)
437
+ *UghuuuGamend.AdminUsersApi* | [**adminDeleteUser**](docs/AdminUsersApi.md#adminDeleteUser) | **DELETE** /api/v1/admin/users/{id} | Delete user (admin)
438
+ *UghuuuGamend.AdminUsersApi* | [**adminUpdateUser**](docs/AdminUsersApi.md#adminUpdateUser) | **PATCH** /api/v1/admin/users/{id} | Update user (admin)
439
+ *UghuuuGamend.AuthenticationApi* | [**deviceLogin**](docs/AuthenticationApi.md#deviceLogin) | **POST** /api/v1/login/device | Device login
440
+ *UghuuuGamend.AuthenticationApi* | [**linkDevice**](docs/AuthenticationApi.md#linkDevice) | **POST** /api/v1/me/device | Link device ID
441
+ *UghuuuGamend.AuthenticationApi* | [**listAuthProviders**](docs/AuthenticationApi.md#listAuthProviders) | **GET** /api/v1/auth/providers | List sign-in providers
442
+ *UghuuuGamend.AuthenticationApi* | [**login**](docs/AuthenticationApi.md#login) | **POST** /api/v1/login | Login
443
+ *UghuuuGamend.AuthenticationApi* | [**logout**](docs/AuthenticationApi.md#logout) | **DELETE** /api/v1/logout | Logout
444
+ *UghuuuGamend.AuthenticationApi* | [**oauthApiCallback**](docs/AuthenticationApi.md#oauthApiCallback) | **POST** /api/v1/auth/{provider}/callback | API callback / code exchange
445
+ *UghuuuGamend.AuthenticationApi* | [**oauthCallbackApiAppleIos**](docs/AuthenticationApi.md#oauthCallbackApiAppleIos) | **POST** /api/v1/auth/apple/ios/callback | Apple callback (native iOS)
446
+ *UghuuuGamend.AuthenticationApi* | [**oauthGoogleIdToken**](docs/AuthenticationApi.md#oauthGoogleIdToken) | **POST** /api/v1/auth/google/id_token | Google ID token login (native/mobile)
447
+ *UghuuuGamend.AuthenticationApi* | [**oauthRequest**](docs/AuthenticationApi.md#oauthRequest) | **GET** /api/v1/auth/{provider} | Initiate API OAuth
448
+ *UghuuuGamend.AuthenticationApi* | [**oauthSessionStatus**](docs/AuthenticationApi.md#oauthSessionStatus) | **GET** /api/v1/auth/session/{session_id} | Get OAuth session status
449
+ *UghuuuGamend.AuthenticationApi* | [**refreshToken**](docs/AuthenticationApi.md#refreshToken) | **POST** /api/v1/refresh | Refresh access token
450
+ *UghuuuGamend.AuthenticationApi* | [**unlinkDevice**](docs/AuthenticationApi.md#unlinkDevice) | **DELETE** /api/v1/me/device | Unlink device ID
451
+ *UghuuuGamend.AuthenticationApi* | [**unlinkProvider**](docs/AuthenticationApi.md#unlinkProvider) | **DELETE** /api/v1/me/providers/{provider} | Unlink OAuth provider
452
+ *UghuuuGamend.ChatApi* | [**chatUnreadCount**](docs/ChatApi.md#chatUnreadCount) | **GET** /api/v1/chat/unread | Get unread message count
453
+ *UghuuuGamend.ChatApi* | [**deleteChatMessage**](docs/ChatApi.md#deleteChatMessage) | **DELETE** /api/v1/chat/messages/{id} | Delete your own chat message
454
+ *UghuuuGamend.ChatApi* | [**getChatMessage**](docs/ChatApi.md#getChatMessage) | **GET** /api/v1/chat/messages/{id} | Get a single chat message
455
+ *UghuuuGamend.ChatApi* | [**listChatMessages**](docs/ChatApi.md#listChatMessages) | **GET** /api/v1/chat/messages | List chat messages
456
+ *UghuuuGamend.ChatApi* | [**listGroupMutes**](docs/ChatApi.md#listGroupMutes) | **GET** /api/v1/groups/{id}/mutes | List active mutes in a group
457
+ *UghuuuGamend.ChatApi* | [**listLobbyMutes**](docs/ChatApi.md#listLobbyMutes) | **GET** /api/v1/lobbies/mutes | List active mutes in your lobby
458
+ *UghuuuGamend.ChatApi* | [**listPartyMutes**](docs/ChatApi.md#listPartyMutes) | **GET** /api/v1/parties/mutes | List active mutes in your party
459
+ *UghuuuGamend.ChatApi* | [**markChatRead**](docs/ChatApi.md#markChatRead) | **POST** /api/v1/chat/read | Mark chat as read
460
+ *UghuuuGamend.ChatApi* | [**muteGroupMember**](docs/ChatApi.md#muteGroupMember) | **POST** /api/v1/groups/{id}/mute | Mute a player in a group
461
+ *UghuuuGamend.ChatApi* | [**muteLobbyMember**](docs/ChatApi.md#muteLobbyMember) | **POST** /api/v1/lobbies/mute | Mute a player in your lobby
462
+ *UghuuuGamend.ChatApi* | [**mutePartyMember**](docs/ChatApi.md#mutePartyMember) | **POST** /api/v1/parties/mute | Mute a player in your party
463
+ *UghuuuGamend.ChatApi* | [**reportChatMessage**](docs/ChatApi.md#reportChatMessage) | **POST** /api/v1/chat/messages/{id}/report | Report a chat message
464
+ *UghuuuGamend.ChatApi* | [**sendChatMessage**](docs/ChatApi.md#sendChatMessage) | **POST** /api/v1/chat/messages | Send a chat message
465
+ *UghuuuGamend.ChatApi* | [**unmuteGroupMember**](docs/ChatApi.md#unmuteGroupMember) | **POST** /api/v1/groups/{id}/unmute | Lift a mute in a group
466
+ *UghuuuGamend.ChatApi* | [**unmuteLobbyMember**](docs/ChatApi.md#unmuteLobbyMember) | **POST** /api/v1/lobbies/unmute | Lift a mute in your lobby
467
+ *UghuuuGamend.ChatApi* | [**unmutePartyMember**](docs/ChatApi.md#unmutePartyMember) | **POST** /api/v1/parties/unmute | Lift a mute in your party
468
+ *UghuuuGamend.ChatApi* | [**updateChatMessage**](docs/ChatApi.md#updateChatMessage) | **PATCH** /api/v1/chat/messages/{id} | Update your own chat message
469
+ *UghuuuGamend.ClientLogsApi* | [**getClientLogPolicy**](docs/ClientLogsApi.md#getClientLogPolicy) | **GET** /api/v1/client_logs/policy | Client log capture policy
470
+ *UghuuuGamend.ClientLogsApi* | [**uploadClientLogs**](docs/ClientLogsApi.md#uploadClientLogs) | **POST** /api/v1/client_logs | Upload a batch of client log entries
471
+ *UghuuuGamend.EconomyApi* | [**getCurrentUserInventory**](docs/EconomyApi.md#getCurrentUserInventory) | **GET** /api/v1/me/inventory | Current user&#39;s item quantities
472
+ *UghuuuGamend.EconomyApi* | [**getCurrentUserWallet**](docs/EconomyApi.md#getCurrentUserWallet) | **GET** /api/v1/me/wallet | Current user&#39;s currency balances
473
+ *UghuuuGamend.EconomyApi* | [**listCurrentUserLedger**](docs/EconomyApi.md#listCurrentUserLedger) | **GET** /api/v1/me/wallet/ledger | Current user&#39;s ledger history
474
+ *UghuuuGamend.FriendsApi* | [**acceptFriendRequest**](docs/FriendsApi.md#acceptFriendRequest) | **POST** /api/v1/friends/{id}/accept | Accept a friend request
475
+ *UghuuuGamend.FriendsApi* | [**blockFriendRequest**](docs/FriendsApi.md#blockFriendRequest) | **POST** /api/v1/friends/{id}/block | Block a friend request / user
476
+ *UghuuuGamend.FriendsApi* | [**blockUser**](docs/FriendsApi.md#blockUser) | **POST** /api/v1/users/{user_id}/block | Blacklist a user, with or without an existing friendship
477
+ *UghuuuGamend.FriendsApi* | [**createFriendRequest**](docs/FriendsApi.md#createFriendRequest) | **POST** /api/v1/friends | Send a friend request
478
+ *UghuuuGamend.FriendsApi* | [**listBlacklistedUsers**](docs/FriendsApi.md#listBlacklistedUsers) | **GET** /api/v1/me/blacklist | List the users you&#39;ve blocked
479
+ *UghuuuGamend.FriendsApi* | [**listBlockedFriends**](docs/FriendsApi.md#listBlockedFriends) | **GET** /api/v1/me/blocked | List users you&#39;ve blocked
480
+ *UghuuuGamend.FriendsApi* | [**listFriendRequests**](docs/FriendsApi.md#listFriendRequests) | **GET** /api/v1/me/friend_requests | List pending friend requests (incoming and outgoing)
481
+ *UghuuuGamend.FriendsApi* | [**listFriends**](docs/FriendsApi.md#listFriends) | **GET** /api/v1/me/friends | List current user&#39;s friends (returns a paginated set of user objects)
482
+ *UghuuuGamend.FriendsApi* | [**rejectFriendRequest**](docs/FriendsApi.md#rejectFriendRequest) | **POST** /api/v1/friends/{id}/reject | Reject a friend request
483
+ *UghuuuGamend.FriendsApi* | [**removeFriendship**](docs/FriendsApi.md#removeFriendship) | **DELETE** /api/v1/friends/{id} | Remove/cancel a friendship or request
484
+ *UghuuuGamend.FriendsApi* | [**unblockFriend**](docs/FriendsApi.md#unblockFriend) | **POST** /api/v1/friends/{id}/unblock | Unblock a previously-blocked friendship
485
+ *UghuuuGamend.FriendsApi* | [**unblockUser**](docs/FriendsApi.md#unblockUser) | **POST** /api/v1/users/{user_id}/unblock | Remove a user from your blacklist
486
+ *UghuuuGamend.GroupsApi* | [**acceptGroupInvite**](docs/GroupsApi.md#acceptGroupInvite) | **POST** /api/v1/groups/invitations/{invite_id}/accept | Accept a group invitation
487
+ *UghuuuGamend.GroupsApi* | [**approveJoinRequest**](docs/GroupsApi.md#approveJoinRequest) | **POST** /api/v1/groups/{id}/join_requests/{request_id}/approve | Approve a join request (admin only)
488
+ *UghuuuGamend.GroupsApi* | [**cancelGroupInvite**](docs/GroupsApi.md#cancelGroupInvite) | **DELETE** /api/v1/groups/sent_invitations/{invite_id} | Cancel a sent group invitation
489
+ *UghuuuGamend.GroupsApi* | [**cancelJoinRequest**](docs/GroupsApi.md#cancelJoinRequest) | **DELETE** /api/v1/groups/{id}/join_requests/{request_id} | Cancel your own pending join request
490
+ *UghuuuGamend.GroupsApi* | [**createGroup**](docs/GroupsApi.md#createGroup) | **POST** /api/v1/groups | Create a group
491
+ *UghuuuGamend.GroupsApi* | [**createGroupIconUploadUrl**](docs/GroupsApi.md#createGroupIconUploadUrl) | **POST** /api/v1/groups/{id}/icon/upload_url | Request a group icon upload ticket (admin only)
492
+ *UghuuuGamend.GroupsApi* | [**declineGroupInvite**](docs/GroupsApi.md#declineGroupInvite) | **POST** /api/v1/groups/invitations/{invite_id}/decline | Decline a group invitation
493
+ *UghuuuGamend.GroupsApi* | [**demoteGroupMember**](docs/GroupsApi.md#demoteGroupMember) | **POST** /api/v1/groups/{id}/demote | Demote admin to member
494
+ *UghuuuGamend.GroupsApi* | [**getGroup**](docs/GroupsApi.md#getGroup) | **GET** /api/v1/groups/{id} | Get group details
495
+ *UghuuuGamend.GroupsApi* | [**inviteToGroup**](docs/GroupsApi.md#inviteToGroup) | **POST** /api/v1/groups/{id}/invite | Invite a user to a group (admin only)
496
+ *UghuuuGamend.GroupsApi* | [**joinGroup**](docs/GroupsApi.md#joinGroup) | **POST** /api/v1/groups/{id}/join | Join a group
497
+ *UghuuuGamend.GroupsApi* | [**kickGroupMember**](docs/GroupsApi.md#kickGroupMember) | **POST** /api/v1/groups/{id}/kick | Kick a member (admin only)
498
+ *UghuuuGamend.GroupsApi* | [**leaveGroup**](docs/GroupsApi.md#leaveGroup) | **POST** /api/v1/groups/{id}/leave | Leave a group
499
+ *UghuuuGamend.GroupsApi* | [**listGroupInvitations**](docs/GroupsApi.md#listGroupInvitations) | **GET** /api/v1/groups/invitations | List my group invitations
500
+ *UghuuuGamend.GroupsApi* | [**listGroupMembers**](docs/GroupsApi.md#listGroupMembers) | **GET** /api/v1/groups/{id}/members | List group members
501
+ *UghuuuGamend.GroupsApi* | [**listGroups**](docs/GroupsApi.md#listGroups) | **GET** /api/v1/groups | List groups
502
+ *UghuuuGamend.GroupsApi* | [**listJoinRequests**](docs/GroupsApi.md#listJoinRequests) | **GET** /api/v1/groups/{id}/join_requests | List pending join requests (admin only)
503
+ *UghuuuGamend.GroupsApi* | [**listMyGroups**](docs/GroupsApi.md#listMyGroups) | **GET** /api/v1/groups/me | List groups I belong to
504
+ *UghuuuGamend.GroupsApi* | [**listSentInvitations**](docs/GroupsApi.md#listSentInvitations) | **GET** /api/v1/groups/sent_invitations | List group invitations I have sent
505
+ *UghuuuGamend.GroupsApi* | [**promoteGroupMember**](docs/GroupsApi.md#promoteGroupMember) | **POST** /api/v1/groups/{id}/promote | Promote member to admin
506
+ *UghuuuGamend.GroupsApi* | [**rejectJoinRequest**](docs/GroupsApi.md#rejectJoinRequest) | **POST** /api/v1/groups/{id}/join_requests/{request_id}/reject | Reject a join request (admin only)
507
+ *UghuuuGamend.GroupsApi* | [**setGroupIcon**](docs/GroupsApi.md#setGroupIcon) | **POST** /api/v1/groups/{id}/icon | Confirm an uploaded group icon (admin only)
508
+ *UghuuuGamend.GroupsApi* | [**updateGroup**](docs/GroupsApi.md#updateGroup) | **PATCH** /api/v1/groups/{id} | Update a group (admin only)
509
+ *UghuuuGamend.HealthApi* | [**index**](docs/HealthApi.md#index) | **GET** /api/v1/health | Health check
510
+ *UghuuuGamend.HooksApi* | [**callHook**](docs/HooksApi.md#callHook) | **POST** /api/v1/hooks/call | Invoke a hook function
511
+ *UghuuuGamend.HooksApi* | [**listHooks**](docs/HooksApi.md#listHooks) | **GET** /api/v1/hooks | List available hook functions
512
+ *UghuuuGamend.KVApi* | [**getKv**](docs/KVApi.md#getKv) | **GET** /api/v1/kv/{key} | Get a key/value entry
513
+ *UghuuuGamend.LeaderboardsApi* | [**getLeaderboard**](docs/LeaderboardsApi.md#getLeaderboard) | **GET** /api/v1/leaderboards/{id} | Get a leaderboard by ID
514
+ *UghuuuGamend.LeaderboardsApi* | [**getMyRecord**](docs/LeaderboardsApi.md#getMyRecord) | **GET** /api/v1/leaderboards/{id}/records/me | Get current user&#39;s record
515
+ *UghuuuGamend.LeaderboardsApi* | [**listLeaderboardRecords**](docs/LeaderboardsApi.md#listLeaderboardRecords) | **GET** /api/v1/leaderboards/{id}/records | List leaderboard records
516
+ *UghuuuGamend.LeaderboardsApi* | [**listLeaderboards**](docs/LeaderboardsApi.md#listLeaderboards) | **GET** /api/v1/leaderboards | List leaderboards
517
+ *UghuuuGamend.LeaderboardsApi* | [**listRecordsAroundUser**](docs/LeaderboardsApi.md#listRecordsAroundUser) | **GET** /api/v1/leaderboards/{id}/records/around/{user_id} | List records around a user
518
+ *UghuuuGamend.LeaderboardsApi* | [**resolveLeaderboardSlugs**](docs/LeaderboardsApi.md#resolveLeaderboardSlugs) | **POST** /api/v1/leaderboards/resolve | Resolve multiple slugs to active leaderboards
519
+ *UghuuuGamend.LobbiesApi* | [**createLobby**](docs/LobbiesApi.md#createLobby) | **POST** /api/v1/lobbies | Create a lobby
520
+ *UghuuuGamend.LobbiesApi* | [**disbandLobby**](docs/LobbiesApi.md#disbandLobby) | **POST** /api/v1/lobbies/disband | Disband the current lobby (host only)
521
+ *UghuuuGamend.LobbiesApi* | [**getLobby**](docs/LobbiesApi.md#getLobby) | **GET** /api/v1/lobbies/{id} | Get a single lobby
522
+ *UghuuuGamend.LobbiesApi* | [**joinLobby**](docs/LobbiesApi.md#joinLobby) | **POST** /api/v1/lobbies/{id}/join | Join a lobby
523
+ *UghuuuGamend.LobbiesApi* | [**kickUser**](docs/LobbiesApi.md#kickUser) | **POST** /api/v1/lobbies/kick | Kick a user from the lobby (host only)
524
+ *UghuuuGamend.LobbiesApi* | [**leaveLobby**](docs/LobbiesApi.md#leaveLobby) | **POST** /api/v1/lobbies/leave | Leave the current lobby
525
+ *UghuuuGamend.LobbiesApi* | [**listLobbies**](docs/LobbiesApi.md#listLobbies) | **GET** /api/v1/lobbies | List lobbies
526
+ *UghuuuGamend.LobbiesApi* | [**lobbyStats**](docs/LobbiesApi.md#lobbyStats) | **GET** /api/v1/lobbies/stats | Lobby counts
527
+ *UghuuuGamend.LobbiesApi* | [**quickJoin**](docs/LobbiesApi.md#quickJoin) | **POST** /api/v1/lobbies/quick_join | Quick-join or create a lobby
528
+ *UghuuuGamend.LobbiesApi* | [**setLobbyState**](docs/LobbiesApi.md#setLobbyState) | **POST** /api/v1/lobbies/state | Set lobby state (host or pinned WebRTC host)
529
+ *UghuuuGamend.LobbiesApi* | [**updateLobby**](docs/LobbiesApi.md#updateLobby) | **PATCH** /api/v1/lobbies | Update lobby (host or pinned WebRTC host)
530
+ *UghuuuGamend.MatchmakingApi* | [**matchmakingCancel**](docs/MatchmakingApi.md#matchmakingCancel) | **DELETE** /api/v1/matchmaking/tickets | Leave the matchmaking queue
531
+ *UghuuuGamend.MatchmakingApi* | [**matchmakingJoin**](docs/MatchmakingApi.md#matchmakingJoin) | **POST** /api/v1/matchmaking/tickets | Join the matchmaking queue
532
+ *UghuuuGamend.MatchmakingApi* | [**matchmakingMyTicket**](docs/MatchmakingApi.md#matchmakingMyTicket) | **GET** /api/v1/matchmaking/tickets/me | Get my current ticket
533
+ *UghuuuGamend.MatchmakingApi* | [**matchmakingStats**](docs/MatchmakingApi.md#matchmakingStats) | **GET** /api/v1/matchmaking/stats | Queue statistics
534
+ *UghuuuGamend.NotificationsApi* | [**deleteNotifications**](docs/NotificationsApi.md#deleteNotifications) | **DELETE** /api/v1/notifications | Delete notifications by IDs
535
+ *UghuuuGamend.NotificationsApi* | [**listNotifications**](docs/NotificationsApi.md#listNotifications) | **GET** /api/v1/notifications | List own notifications
536
+ *UghuuuGamend.NotificationsApi* | [**sendNotification**](docs/NotificationsApi.md#sendNotification) | **POST** /api/v1/notifications | Send a notification to a friend
537
+ *UghuuuGamend.PartiesApi* | [**acceptPartyInvite**](docs/PartiesApi.md#acceptPartyInvite) | **POST** /api/v1/parties/invite/accept | Accept a party invite
538
+ *UghuuuGamend.PartiesApi* | [**cancelPartyInvite**](docs/PartiesApi.md#cancelPartyInvite) | **POST** /api/v1/parties/invite/cancel | Cancel a pending party invite (leader only)
539
+ *UghuuuGamend.PartiesApi* | [**createParty**](docs/PartiesApi.md#createParty) | **POST** /api/v1/parties | Create a party
540
+ *UghuuuGamend.PartiesApi* | [**declinePartyInvite**](docs/PartiesApi.md#declinePartyInvite) | **POST** /api/v1/parties/invite/decline | Decline a party invite
541
+ *UghuuuGamend.PartiesApi* | [**disbandParty**](docs/PartiesApi.md#disbandParty) | **POST** /api/v1/parties/disband | Disband the current party (leader only)
542
+ *UghuuuGamend.PartiesApi* | [**inviteToParty**](docs/PartiesApi.md#inviteToParty) | **POST** /api/v1/parties/invite | Invite a user to the party (leader only)
543
+ *UghuuuGamend.PartiesApi* | [**kickPartyMember**](docs/PartiesApi.md#kickPartyMember) | **POST** /api/v1/parties/kick | Kick a member from the party (leader only)
544
+ *UghuuuGamend.PartiesApi* | [**leaveParty**](docs/PartiesApi.md#leaveParty) | **POST** /api/v1/parties/leave | Leave the current party
545
+ *UghuuuGamend.PartiesApi* | [**listPartyInvitations**](docs/PartiesApi.md#listPartyInvitations) | **GET** /api/v1/parties/invitations | List pending party invites for the current user
546
+ *UghuuuGamend.PartiesApi* | [**listSentPartyInvitations**](docs/PartiesApi.md#listSentPartyInvitations) | **GET** /api/v1/parties/invitations/sent | List pending party invites sent by the current leader
547
+ *UghuuuGamend.PartiesApi* | [**partyCreateLobby**](docs/PartiesApi.md#partyCreateLobby) | **POST** /api/v1/parties/create_lobby | Create a lobby with the party (leader only)
548
+ *UghuuuGamend.PartiesApi* | [**partyJoinLobby**](docs/PartiesApi.md#partyJoinLobby) | **POST** /api/v1/parties/join_lobby/{id} | Join a lobby with the party (leader only)
549
+ *UghuuuGamend.PartiesApi* | [**partyStats**](docs/PartiesApi.md#partyStats) | **GET** /api/v1/parties/stats | Party counts
550
+ *UghuuuGamend.PartiesApi* | [**showParty**](docs/PartiesApi.md#showParty) | **GET** /api/v1/parties/me | Get current party
551
+ *UghuuuGamend.PartiesApi* | [**updateParty**](docs/PartiesApi.md#updateParty) | **PATCH** /api/v1/parties | Update party settings (leader only)
552
+ *UghuuuGamend.PaymentsApi* | [**paymentsAppleWebhook**](docs/PaymentsApi.md#paymentsAppleWebhook) | **POST** /api/v1/payments/webhooks/apple | Receive App Store Server Notification v2 events
553
+ *UghuuuGamend.PaymentsApi* | [**paymentsCatalog**](docs/PaymentsApi.md#paymentsCatalog) | **GET** /api/v1/payments/catalog | List active payment catalog entries
554
+ *UghuuuGamend.PaymentsApi* | [**paymentsEntitlements**](docs/PaymentsApi.md#paymentsEntitlements) | **GET** /api/v1/payments/entitlements | List current user&#39;s active entitlements
555
+ *UghuuuGamend.PaymentsApi* | [**paymentsGoogleWebhook**](docs/PaymentsApi.md#paymentsGoogleWebhook) | **POST** /api/v1/payments/webhooks/google | Receive Google Play RTDN Pub/Sub push events
556
+ *UghuuuGamend.PaymentsApi* | [**paymentsSteamCheckout**](docs/PaymentsApi.md#paymentsSteamCheckout) | **POST** /api/v1/payments/checkout/steam | Create a Steam MicroTxn transaction
557
+ *UghuuuGamend.PaymentsApi* | [**paymentsSteamFinalize**](docs/PaymentsApi.md#paymentsSteamFinalize) | **POST** /api/v1/payments/steam/finalize | Finalize an authorized Steam MicroTxn transaction
558
+ *UghuuuGamend.PaymentsApi* | [**paymentsStripeCheckout**](docs/PaymentsApi.md#paymentsStripeCheckout) | **POST** /api/v1/payments/checkout/stripe | Create a Stripe Checkout Session
559
+ *UghuuuGamend.PaymentsApi* | [**paymentsStripeWebhook**](docs/PaymentsApi.md#paymentsStripeWebhook) | **POST** /api/v1/payments/webhooks/stripe | Receive Stripe webhook events
560
+ *UghuuuGamend.PaymentsApi* | [**paymentsValidateStorePurchase**](docs/PaymentsApi.md#paymentsValidateStorePurchase) | **POST** /api/v1/payments/validate/{provider} | Validate an Apple, Google, or Steam purchase
561
+ *UghuuuGamend.PushApi* | [**deletePushToken**](docs/PushApi.md#deletePushToken) | **DELETE** /api/v1/me/push_tokens/{id} | Unregister one of the current user&#39;s devices
562
+ *UghuuuGamend.PushApi* | [**listPushTokens**](docs/PushApi.md#listPushTokens) | **GET** /api/v1/me/push_tokens | List the current user&#39;s registered devices
563
+ *UghuuuGamend.PushApi* | [**registerPushToken**](docs/PushApi.md#registerPushToken) | **POST** /api/v1/me/push_tokens | Register a device push token
564
+ *UghuuuGamend.QuestsApi* | [**claimQuest**](docs/QuestsApi.md#claimQuest) | **POST** /api/v1/me/quests/{key}/claim | Claim a completed quest
565
+ *UghuuuGamend.QuestsApi* | [**listQuests**](docs/QuestsApi.md#listQuests) | **GET** /api/v1/quests | List quests
566
+ *UghuuuGamend.QuestsApi* | [**myQuests**](docs/QuestsApi.md#myQuests) | **GET** /api/v1/me/quests | List my quests
567
+ *UghuuuGamend.QuestsApi* | [**questStats**](docs/QuestsApi.md#questStats) | **GET** /api/v1/quests/stats | Quest progress counts
568
+ *UghuuuGamend.QuestsApi* | [**userQuests**](docs/QuestsApi.md#userQuests) | **GET** /api/v1/quests/user/{user_id} | List a user&#39;s completed quests
569
+ *UghuuuGamend.ReadyChecksApi* | [**cancelLobbyReadyCheck**](docs/ReadyChecksApi.md#cancelLobbyReadyCheck) | **DELETE** /api/v1/lobbies/ready_check | Call off the ready check in the caller&#39;s lobby (host only)
570
+ *UghuuuGamend.ReadyChecksApi* | [**cancelPartyReadyCheck**](docs/ReadyChecksApi.md#cancelPartyReadyCheck) | **DELETE** /api/v1/parties/ready_check | Call off the ready check in the caller&#39;s party (leader only)
571
+ *UghuuuGamend.ReadyChecksApi* | [**getMyReadyCheck**](docs/ReadyChecksApi.md#getMyReadyCheck) | **GET** /api/v1/me/ready_check | Get the caller&#39;s open ready checks
572
+ *UghuuuGamend.ReadyChecksApi* | [**openLobbyReadyCheck**](docs/ReadyChecksApi.md#openLobbyReadyCheck) | **POST** /api/v1/lobbies/ready_check | Open (or reset) the ready board in the caller&#39;s lobby (host only)
573
+ *UghuuuGamend.ReadyChecksApi* | [**openPartyReadyCheck**](docs/ReadyChecksApi.md#openPartyReadyCheck) | **POST** /api/v1/parties/ready_check | Open (or reset) the ready board in the caller&#39;s party (leader only)
574
+ *UghuuuGamend.ReadyChecksApi* | [**respondReadyCheck**](docs/ReadyChecksApi.md#respondReadyCheck) | **POST** /api/v1/me/ready_check | Answer one of the caller&#39;s open ready checks
575
+ *UghuuuGamend.SignalingApi* | [**signalingStats**](docs/SignalingApi.md#signalingStats) | **GET** /api/v1/signaling/stats | WebRTC room counts
576
+ *UghuuuGamend.StatsApi* | [**getStats**](docs/StatsApi.md#getStats) | **GET** /api/v1/stats | All public server counters in one call
577
+ *UghuuuGamend.TimeApi* | [**getServerTime**](docs/TimeApi.md#getServerTime) | **GET** /api/v1/time | Server clock
578
+ *UghuuuGamend.TournamentsApi* | [**getTournament**](docs/TournamentsApi.md#getTournament) | **GET** /api/v1/tournaments/{id} | Tournament details (with the caller&#39;s participation when authenticated)
579
+ *UghuuuGamend.TournamentsApi* | [**joinTournament**](docs/TournamentsApi.md#joinTournament) | **POST** /api/v1/tournaments/{id}/join | Register as an entry leader
580
+ *UghuuuGamend.TournamentsApi* | [**leaveTournament**](docs/TournamentsApi.md#leaveTournament) | **DELETE** /api/v1/tournaments/{id}/join | Withdraw the caller&#39;s entry (before the draw)
581
+ *UghuuuGamend.TournamentsApi* | [**listTournaments**](docs/TournamentsApi.md#listTournaments) | **GET** /api/v1/tournaments | List tournaments
582
+ *UghuuuGamend.TournamentsApi* | [**tournamentBracket**](docs/TournamentsApi.md#tournamentBracket) | **GET** /api/v1/tournaments/{id}/bracket | Brackets and their matches (paginated by bracket)
583
+ *UghuuuGamend.TournamentsApi* | [**tournamentEntries**](docs/TournamentsApi.md#tournamentEntries) | **GET** /api/v1/tournaments/{id}/entries | Registered entries (paginated)
584
+ *UghuuuGamend.TournamentsApi* | [**tournamentMyMatch**](docs/TournamentsApi.md#tournamentMyMatch) | **GET** /api/v1/tournaments/{id}/my_match | The caller&#39;s current unresolved match, if any
585
+ *UghuuuGamend.TournamentsApi* | [**tournamentStandings**](docs/TournamentsApi.md#tournamentStandings) | **GET** /api/v1/tournaments/{id}/standings | Placements, wins and champions
586
+ *UghuuuGamend.UsersApi* | [**createCurrentUserAvatarUploadUrl**](docs/UsersApi.md#createCurrentUserAvatarUploadUrl) | **POST** /api/v1/me/avatar/upload_url | Request an avatar upload ticket
587
+ *UghuuuGamend.UsersApi* | [**deleteCurrentUser**](docs/UsersApi.md#deleteCurrentUser) | **DELETE** /api/v1/me | Delete current user
588
+ *UghuuuGamend.UsersApi* | [**getCurrentUser**](docs/UsersApi.md#getCurrentUser) | **GET** /api/v1/me | Return current user info
589
+ *UghuuuGamend.UsersApi* | [**getUser**](docs/UsersApi.md#getUser) | **GET** /api/v1/users/{id} | Get a user by id
590
+ *UghuuuGamend.UsersApi* | [**searchUsers**](docs/UsersApi.md#searchUsers) | **GET** /api/v1/users | Search users by id, username, or display_name
591
+ *UghuuuGamend.UsersApi* | [**setCurrentUserAvatar**](docs/UsersApi.md#setCurrentUserAvatar) | **POST** /api/v1/me/avatar | Confirm an uploaded avatar
592
+ *UghuuuGamend.UsersApi* | [**updateCurrentUserDisplayName**](docs/UsersApi.md#updateCurrentUserDisplayName) | **PATCH** /api/v1/me/display_name | Update current user&#39;s display name
593
+ *UghuuuGamend.UsersApi* | [**updateCurrentUserPassword**](docs/UsersApi.md#updateCurrentUserPassword) | **PATCH** /api/v1/me/password | Update current user password
594
+ *UghuuuGamend.UsersApi* | [**updateCurrentUserUsername**](docs/UsersApi.md#updateCurrentUserUsername) | **PATCH** /api/v1/me/username | Update current user&#39;s username
595
+ *UghuuuGamend.UsersApi* | [**userStats**](docs/UsersApi.md#userStats) | **GET** /api/v1/users/stats | Player counts
596
+
597
+
598
+ ## Documentation for Models
599
+
600
+ - [UghuuuGamend.AcceptPartyInvite200Response](docs/AcceptPartyInvite200Response.md)
601
+ - [UghuuuGamend.AcceptPartyInvite200ResponseMembersInner](docs/AcceptPartyInvite200ResponseMembersInner.md)
602
+ - [UghuuuGamend.AcceptPartyInviteRequest](docs/AcceptPartyInviteRequest.md)
603
+ - [UghuuuGamend.AdminCancelMatchmakingTicket200Response](docs/AdminCancelMatchmakingTicket200Response.md)
604
+ - [UghuuuGamend.AdminCancelReadyCheck200Response](docs/AdminCancelReadyCheck200Response.md)
605
+ - [UghuuuGamend.AdminCancelReadyCheck200ResponseData](docs/AdminCancelReadyCheck200ResponseData.md)
606
+ - [UghuuuGamend.AdminConsumeItem400Response](docs/AdminConsumeItem400Response.md)
607
+ - [UghuuuGamend.AdminCreateChatFilterWordRequest](docs/AdminCreateChatFilterWordRequest.md)
608
+ - [UghuuuGamend.AdminCreateChatMute200Response](docs/AdminCreateChatMute200Response.md)
609
+ - [UghuuuGamend.AdminCreateChatMuteRequest](docs/AdminCreateChatMuteRequest.md)
610
+ - [UghuuuGamend.AdminCreateLeaderboard200Response](docs/AdminCreateLeaderboard200Response.md)
611
+ - [UghuuuGamend.AdminCreateLeaderboard200ResponseData](docs/AdminCreateLeaderboard200ResponseData.md)
612
+ - [UghuuuGamend.AdminCreateLeaderboardRequest](docs/AdminCreateLeaderboardRequest.md)
613
+ - [UghuuuGamend.AdminCreateNotificationRequest](docs/AdminCreateNotificationRequest.md)
614
+ - [UghuuuGamend.AdminCreateQuestRequest](docs/AdminCreateQuestRequest.md)
615
+ - [UghuuuGamend.AdminCreateQuestRequestObjectivesInner](docs/AdminCreateQuestRequestObjectivesInner.md)
616
+ - [UghuuuGamend.AdminCreateQuestRequestRewardsInner](docs/AdminCreateQuestRequestRewardsInner.md)
617
+ - [UghuuuGamend.AdminDeleteChatConversation200Response](docs/AdminDeleteChatConversation200Response.md)
618
+ - [UghuuuGamend.AdminDeleteChatConversation200ResponseData](docs/AdminDeleteChatConversation200ResponseData.md)
619
+ - [UghuuuGamend.AdminDeleteChatFilterWordsByLang200Response](docs/AdminDeleteChatFilterWordsByLang200Response.md)
620
+ - [UghuuuGamend.AdminDrawTournament200Response](docs/AdminDrawTournament200Response.md)
621
+ - [UghuuuGamend.AdminDrawTournament200ResponseData](docs/AdminDrawTournament200ResponseData.md)
622
+ - [UghuuuGamend.AdminGetAnalyticsCounts200Response](docs/AdminGetAnalyticsCounts200Response.md)
623
+ - [UghuuuGamend.AdminGetAnalyticsCounts200ResponseTotalsInner](docs/AdminGetAnalyticsCounts200ResponseTotalsInner.md)
624
+ - [UghuuuGamend.AdminGetAnalyticsDaily200Response](docs/AdminGetAnalyticsDaily200Response.md)
625
+ - [UghuuuGamend.AdminGetAnalyticsDaily200ResponseSeriesInner](docs/AdminGetAnalyticsDaily200ResponseSeriesInner.md)
626
+ - [UghuuuGamend.AdminGetAnalyticsEconomy200Response](docs/AdminGetAnalyticsEconomy200Response.md)
627
+ - [UghuuuGamend.AdminGetAnalyticsEconomy200ResponseFlowInner](docs/AdminGetAnalyticsEconomy200ResponseFlowInner.md)
628
+ - [UghuuuGamend.AdminGetAnalyticsEconomy200ResponseTotalsInner](docs/AdminGetAnalyticsEconomy200ResponseTotalsInner.md)
629
+ - [UghuuuGamend.AdminGetAnalyticsSummary200Response](docs/AdminGetAnalyticsSummary200Response.md)
630
+ - [UghuuuGamend.AdminGrantItemRequest](docs/AdminGrantItemRequest.md)
631
+ - [UghuuuGamend.AdminImportChatFilterWords200Response](docs/AdminImportChatFilterWords200Response.md)
632
+ - [UghuuuGamend.AdminImportChatFilterWordsRequest](docs/AdminImportChatFilterWordsRequest.md)
633
+ - [UghuuuGamend.AdminListChatFilterWords200Response](docs/AdminListChatFilterWords200Response.md)
634
+ - [UghuuuGamend.AdminListChatMessages200Response](docs/AdminListChatMessages200Response.md)
635
+ - [UghuuuGamend.AdminListChatMessages200ResponseDataInner](docs/AdminListChatMessages200ResponseDataInner.md)
636
+ - [UghuuuGamend.AdminListChatMutes200Response](docs/AdminListChatMutes200Response.md)
637
+ - [UghuuuGamend.AdminListChatMutes200ResponseDataInner](docs/AdminListChatMutes200ResponseDataInner.md)
638
+ - [UghuuuGamend.AdminListChatReports200Response](docs/AdminListChatReports200Response.md)
639
+ - [UghuuuGamend.AdminListGroups200Response](docs/AdminListGroups200Response.md)
640
+ - [UghuuuGamend.AdminListKvEntries200Response](docs/AdminListKvEntries200Response.md)
641
+ - [UghuuuGamend.AdminListLobbies200Response](docs/AdminListLobbies200Response.md)
642
+ - [UghuuuGamend.AdminListLobbies200ResponseDataInner](docs/AdminListLobbies200ResponseDataInner.md)
643
+ - [UghuuuGamend.AdminListMatchmakingTickets200Response](docs/AdminListMatchmakingTickets200Response.md)
644
+ - [UghuuuGamend.AdminListMatchmakingTickets200ResponseDataInner](docs/AdminListMatchmakingTickets200ResponseDataInner.md)
645
+ - [UghuuuGamend.AdminListNotifications200Response](docs/AdminListNotifications200Response.md)
646
+ - [UghuuuGamend.AdminListNotifications200ResponseDataInner](docs/AdminListNotifications200ResponseDataInner.md)
647
+ - [UghuuuGamend.AdminListPushTokens200Response](docs/AdminListPushTokens200Response.md)
648
+ - [UghuuuGamend.AdminListPushTokens200ResponseDataInner](docs/AdminListPushTokens200ResponseDataInner.md)
649
+ - [UghuuuGamend.AdminListQuestProgress200Response](docs/AdminListQuestProgress200Response.md)
650
+ - [UghuuuGamend.AdminListQuestProgress200ResponseDataInner](docs/AdminListQuestProgress200ResponseDataInner.md)
651
+ - [UghuuuGamend.AdminListQuests200Response](docs/AdminListQuests200Response.md)
652
+ - [UghuuuGamend.AdminListQuests200ResponseDataInner](docs/AdminListQuests200ResponseDataInner.md)
653
+ - [UghuuuGamend.AdminListReadyChecks200Response](docs/AdminListReadyChecks200Response.md)
654
+ - [UghuuuGamend.AdminListSessions200Response](docs/AdminListSessions200Response.md)
655
+ - [UghuuuGamend.AdminListSessions200ResponseDataInner](docs/AdminListSessions200ResponseDataInner.md)
656
+ - [UghuuuGamend.AdminListStorageObjects200Response](docs/AdminListStorageObjects200Response.md)
657
+ - [UghuuuGamend.AdminListStorageObjects200ResponseDataInner](docs/AdminListStorageObjects200ResponseDataInner.md)
658
+ - [UghuuuGamend.AdminListStorageObjects200ResponseUsage](docs/AdminListStorageObjects200ResponseUsage.md)
659
+ - [UghuuuGamend.AdminMatchmakingStats200Response](docs/AdminMatchmakingStats200Response.md)
660
+ - [UghuuuGamend.AdminMatchmakingStats200ResponseData](docs/AdminMatchmakingStats200ResponseData.md)
661
+ - [UghuuuGamend.AdminResetQuestRequest](docs/AdminResetQuestRequest.md)
662
+ - [UghuuuGamend.AdminResolveChatReport200Response](docs/AdminResolveChatReport200Response.md)
663
+ - [UghuuuGamend.AdminResolveChatReport200ResponseData](docs/AdminResolveChatReport200ResponseData.md)
664
+ - [UghuuuGamend.AdminResolveChatReportRequest](docs/AdminResolveChatReportRequest.md)
665
+ - [UghuuuGamend.AdminResolveTournamentMatchRequest](docs/AdminResolveTournamentMatchRequest.md)
666
+ - [UghuuuGamend.AdminRunRetention200Response](docs/AdminRunRetention200Response.md)
667
+ - [UghuuuGamend.AdminSendPushRequest](docs/AdminSendPushRequest.md)
668
+ - [UghuuuGamend.AdminSetQuestIconRequest](docs/AdminSetQuestIconRequest.md)
669
+ - [UghuuuGamend.AdminSpendCurrencyRequest](docs/AdminSpendCurrencyRequest.md)
670
+ - [UghuuuGamend.AdminSubmitLeaderboardScoreRequest](docs/AdminSubmitLeaderboardScoreRequest.md)
671
+ - [UghuuuGamend.AdminTestChatPhrase200Response](docs/AdminTestChatPhrase200Response.md)
672
+ - [UghuuuGamend.AdminTestChatPhrase200ResponseData](docs/AdminTestChatPhrase200ResponseData.md)
673
+ - [UghuuuGamend.AdminTestChatPhrase200ResponseDataHitsInner](docs/AdminTestChatPhrase200ResponseDataHitsInner.md)
674
+ - [UghuuuGamend.AdminTestChatPhraseRequest](docs/AdminTestChatPhraseRequest.md)
675
+ - [UghuuuGamend.AdminTournamentIconUploadUrlRequest](docs/AdminTournamentIconUploadUrlRequest.md)
676
+ - [UghuuuGamend.AdminUpdateChatFilterWord200Response](docs/AdminUpdateChatFilterWord200Response.md)
677
+ - [UghuuuGamend.AdminUpdateChatFilterWord200ResponseData](docs/AdminUpdateChatFilterWord200ResponseData.md)
678
+ - [UghuuuGamend.AdminUpdateChatFilterWordRequest](docs/AdminUpdateChatFilterWordRequest.md)
679
+ - [UghuuuGamend.AdminUpdateGroup200Response](docs/AdminUpdateGroup200Response.md)
680
+ - [UghuuuGamend.AdminUpdateGroupRequest](docs/AdminUpdateGroupRequest.md)
681
+ - [UghuuuGamend.AdminUpdateKvEntryRequest](docs/AdminUpdateKvEntryRequest.md)
682
+ - [UghuuuGamend.AdminUpdateLeaderboardRecord200Response](docs/AdminUpdateLeaderboardRecord200Response.md)
683
+ - [UghuuuGamend.AdminUpdateLeaderboardRecord200ResponseData](docs/AdminUpdateLeaderboardRecord200ResponseData.md)
684
+ - [UghuuuGamend.AdminUpdateLeaderboardRecordRequest](docs/AdminUpdateLeaderboardRecordRequest.md)
685
+ - [UghuuuGamend.AdminUpdateLeaderboardRequest](docs/AdminUpdateLeaderboardRequest.md)
686
+ - [UghuuuGamend.AdminUpdateLobby200Response](docs/AdminUpdateLobby200Response.md)
687
+ - [UghuuuGamend.AdminUpdateLobbyRequest](docs/AdminUpdateLobbyRequest.md)
688
+ - [UghuuuGamend.AdminUpdateTournamentRequest](docs/AdminUpdateTournamentRequest.md)
689
+ - [UghuuuGamend.AdminUpdateUser200Response](docs/AdminUpdateUser200Response.md)
690
+ - [UghuuuGamend.AdminUpdateUser200ResponseData](docs/AdminUpdateUser200ResponseData.md)
691
+ - [UghuuuGamend.AdminUpdateUserRequest](docs/AdminUpdateUserRequest.md)
692
+ - [UghuuuGamend.AdminUpsertKv200Response](docs/AdminUpsertKv200Response.md)
693
+ - [UghuuuGamend.AdminUpsertKv200ResponseData](docs/AdminUpsertKv200ResponseData.md)
694
+ - [UghuuuGamend.AdminUpsertKvRequest](docs/AdminUpsertKvRequest.md)
695
+ - [UghuuuGamend.ApproveJoinRequest200Response](docs/ApproveJoinRequest200Response.md)
696
+ - [UghuuuGamend.CallHook200Response](docs/CallHook200Response.md)
697
+ - [UghuuuGamend.CallHookRequest](docs/CallHookRequest.md)
698
+ - [UghuuuGamend.CancelJoinRequest200Response](docs/CancelJoinRequest200Response.md)
699
+ - [UghuuuGamend.CancelPartyInviteRequest](docs/CancelPartyInviteRequest.md)
700
+ - [UghuuuGamend.ChatUnreadCount200Response](docs/ChatUnreadCount200Response.md)
701
+ - [UghuuuGamend.ChatUnreadCount200ResponseData](docs/ChatUnreadCount200ResponseData.md)
702
+ - [UghuuuGamend.ClaimQuest200Response](docs/ClaimQuest200Response.md)
703
+ - [UghuuuGamend.ClaimQuest200ResponseData](docs/ClaimQuest200ResponseData.md)
704
+ - [UghuuuGamend.ClientLogBatch](docs/ClientLogBatch.md)
705
+ - [UghuuuGamend.ClientLogEntry](docs/ClientLogEntry.md)
706
+ - [UghuuuGamend.ClientLogPolicy](docs/ClientLogPolicy.md)
707
+ - [UghuuuGamend.ClientLogResult](docs/ClientLogResult.md)
708
+ - [UghuuuGamend.ClientLogSession](docs/ClientLogSession.md)
709
+ - [UghuuuGamend.CreateCurrentUserAvatarUploadUrlRequest](docs/CreateCurrentUserAvatarUploadUrlRequest.md)
710
+ - [UghuuuGamend.CreateFriendRequestRequest](docs/CreateFriendRequestRequest.md)
711
+ - [UghuuuGamend.CreateGroupRequest](docs/CreateGroupRequest.md)
712
+ - [UghuuuGamend.CreateLobbyRequest](docs/CreateLobbyRequest.md)
713
+ - [UghuuuGamend.CreatePartyRequest](docs/CreatePartyRequest.md)
714
+ - [UghuuuGamend.DeclineGroupInvite200Response](docs/DeclineGroupInvite200Response.md)
715
+ - [UghuuuGamend.DeclinePartyInviteRequest](docs/DeclinePartyInviteRequest.md)
716
+ - [UghuuuGamend.DeleteNotifications200Response](docs/DeleteNotifications200Response.md)
717
+ - [UghuuuGamend.DeleteNotifications200ResponseData](docs/DeleteNotifications200ResponseData.md)
718
+ - [UghuuuGamend.DeleteNotificationsRequest](docs/DeleteNotificationsRequest.md)
719
+ - [UghuuuGamend.DeletePushToken200Response](docs/DeletePushToken200Response.md)
720
+ - [UghuuuGamend.DemoteGroupMemberRequest](docs/DemoteGroupMemberRequest.md)
721
+ - [UghuuuGamend.DeviceLoginRequest](docs/DeviceLoginRequest.md)
722
+ - [UghuuuGamend.ErrorResponse](docs/ErrorResponse.md)
723
+ - [UghuuuGamend.GetCurrentUser200Response](docs/GetCurrentUser200Response.md)
724
+ - [UghuuuGamend.GetCurrentUser200ResponseLinkedProviders](docs/GetCurrentUser200ResponseLinkedProviders.md)
725
+ - [UghuuuGamend.GetCurrentUserInventory200Response](docs/GetCurrentUserInventory200Response.md)
726
+ - [UghuuuGamend.GetKv200Response](docs/GetKv200Response.md)
727
+ - [UghuuuGamend.GetLobby200Response](docs/GetLobby200Response.md)
728
+ - [UghuuuGamend.GetMyReadyCheck200Response](docs/GetMyReadyCheck200Response.md)
729
+ - [UghuuuGamend.GetMyReadyCheck200ResponseLobby](docs/GetMyReadyCheck200ResponseLobby.md)
730
+ - [UghuuuGamend.GetMyReadyCheck200ResponseParty](docs/GetMyReadyCheck200ResponseParty.md)
731
+ - [UghuuuGamend.GetMyRecord200Response](docs/GetMyRecord200Response.md)
732
+ - [UghuuuGamend.GetMyRecord200ResponseData](docs/GetMyRecord200ResponseData.md)
733
+ - [UghuuuGamend.GetServerTime200Response](docs/GetServerTime200Response.md)
734
+ - [UghuuuGamend.GetStats200Response](docs/GetStats200Response.md)
735
+ - [UghuuuGamend.GetStats200ResponseData](docs/GetStats200ResponseData.md)
736
+ - [UghuuuGamend.HealthResponse](docs/HealthResponse.md)
737
+ - [UghuuuGamend.InviteToGroup200Response](docs/InviteToGroup200Response.md)
738
+ - [UghuuuGamend.InviteToGroupRequest](docs/InviteToGroupRequest.md)
739
+ - [UghuuuGamend.InviteToPartyRequest](docs/InviteToPartyRequest.md)
740
+ - [UghuuuGamend.KickGroupMemberRequest](docs/KickGroupMemberRequest.md)
741
+ - [UghuuuGamend.KickPartyMemberRequest](docs/KickPartyMemberRequest.md)
742
+ - [UghuuuGamend.LinkDeviceRequest](docs/LinkDeviceRequest.md)
743
+ - [UghuuuGamend.ListAuthProviders200Response](docs/ListAuthProviders200Response.md)
744
+ - [UghuuuGamend.ListBlacklistedUsers200Response](docs/ListBlacklistedUsers200Response.md)
745
+ - [UghuuuGamend.ListBlacklistedUsers200ResponseDataInner](docs/ListBlacklistedUsers200ResponseDataInner.md)
746
+ - [UghuuuGamend.ListBlockedFriends200Response](docs/ListBlockedFriends200Response.md)
747
+ - [UghuuuGamend.ListBlockedFriends200ResponseDataInner](docs/ListBlockedFriends200ResponseDataInner.md)
748
+ - [UghuuuGamend.ListChatMessages200Response](docs/ListChatMessages200Response.md)
749
+ - [UghuuuGamend.ListChatMessages200ResponseDataInner](docs/ListChatMessages200ResponseDataInner.md)
750
+ - [UghuuuGamend.ListCurrentUserLedger200Response](docs/ListCurrentUserLedger200Response.md)
751
+ - [UghuuuGamend.ListCurrentUserLedger200ResponseDataInner](docs/ListCurrentUserLedger200ResponseDataInner.md)
752
+ - [UghuuuGamend.ListFriendRequests200Response](docs/ListFriendRequests200Response.md)
753
+ - [UghuuuGamend.ListFriendRequests200ResponseData](docs/ListFriendRequests200ResponseData.md)
754
+ - [UghuuuGamend.ListFriendRequests200ResponseDataIncomingInner](docs/ListFriendRequests200ResponseDataIncomingInner.md)
755
+ - [UghuuuGamend.ListFriendRequests200ResponseDataIncomingInnerRequester](docs/ListFriendRequests200ResponseDataIncomingInnerRequester.md)
756
+ - [UghuuuGamend.ListFriendRequests200ResponseMeta](docs/ListFriendRequests200ResponseMeta.md)
757
+ - [UghuuuGamend.ListFriends200Response](docs/ListFriends200Response.md)
758
+ - [UghuuuGamend.ListFriends200ResponseDataInner](docs/ListFriends200ResponseDataInner.md)
759
+ - [UghuuuGamend.ListGroupInvitations200Response](docs/ListGroupInvitations200Response.md)
760
+ - [UghuuuGamend.ListGroupInvitations200ResponseDataInner](docs/ListGroupInvitations200ResponseDataInner.md)
761
+ - [UghuuuGamend.ListGroupMembers200Response](docs/ListGroupMembers200Response.md)
762
+ - [UghuuuGamend.ListGroupMutes200Response](docs/ListGroupMutes200Response.md)
763
+ - [UghuuuGamend.ListGroupMutes200ResponseDataInner](docs/ListGroupMutes200ResponseDataInner.md)
764
+ - [UghuuuGamend.ListGroupMutes200ResponseMeta](docs/ListGroupMutes200ResponseMeta.md)
765
+ - [UghuuuGamend.ListJoinRequests200Response](docs/ListJoinRequests200Response.md)
766
+ - [UghuuuGamend.ListLeaderboardRecords200Response](docs/ListLeaderboardRecords200Response.md)
767
+ - [UghuuuGamend.ListLeaderboards200Response](docs/ListLeaderboards200Response.md)
768
+ - [UghuuuGamend.ListLobbies200Response](docs/ListLobbies200Response.md)
769
+ - [UghuuuGamend.ListLobbies200ResponseDataInner](docs/ListLobbies200ResponseDataInner.md)
770
+ - [UghuuuGamend.ListMyGroups200Response](docs/ListMyGroups200Response.md)
771
+ - [UghuuuGamend.ListMyGroups200ResponseDataInner](docs/ListMyGroups200ResponseDataInner.md)
772
+ - [UghuuuGamend.ListNotifications200Response](docs/ListNotifications200Response.md)
773
+ - [UghuuuGamend.ListNotifications200ResponseDataInner](docs/ListNotifications200ResponseDataInner.md)
774
+ - [UghuuuGamend.ListPartyInvitations200ResponseInner](docs/ListPartyInvitations200ResponseInner.md)
775
+ - [UghuuuGamend.ListPushTokens200Response](docs/ListPushTokens200Response.md)
776
+ - [UghuuuGamend.ListRecordsAroundUser200Response](docs/ListRecordsAroundUser200Response.md)
777
+ - [UghuuuGamend.ListSentInvitations200Response](docs/ListSentInvitations200Response.md)
778
+ - [UghuuuGamend.ListSentInvitations200ResponseDataInner](docs/ListSentInvitations200ResponseDataInner.md)
779
+ - [UghuuuGamend.ListTournaments200Response](docs/ListTournaments200Response.md)
780
+ - [UghuuuGamend.ListTournaments200ResponseDataInner](docs/ListTournaments200ResponseDataInner.md)
781
+ - [UghuuuGamend.LobbyStats200Response](docs/LobbyStats200Response.md)
782
+ - [UghuuuGamend.LobbyStats200ResponseData](docs/LobbyStats200ResponseData.md)
783
+ - [UghuuuGamend.Login200Response](docs/Login200Response.md)
784
+ - [UghuuuGamend.Login200ResponseData](docs/Login200ResponseData.md)
785
+ - [UghuuuGamend.LoginRequest](docs/LoginRequest.md)
786
+ - [UghuuuGamend.MarkChatReadRequest](docs/MarkChatReadRequest.md)
787
+ - [UghuuuGamend.MatchmakingCancel200Response](docs/MatchmakingCancel200Response.md)
788
+ - [UghuuuGamend.MatchmakingJoin201Response](docs/MatchmakingJoin201Response.md)
789
+ - [UghuuuGamend.MatchmakingJoin201ResponseData](docs/MatchmakingJoin201ResponseData.md)
790
+ - [UghuuuGamend.MatchmakingJoinRequest](docs/MatchmakingJoinRequest.md)
791
+ - [UghuuuGamend.MatchmakingMyTicket200Response](docs/MatchmakingMyTicket200Response.md)
792
+ - [UghuuuGamend.MatchmakingMyTicket200ResponseData](docs/MatchmakingMyTicket200ResponseData.md)
793
+ - [UghuuuGamend.MatchmakingStats200Response](docs/MatchmakingStats200Response.md)
794
+ - [UghuuuGamend.MatchmakingStats200ResponseData](docs/MatchmakingStats200ResponseData.md)
795
+ - [UghuuuGamend.MatchmakingStats200ResponseDataQueuesInner](docs/MatchmakingStats200ResponseDataQueuesInner.md)
796
+ - [UghuuuGamend.MuteGroupMemberRequest](docs/MuteGroupMemberRequest.md)
797
+ - [UghuuuGamend.OAuthSessionData](docs/OAuthSessionData.md)
798
+ - [UghuuuGamend.OAuthSessionDataDetails](docs/OAuthSessionDataDetails.md)
799
+ - [UghuuuGamend.OAuthSessionStatus](docs/OAuthSessionStatus.md)
800
+ - [UghuuuGamend.OauthApiCallback200Response](docs/OauthApiCallback200Response.md)
801
+ - [UghuuuGamend.OauthApiCallbackRequest](docs/OauthApiCallbackRequest.md)
802
+ - [UghuuuGamend.OauthCallbackApiAppleIosRequest](docs/OauthCallbackApiAppleIosRequest.md)
803
+ - [UghuuuGamend.OauthGoogleIdTokenRequest](docs/OauthGoogleIdTokenRequest.md)
804
+ - [UghuuuGamend.OauthRequest200Response](docs/OauthRequest200Response.md)
805
+ - [UghuuuGamend.OauthSessionStatus404Response](docs/OauthSessionStatus404Response.md)
806
+ - [UghuuuGamend.OpenLobbyReadyCheck201Response](docs/OpenLobbyReadyCheck201Response.md)
807
+ - [UghuuuGamend.OpenLobbyReadyCheckRequest](docs/OpenLobbyReadyCheckRequest.md)
808
+ - [UghuuuGamend.PartyCreateLobbyRequest](docs/PartyCreateLobbyRequest.md)
809
+ - [UghuuuGamend.PartyJoinLobbyRequest](docs/PartyJoinLobbyRequest.md)
810
+ - [UghuuuGamend.PartyStats200Response](docs/PartyStats200Response.md)
811
+ - [UghuuuGamend.PartyStats200ResponseData](docs/PartyStats200ResponseData.md)
812
+ - [UghuuuGamend.PaymentsSteamCheckoutRequest](docs/PaymentsSteamCheckoutRequest.md)
813
+ - [UghuuuGamend.PaymentsSteamFinalizeRequest](docs/PaymentsSteamFinalizeRequest.md)
814
+ - [UghuuuGamend.PaymentsStripeCheckoutRequest](docs/PaymentsStripeCheckoutRequest.md)
815
+ - [UghuuuGamend.PromoteGroupMemberRequest](docs/PromoteGroupMemberRequest.md)
816
+ - [UghuuuGamend.QuestStats200Response](docs/QuestStats200Response.md)
817
+ - [UghuuuGamend.QuestStats200ResponseData](docs/QuestStats200ResponseData.md)
818
+ - [UghuuuGamend.QuickJoinRequest](docs/QuickJoinRequest.md)
819
+ - [UghuuuGamend.RefreshToken200Response](docs/RefreshToken200Response.md)
820
+ - [UghuuuGamend.RefreshToken200ResponseData](docs/RefreshToken200ResponseData.md)
821
+ - [UghuuuGamend.RefreshTokenRequest](docs/RefreshTokenRequest.md)
822
+ - [UghuuuGamend.RegisterPushTokenRequest](docs/RegisterPushTokenRequest.md)
823
+ - [UghuuuGamend.ReportChatMessageRequest](docs/ReportChatMessageRequest.md)
824
+ - [UghuuuGamend.ResolveLeaderboardSlugs200Response](docs/ResolveLeaderboardSlugs200Response.md)
825
+ - [UghuuuGamend.ResolveLeaderboardSlugs200ResponseDataValue](docs/ResolveLeaderboardSlugs200ResponseDataValue.md)
826
+ - [UghuuuGamend.ResolveLeaderboardSlugsRequest](docs/ResolveLeaderboardSlugsRequest.md)
827
+ - [UghuuuGamend.RespondReadyCheckRequest](docs/RespondReadyCheckRequest.md)
828
+ - [UghuuuGamend.SearchUsers200Response](docs/SearchUsers200Response.md)
829
+ - [UghuuuGamend.SearchUsers200ResponseDataInner](docs/SearchUsers200ResponseDataInner.md)
830
+ - [UghuuuGamend.SendChatMessageRequest](docs/SendChatMessageRequest.md)
831
+ - [UghuuuGamend.SendNotificationRequest](docs/SendNotificationRequest.md)
832
+ - [UghuuuGamend.SetLobbyStateRequest](docs/SetLobbyStateRequest.md)
833
+ - [UghuuuGamend.SignalingStats200Response](docs/SignalingStats200Response.md)
834
+ - [UghuuuGamend.SignalingStats200ResponseData](docs/SignalingStats200ResponseData.md)
835
+ - [UghuuuGamend.TournamentMyMatch200Response](docs/TournamentMyMatch200Response.md)
836
+ - [UghuuuGamend.UnmuteLobbyMemberRequest](docs/UnmuteLobbyMemberRequest.md)
837
+ - [UghuuuGamend.UpdateChatMessageRequest](docs/UpdateChatMessageRequest.md)
838
+ - [UghuuuGamend.UpdateCurrentUserDisplayName400Response](docs/UpdateCurrentUserDisplayName400Response.md)
839
+ - [UghuuuGamend.UpdateCurrentUserDisplayNameRequest](docs/UpdateCurrentUserDisplayNameRequest.md)
840
+ - [UghuuuGamend.UpdateCurrentUserPasswordRequest](docs/UpdateCurrentUserPasswordRequest.md)
841
+ - [UghuuuGamend.UpdateCurrentUserUsernameRequest](docs/UpdateCurrentUserUsernameRequest.md)
842
+ - [UghuuuGamend.UpdateGroupRequest](docs/UpdateGroupRequest.md)
843
+ - [UghuuuGamend.UpdateLobbyRequest](docs/UpdateLobbyRequest.md)
844
+ - [UghuuuGamend.UpdatePartyRequest](docs/UpdatePartyRequest.md)
845
+ - [UghuuuGamend.UserQuests200Response](docs/UserQuests200Response.md)
846
+ - [UghuuuGamend.UserQuests200ResponseDataInner](docs/UserQuests200ResponseDataInner.md)
847
+ - [UghuuuGamend.UserQuests200ResponseDataInnerObjectivesInner](docs/UserQuests200ResponseDataInnerObjectivesInner.md)
848
+ - [UghuuuGamend.UserQuests200ResponseDataInnerProgress](docs/UserQuests200ResponseDataInnerProgress.md)
849
+ - [UghuuuGamend.UserQuests200ResponseDataInnerRewardsInner](docs/UserQuests200ResponseDataInnerRewardsInner.md)
850
+ - [UghuuuGamend.UserQuests200ResponseMeta](docs/UserQuests200ResponseMeta.md)
851
+ - [UghuuuGamend.UserStats200Response](docs/UserStats200Response.md)
852
+ - [UghuuuGamend.UserStats200ResponseData](docs/UserStats200ResponseData.md)
853
+
854
+
855
+ ## Documentation for Authorization
856
+
857
+
858
+ Authentication schemes defined for the API:
859
+ ### authorization
860
+
861
+ - **Type**: Bearer authentication (JWT)
862
+