@wvdsh/api 0.1.15 → 0.1.16

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.
@@ -64,7 +64,7 @@ export type PublicApiType = {
64
64
  inviteToLobby: FunctionReference<"mutation", "public", {
65
65
  lobbyId: Id<"lobbies">;
66
66
  targetUserId: Id<"users">;
67
- }, Id<"notifications">>;
67
+ }, null>;
68
68
  joinLobby: FunctionReference<"mutation", "public", {
69
69
  lobbyId: Id<"lobbies">;
70
70
  }, {
@@ -165,8 +165,9 @@ export type PublicApiType = {
165
165
  score: number;
166
166
  timestamp: number;
167
167
  ugcId?: Id<"userGeneratedContent">;
168
+ userAvatarUrl?: string;
168
169
  userId: Id<"users">;
169
- username?: string;
170
+ username: string;
170
171
  }>;
171
172
  totalEntries: number;
172
173
  }>;
@@ -182,8 +183,9 @@ export type PublicApiType = {
182
183
  score: number;
183
184
  timestamp: number;
184
185
  ugcId?: Id<"userGeneratedContent">;
186
+ userAvatarUrl?: string;
185
187
  userId: Id<"users">;
186
- username?: string;
188
+ username: string;
187
189
  }>;
188
190
  totalEntries: number;
189
191
  }>;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@wvdsh/api",
3
- "version": "0.1.15",
3
+ "version": "0.1.16",
4
4
  "description": "Public API types and shared constants for the Wavedash platform",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",