rategame-shared 1.0.48 → 1.0.49
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.
- package/dist/schemas/game.d.ts +3 -0
- package/dist/schemas/game.js +1 -0
- package/package.json +1 -1
package/dist/schemas/game.d.ts
CHANGED
|
@@ -148,6 +148,7 @@ export declare const gameSchema: z.ZodObject<{
|
|
|
148
148
|
options: Record<number, number>;
|
|
149
149
|
};
|
|
150
150
|
}>;
|
|
151
|
+
userIds: z.ZodArray<z.ZodString, "many">;
|
|
151
152
|
}, "strip", z.ZodTypeAny, {
|
|
152
153
|
round: number;
|
|
153
154
|
status: "live" | "scheduled" | "final";
|
|
@@ -188,6 +189,7 @@ export declare const gameSchema: z.ZodObject<{
|
|
|
188
189
|
options: Record<number, number>;
|
|
189
190
|
};
|
|
190
191
|
};
|
|
192
|
+
userIds: string[];
|
|
191
193
|
id?: string | undefined;
|
|
192
194
|
}, {
|
|
193
195
|
round: number;
|
|
@@ -229,5 +231,6 @@ export declare const gameSchema: z.ZodObject<{
|
|
|
229
231
|
options: Record<number, number>;
|
|
230
232
|
};
|
|
231
233
|
};
|
|
234
|
+
userIds: string[];
|
|
232
235
|
id?: string | undefined;
|
|
233
236
|
}>;
|
package/dist/schemas/game.js
CHANGED