rategame-shared 1.1.320 → 1.1.321
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/pick.d.ts +3 -3
- package/dist/schemas/pick.js +1 -1
- package/package.json +1 -1
package/dist/schemas/pick.d.ts
CHANGED
|
@@ -63369,7 +63369,7 @@ export declare const gamePickUsersResponseDtoSchema: z.ZodObject<{
|
|
|
63369
63369
|
export declare const gamePickUsersPaginatedResponseDtoSchema: z.ZodObject<{
|
|
63370
63370
|
gameId: z.ZodString;
|
|
63371
63371
|
league: z.ZodUnion<[z.ZodLiteral<"nba">, z.ZodLiteral<"ncaa">, z.ZodLiteral<"nfl">, z.ZodLiteral<"nhl">, z.ZodLiteral<"mlb">, z.ZodLiteral<"cbb">, z.ZodLiteral<"cfb">, z.ZodLiteral<"epl">, z.ZodLiteral<"mls">, z.ZodLiteral<"wnba">, z.ZodLiteral<"cwc">, z.ZodLiteral<"global">]>;
|
|
63372
|
-
|
|
63372
|
+
teamId: z.ZodString;
|
|
63373
63373
|
users: z.ZodArray<z.ZodObject<Pick<{
|
|
63374
63374
|
id: z.ZodString;
|
|
63375
63375
|
email: z.ZodString;
|
|
@@ -64472,7 +64472,7 @@ export declare const gamePickUsersPaginatedResponseDtoSchema: z.ZodObject<{
|
|
|
64472
64472
|
hasMore: z.ZodBoolean;
|
|
64473
64473
|
}, "strip", z.ZodTypeAny, {
|
|
64474
64474
|
league: "global" | "nba" | "ncaa" | "nfl" | "nhl" | "mlb" | "cbb" | "cfb" | "epl" | "mls" | "wnba" | "cwc";
|
|
64475
|
-
|
|
64475
|
+
teamId: string;
|
|
64476
64476
|
gameId: string;
|
|
64477
64477
|
users: {
|
|
64478
64478
|
id: string;
|
|
@@ -64485,7 +64485,7 @@ export declare const gamePickUsersPaginatedResponseDtoSchema: z.ZodObject<{
|
|
|
64485
64485
|
hasMore: boolean;
|
|
64486
64486
|
}, {
|
|
64487
64487
|
league: "global" | "nba" | "ncaa" | "nfl" | "nhl" | "mlb" | "cbb" | "cfb" | "epl" | "mls" | "wnba" | "cwc";
|
|
64488
|
-
|
|
64488
|
+
teamId: string;
|
|
64489
64489
|
gameId: string;
|
|
64490
64490
|
users: {
|
|
64491
64491
|
id: string;
|
package/dist/schemas/pick.js
CHANGED
|
@@ -96,7 +96,7 @@ exports.gamePickUsersResponseDtoSchema = zod_1.z.object({
|
|
|
96
96
|
exports.gamePickUsersPaginatedResponseDtoSchema = zod_1.z.object({
|
|
97
97
|
gameId: zod_1.z.string(),
|
|
98
98
|
league: sharedTypes_1.leagueSlug,
|
|
99
|
-
|
|
99
|
+
teamId: zod_1.z.string(),
|
|
100
100
|
users: zod_1.z.array(user_1.reducedUserSchema),
|
|
101
101
|
nextCursor: zod_1.z.string().nullable(),
|
|
102
102
|
hasMore: zod_1.z.boolean(),
|