rategame-shared 1.1.235 → 1.1.236
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/chat.d.ts +150 -10
- package/dist/schemas/game.d.ts +600 -40
- package/dist/schemas/list.d.ts +150 -10
- package/dist/schemas/moderation.d.ts +120 -8
- package/dist/schemas/rating.d.ts +90 -6
- package/dist/schemas/user.d.ts +171 -10
- package/dist/schemas/user.js +10 -1
- package/package.json +1 -1
package/dist/schemas/game.d.ts
CHANGED
|
@@ -3969,12 +3969,12 @@ export declare const commonGameSchema: z.ZodObject<{
|
|
|
3969
3969
|
longest: z.ZodNumber;
|
|
3970
3970
|
updatedAt: z.ZodNumber;
|
|
3971
3971
|
}, "strip", z.ZodTypeAny, {
|
|
3972
|
-
updatedAt: number;
|
|
3973
3972
|
current: number;
|
|
3973
|
+
updatedAt: number;
|
|
3974
3974
|
longest: number;
|
|
3975
3975
|
}, {
|
|
3976
|
-
updatedAt: number;
|
|
3977
3976
|
current: number;
|
|
3977
|
+
updatedAt: number;
|
|
3978
3978
|
longest: number;
|
|
3979
3979
|
}>>;
|
|
3980
3980
|
milestones: z.ZodOptional<z.ZodObject<{
|
|
@@ -4081,6 +4081,22 @@ export declare const commonGameSchema: z.ZodObject<{
|
|
|
4081
4081
|
};
|
|
4082
4082
|
}>>;
|
|
4083
4083
|
currentTier: z.ZodOptional<z.ZodNumber>;
|
|
4084
|
+
oneTimeProgress: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
4085
|
+
current: z.ZodNumber;
|
|
4086
|
+
target: z.ZodNumber;
|
|
4087
|
+
label: z.ZodOptional<z.ZodString>;
|
|
4088
|
+
context: z.ZodOptional<z.ZodString>;
|
|
4089
|
+
}, "strip", z.ZodTypeAny, {
|
|
4090
|
+
target: number;
|
|
4091
|
+
current: number;
|
|
4092
|
+
label?: string | undefined;
|
|
4093
|
+
context?: string | undefined;
|
|
4094
|
+
}, {
|
|
4095
|
+
target: number;
|
|
4096
|
+
current: number;
|
|
4097
|
+
label?: string | undefined;
|
|
4098
|
+
context?: string | undefined;
|
|
4099
|
+
}>>>;
|
|
4084
4100
|
seen: z.ZodOptional<z.ZodBoolean>;
|
|
4085
4101
|
type: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"global">, z.ZodLiteral<"sport">, z.ZodLiteral<"league">]>>;
|
|
4086
4102
|
league: z.ZodOptional<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">]>>;
|
|
@@ -4106,6 +4122,12 @@ export declare const commonGameSchema: z.ZodObject<{
|
|
|
4106
4122
|
};
|
|
4107
4123
|
} | undefined;
|
|
4108
4124
|
currentTier?: number | undefined;
|
|
4125
|
+
oneTimeProgress?: Record<string, {
|
|
4126
|
+
target: number;
|
|
4127
|
+
current: number;
|
|
4128
|
+
label?: string | undefined;
|
|
4129
|
+
context?: string | undefined;
|
|
4130
|
+
}> | undefined;
|
|
4109
4131
|
seen?: boolean | undefined;
|
|
4110
4132
|
sport?: "basketball" | "football" | "soccer" | "baseball" | "hockey" | undefined;
|
|
4111
4133
|
league?: "global" | "nba" | "ncaa" | "nfl" | "nhl" | "mlb" | "cbb" | "cfb" | "epl" | "mls" | "wnba" | "cwc" | undefined;
|
|
@@ -4130,6 +4152,12 @@ export declare const commonGameSchema: z.ZodObject<{
|
|
|
4130
4152
|
};
|
|
4131
4153
|
} | undefined;
|
|
4132
4154
|
currentTier?: number | undefined;
|
|
4155
|
+
oneTimeProgress?: Record<string, {
|
|
4156
|
+
target: number;
|
|
4157
|
+
current: number;
|
|
4158
|
+
label?: string | undefined;
|
|
4159
|
+
context?: string | undefined;
|
|
4160
|
+
}> | undefined;
|
|
4133
4161
|
seen?: boolean | undefined;
|
|
4134
4162
|
sport?: "basketball" | "football" | "soccer" | "baseball" | "hockey" | undefined;
|
|
4135
4163
|
league?: "global" | "nba" | "ncaa" | "nfl" | "nhl" | "mlb" | "cbb" | "cfb" | "epl" | "mls" | "wnba" | "cwc" | undefined;
|
|
@@ -6301,12 +6329,12 @@ export declare const basketballGameSchema: z.ZodObject<z.objectUtil.extendShape<
|
|
|
6301
6329
|
longest: z.ZodNumber;
|
|
6302
6330
|
updatedAt: z.ZodNumber;
|
|
6303
6331
|
}, "strip", z.ZodTypeAny, {
|
|
6304
|
-
updatedAt: number;
|
|
6305
6332
|
current: number;
|
|
6333
|
+
updatedAt: number;
|
|
6306
6334
|
longest: number;
|
|
6307
6335
|
}, {
|
|
6308
|
-
updatedAt: number;
|
|
6309
6336
|
current: number;
|
|
6337
|
+
updatedAt: number;
|
|
6310
6338
|
longest: number;
|
|
6311
6339
|
}>>;
|
|
6312
6340
|
milestones: z.ZodOptional<z.ZodObject<{
|
|
@@ -6413,6 +6441,22 @@ export declare const basketballGameSchema: z.ZodObject<z.objectUtil.extendShape<
|
|
|
6413
6441
|
};
|
|
6414
6442
|
}>>;
|
|
6415
6443
|
currentTier: z.ZodOptional<z.ZodNumber>;
|
|
6444
|
+
oneTimeProgress: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
6445
|
+
current: z.ZodNumber;
|
|
6446
|
+
target: z.ZodNumber;
|
|
6447
|
+
label: z.ZodOptional<z.ZodString>;
|
|
6448
|
+
context: z.ZodOptional<z.ZodString>;
|
|
6449
|
+
}, "strip", z.ZodTypeAny, {
|
|
6450
|
+
target: number;
|
|
6451
|
+
current: number;
|
|
6452
|
+
label?: string | undefined;
|
|
6453
|
+
context?: string | undefined;
|
|
6454
|
+
}, {
|
|
6455
|
+
target: number;
|
|
6456
|
+
current: number;
|
|
6457
|
+
label?: string | undefined;
|
|
6458
|
+
context?: string | undefined;
|
|
6459
|
+
}>>>;
|
|
6416
6460
|
seen: z.ZodOptional<z.ZodBoolean>;
|
|
6417
6461
|
type: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"global">, z.ZodLiteral<"sport">, z.ZodLiteral<"league">]>>;
|
|
6418
6462
|
league: z.ZodOptional<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">]>>;
|
|
@@ -6438,6 +6482,12 @@ export declare const basketballGameSchema: z.ZodObject<z.objectUtil.extendShape<
|
|
|
6438
6482
|
};
|
|
6439
6483
|
} | undefined;
|
|
6440
6484
|
currentTier?: number | undefined;
|
|
6485
|
+
oneTimeProgress?: Record<string, {
|
|
6486
|
+
target: number;
|
|
6487
|
+
current: number;
|
|
6488
|
+
label?: string | undefined;
|
|
6489
|
+
context?: string | undefined;
|
|
6490
|
+
}> | undefined;
|
|
6441
6491
|
seen?: boolean | undefined;
|
|
6442
6492
|
sport?: "basketball" | "football" | "soccer" | "baseball" | "hockey" | undefined;
|
|
6443
6493
|
league?: "global" | "nba" | "ncaa" | "nfl" | "nhl" | "mlb" | "cbb" | "cfb" | "epl" | "mls" | "wnba" | "cwc" | undefined;
|
|
@@ -6462,6 +6512,12 @@ export declare const basketballGameSchema: z.ZodObject<z.objectUtil.extendShape<
|
|
|
6462
6512
|
};
|
|
6463
6513
|
} | undefined;
|
|
6464
6514
|
currentTier?: number | undefined;
|
|
6515
|
+
oneTimeProgress?: Record<string, {
|
|
6516
|
+
target: number;
|
|
6517
|
+
current: number;
|
|
6518
|
+
label?: string | undefined;
|
|
6519
|
+
context?: string | undefined;
|
|
6520
|
+
}> | undefined;
|
|
6465
6521
|
seen?: boolean | undefined;
|
|
6466
6522
|
sport?: "basketball" | "football" | "soccer" | "baseball" | "hockey" | undefined;
|
|
6467
6523
|
league?: "global" | "nba" | "ncaa" | "nfl" | "nhl" | "mlb" | "cbb" | "cfb" | "epl" | "mls" | "wnba" | "cwc" | undefined;
|
|
@@ -8694,12 +8750,12 @@ export declare const mlbGameSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
8694
8750
|
longest: z.ZodNumber;
|
|
8695
8751
|
updatedAt: z.ZodNumber;
|
|
8696
8752
|
}, "strip", z.ZodTypeAny, {
|
|
8697
|
-
updatedAt: number;
|
|
8698
8753
|
current: number;
|
|
8754
|
+
updatedAt: number;
|
|
8699
8755
|
longest: number;
|
|
8700
8756
|
}, {
|
|
8701
|
-
updatedAt: number;
|
|
8702
8757
|
current: number;
|
|
8758
|
+
updatedAt: number;
|
|
8703
8759
|
longest: number;
|
|
8704
8760
|
}>>;
|
|
8705
8761
|
milestones: z.ZodOptional<z.ZodObject<{
|
|
@@ -8806,6 +8862,22 @@ export declare const mlbGameSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
8806
8862
|
};
|
|
8807
8863
|
}>>;
|
|
8808
8864
|
currentTier: z.ZodOptional<z.ZodNumber>;
|
|
8865
|
+
oneTimeProgress: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
8866
|
+
current: z.ZodNumber;
|
|
8867
|
+
target: z.ZodNumber;
|
|
8868
|
+
label: z.ZodOptional<z.ZodString>;
|
|
8869
|
+
context: z.ZodOptional<z.ZodString>;
|
|
8870
|
+
}, "strip", z.ZodTypeAny, {
|
|
8871
|
+
target: number;
|
|
8872
|
+
current: number;
|
|
8873
|
+
label?: string | undefined;
|
|
8874
|
+
context?: string | undefined;
|
|
8875
|
+
}, {
|
|
8876
|
+
target: number;
|
|
8877
|
+
current: number;
|
|
8878
|
+
label?: string | undefined;
|
|
8879
|
+
context?: string | undefined;
|
|
8880
|
+
}>>>;
|
|
8809
8881
|
seen: z.ZodOptional<z.ZodBoolean>;
|
|
8810
8882
|
type: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"global">, z.ZodLiteral<"sport">, z.ZodLiteral<"league">]>>;
|
|
8811
8883
|
league: z.ZodOptional<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">]>>;
|
|
@@ -8831,6 +8903,12 @@ export declare const mlbGameSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
8831
8903
|
};
|
|
8832
8904
|
} | undefined;
|
|
8833
8905
|
currentTier?: number | undefined;
|
|
8906
|
+
oneTimeProgress?: Record<string, {
|
|
8907
|
+
target: number;
|
|
8908
|
+
current: number;
|
|
8909
|
+
label?: string | undefined;
|
|
8910
|
+
context?: string | undefined;
|
|
8911
|
+
}> | undefined;
|
|
8834
8912
|
seen?: boolean | undefined;
|
|
8835
8913
|
sport?: "basketball" | "football" | "soccer" | "baseball" | "hockey" | undefined;
|
|
8836
8914
|
league?: "global" | "nba" | "ncaa" | "nfl" | "nhl" | "mlb" | "cbb" | "cfb" | "epl" | "mls" | "wnba" | "cwc" | undefined;
|
|
@@ -8855,6 +8933,12 @@ export declare const mlbGameSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
8855
8933
|
};
|
|
8856
8934
|
} | undefined;
|
|
8857
8935
|
currentTier?: number | undefined;
|
|
8936
|
+
oneTimeProgress?: Record<string, {
|
|
8937
|
+
target: number;
|
|
8938
|
+
current: number;
|
|
8939
|
+
label?: string | undefined;
|
|
8940
|
+
context?: string | undefined;
|
|
8941
|
+
}> | undefined;
|
|
8858
8942
|
seen?: boolean | undefined;
|
|
8859
8943
|
sport?: "basketball" | "football" | "soccer" | "baseball" | "hockey" | undefined;
|
|
8860
8944
|
league?: "global" | "nba" | "ncaa" | "nfl" | "nhl" | "mlb" | "cbb" | "cfb" | "epl" | "mls" | "wnba" | "cwc" | undefined;
|
|
@@ -11095,12 +11179,12 @@ export declare const footballGameSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
11095
11179
|
longest: z.ZodNumber;
|
|
11096
11180
|
updatedAt: z.ZodNumber;
|
|
11097
11181
|
}, "strip", z.ZodTypeAny, {
|
|
11098
|
-
updatedAt: number;
|
|
11099
11182
|
current: number;
|
|
11183
|
+
updatedAt: number;
|
|
11100
11184
|
longest: number;
|
|
11101
11185
|
}, {
|
|
11102
|
-
updatedAt: number;
|
|
11103
11186
|
current: number;
|
|
11187
|
+
updatedAt: number;
|
|
11104
11188
|
longest: number;
|
|
11105
11189
|
}>>;
|
|
11106
11190
|
milestones: z.ZodOptional<z.ZodObject<{
|
|
@@ -11207,6 +11291,22 @@ export declare const footballGameSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
11207
11291
|
};
|
|
11208
11292
|
}>>;
|
|
11209
11293
|
currentTier: z.ZodOptional<z.ZodNumber>;
|
|
11294
|
+
oneTimeProgress: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
11295
|
+
current: z.ZodNumber;
|
|
11296
|
+
target: z.ZodNumber;
|
|
11297
|
+
label: z.ZodOptional<z.ZodString>;
|
|
11298
|
+
context: z.ZodOptional<z.ZodString>;
|
|
11299
|
+
}, "strip", z.ZodTypeAny, {
|
|
11300
|
+
target: number;
|
|
11301
|
+
current: number;
|
|
11302
|
+
label?: string | undefined;
|
|
11303
|
+
context?: string | undefined;
|
|
11304
|
+
}, {
|
|
11305
|
+
target: number;
|
|
11306
|
+
current: number;
|
|
11307
|
+
label?: string | undefined;
|
|
11308
|
+
context?: string | undefined;
|
|
11309
|
+
}>>>;
|
|
11210
11310
|
seen: z.ZodOptional<z.ZodBoolean>;
|
|
11211
11311
|
type: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"global">, z.ZodLiteral<"sport">, z.ZodLiteral<"league">]>>;
|
|
11212
11312
|
league: z.ZodOptional<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">]>>;
|
|
@@ -11232,6 +11332,12 @@ export declare const footballGameSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
11232
11332
|
};
|
|
11233
11333
|
} | undefined;
|
|
11234
11334
|
currentTier?: number | undefined;
|
|
11335
|
+
oneTimeProgress?: Record<string, {
|
|
11336
|
+
target: number;
|
|
11337
|
+
current: number;
|
|
11338
|
+
label?: string | undefined;
|
|
11339
|
+
context?: string | undefined;
|
|
11340
|
+
}> | undefined;
|
|
11235
11341
|
seen?: boolean | undefined;
|
|
11236
11342
|
sport?: "basketball" | "football" | "soccer" | "baseball" | "hockey" | undefined;
|
|
11237
11343
|
league?: "global" | "nba" | "ncaa" | "nfl" | "nhl" | "mlb" | "cbb" | "cfb" | "epl" | "mls" | "wnba" | "cwc" | undefined;
|
|
@@ -11256,6 +11362,12 @@ export declare const footballGameSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
11256
11362
|
};
|
|
11257
11363
|
} | undefined;
|
|
11258
11364
|
currentTier?: number | undefined;
|
|
11365
|
+
oneTimeProgress?: Record<string, {
|
|
11366
|
+
target: number;
|
|
11367
|
+
current: number;
|
|
11368
|
+
label?: string | undefined;
|
|
11369
|
+
context?: string | undefined;
|
|
11370
|
+
}> | undefined;
|
|
11259
11371
|
seen?: boolean | undefined;
|
|
11260
11372
|
sport?: "basketball" | "football" | "soccer" | "baseball" | "hockey" | undefined;
|
|
11261
11373
|
league?: "global" | "nba" | "ncaa" | "nfl" | "nhl" | "mlb" | "cbb" | "cfb" | "epl" | "mls" | "wnba" | "cwc" | undefined;
|
|
@@ -13581,12 +13693,12 @@ export declare const nflGameSchema: z.ZodObject<z.objectUtil.extendShape<z.objec
|
|
|
13581
13693
|
longest: z.ZodNumber;
|
|
13582
13694
|
updatedAt: z.ZodNumber;
|
|
13583
13695
|
}, "strip", z.ZodTypeAny, {
|
|
13584
|
-
updatedAt: number;
|
|
13585
13696
|
current: number;
|
|
13697
|
+
updatedAt: number;
|
|
13586
13698
|
longest: number;
|
|
13587
13699
|
}, {
|
|
13588
|
-
updatedAt: number;
|
|
13589
13700
|
current: number;
|
|
13701
|
+
updatedAt: number;
|
|
13590
13702
|
longest: number;
|
|
13591
13703
|
}>>;
|
|
13592
13704
|
milestones: z.ZodOptional<z.ZodObject<{
|
|
@@ -13693,6 +13805,22 @@ export declare const nflGameSchema: z.ZodObject<z.objectUtil.extendShape<z.objec
|
|
|
13693
13805
|
};
|
|
13694
13806
|
}>>;
|
|
13695
13807
|
currentTier: z.ZodOptional<z.ZodNumber>;
|
|
13808
|
+
oneTimeProgress: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
13809
|
+
current: z.ZodNumber;
|
|
13810
|
+
target: z.ZodNumber;
|
|
13811
|
+
label: z.ZodOptional<z.ZodString>;
|
|
13812
|
+
context: z.ZodOptional<z.ZodString>;
|
|
13813
|
+
}, "strip", z.ZodTypeAny, {
|
|
13814
|
+
target: number;
|
|
13815
|
+
current: number;
|
|
13816
|
+
label?: string | undefined;
|
|
13817
|
+
context?: string | undefined;
|
|
13818
|
+
}, {
|
|
13819
|
+
target: number;
|
|
13820
|
+
current: number;
|
|
13821
|
+
label?: string | undefined;
|
|
13822
|
+
context?: string | undefined;
|
|
13823
|
+
}>>>;
|
|
13696
13824
|
seen: z.ZodOptional<z.ZodBoolean>;
|
|
13697
13825
|
type: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"global">, z.ZodLiteral<"sport">, z.ZodLiteral<"league">]>>;
|
|
13698
13826
|
league: z.ZodOptional<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">]>>;
|
|
@@ -13718,6 +13846,12 @@ export declare const nflGameSchema: z.ZodObject<z.objectUtil.extendShape<z.objec
|
|
|
13718
13846
|
};
|
|
13719
13847
|
} | undefined;
|
|
13720
13848
|
currentTier?: number | undefined;
|
|
13849
|
+
oneTimeProgress?: Record<string, {
|
|
13850
|
+
target: number;
|
|
13851
|
+
current: number;
|
|
13852
|
+
label?: string | undefined;
|
|
13853
|
+
context?: string | undefined;
|
|
13854
|
+
}> | undefined;
|
|
13721
13855
|
seen?: boolean | undefined;
|
|
13722
13856
|
sport?: "basketball" | "football" | "soccer" | "baseball" | "hockey" | undefined;
|
|
13723
13857
|
league?: "global" | "nba" | "ncaa" | "nfl" | "nhl" | "mlb" | "cbb" | "cfb" | "epl" | "mls" | "wnba" | "cwc" | undefined;
|
|
@@ -13742,6 +13876,12 @@ export declare const nflGameSchema: z.ZodObject<z.objectUtil.extendShape<z.objec
|
|
|
13742
13876
|
};
|
|
13743
13877
|
} | undefined;
|
|
13744
13878
|
currentTier?: number | undefined;
|
|
13879
|
+
oneTimeProgress?: Record<string, {
|
|
13880
|
+
target: number;
|
|
13881
|
+
current: number;
|
|
13882
|
+
label?: string | undefined;
|
|
13883
|
+
context?: string | undefined;
|
|
13884
|
+
}> | undefined;
|
|
13745
13885
|
seen?: boolean | undefined;
|
|
13746
13886
|
sport?: "basketball" | "football" | "soccer" | "baseball" | "hockey" | undefined;
|
|
13747
13887
|
league?: "global" | "nba" | "ncaa" | "nfl" | "nhl" | "mlb" | "cbb" | "cfb" | "epl" | "mls" | "wnba" | "cwc" | undefined;
|
|
@@ -16038,12 +16178,12 @@ export declare const cfbGameSchema: z.ZodObject<z.objectUtil.extendShape<z.objec
|
|
|
16038
16178
|
longest: z.ZodNumber;
|
|
16039
16179
|
updatedAt: z.ZodNumber;
|
|
16040
16180
|
}, "strip", z.ZodTypeAny, {
|
|
16041
|
-
updatedAt: number;
|
|
16042
16181
|
current: number;
|
|
16182
|
+
updatedAt: number;
|
|
16043
16183
|
longest: number;
|
|
16044
16184
|
}, {
|
|
16045
|
-
updatedAt: number;
|
|
16046
16185
|
current: number;
|
|
16186
|
+
updatedAt: number;
|
|
16047
16187
|
longest: number;
|
|
16048
16188
|
}>>;
|
|
16049
16189
|
milestones: z.ZodOptional<z.ZodObject<{
|
|
@@ -16150,6 +16290,22 @@ export declare const cfbGameSchema: z.ZodObject<z.objectUtil.extendShape<z.objec
|
|
|
16150
16290
|
};
|
|
16151
16291
|
}>>;
|
|
16152
16292
|
currentTier: z.ZodOptional<z.ZodNumber>;
|
|
16293
|
+
oneTimeProgress: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
16294
|
+
current: z.ZodNumber;
|
|
16295
|
+
target: z.ZodNumber;
|
|
16296
|
+
label: z.ZodOptional<z.ZodString>;
|
|
16297
|
+
context: z.ZodOptional<z.ZodString>;
|
|
16298
|
+
}, "strip", z.ZodTypeAny, {
|
|
16299
|
+
target: number;
|
|
16300
|
+
current: number;
|
|
16301
|
+
label?: string | undefined;
|
|
16302
|
+
context?: string | undefined;
|
|
16303
|
+
}, {
|
|
16304
|
+
target: number;
|
|
16305
|
+
current: number;
|
|
16306
|
+
label?: string | undefined;
|
|
16307
|
+
context?: string | undefined;
|
|
16308
|
+
}>>>;
|
|
16153
16309
|
seen: z.ZodOptional<z.ZodBoolean>;
|
|
16154
16310
|
type: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"global">, z.ZodLiteral<"sport">, z.ZodLiteral<"league">]>>;
|
|
16155
16311
|
league: z.ZodOptional<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">]>>;
|
|
@@ -16175,6 +16331,12 @@ export declare const cfbGameSchema: z.ZodObject<z.objectUtil.extendShape<z.objec
|
|
|
16175
16331
|
};
|
|
16176
16332
|
} | undefined;
|
|
16177
16333
|
currentTier?: number | undefined;
|
|
16334
|
+
oneTimeProgress?: Record<string, {
|
|
16335
|
+
target: number;
|
|
16336
|
+
current: number;
|
|
16337
|
+
label?: string | undefined;
|
|
16338
|
+
context?: string | undefined;
|
|
16339
|
+
}> | undefined;
|
|
16178
16340
|
seen?: boolean | undefined;
|
|
16179
16341
|
sport?: "basketball" | "football" | "soccer" | "baseball" | "hockey" | undefined;
|
|
16180
16342
|
league?: "global" | "nba" | "ncaa" | "nfl" | "nhl" | "mlb" | "cbb" | "cfb" | "epl" | "mls" | "wnba" | "cwc" | undefined;
|
|
@@ -16199,6 +16361,12 @@ export declare const cfbGameSchema: z.ZodObject<z.objectUtil.extendShape<z.objec
|
|
|
16199
16361
|
};
|
|
16200
16362
|
} | undefined;
|
|
16201
16363
|
currentTier?: number | undefined;
|
|
16364
|
+
oneTimeProgress?: Record<string, {
|
|
16365
|
+
target: number;
|
|
16366
|
+
current: number;
|
|
16367
|
+
label?: string | undefined;
|
|
16368
|
+
context?: string | undefined;
|
|
16369
|
+
}> | undefined;
|
|
16202
16370
|
seen?: boolean | undefined;
|
|
16203
16371
|
sport?: "basketball" | "football" | "soccer" | "baseball" | "hockey" | undefined;
|
|
16204
16372
|
league?: "global" | "nba" | "ncaa" | "nfl" | "nhl" | "mlb" | "cbb" | "cfb" | "epl" | "mls" | "wnba" | "cwc" | undefined;
|
|
@@ -18477,12 +18645,12 @@ export declare const nhlGameSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
18477
18645
|
longest: z.ZodNumber;
|
|
18478
18646
|
updatedAt: z.ZodNumber;
|
|
18479
18647
|
}, "strip", z.ZodTypeAny, {
|
|
18480
|
-
updatedAt: number;
|
|
18481
18648
|
current: number;
|
|
18649
|
+
updatedAt: number;
|
|
18482
18650
|
longest: number;
|
|
18483
18651
|
}, {
|
|
18484
|
-
updatedAt: number;
|
|
18485
18652
|
current: number;
|
|
18653
|
+
updatedAt: number;
|
|
18486
18654
|
longest: number;
|
|
18487
18655
|
}>>;
|
|
18488
18656
|
milestones: z.ZodOptional<z.ZodObject<{
|
|
@@ -18589,6 +18757,22 @@ export declare const nhlGameSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
18589
18757
|
};
|
|
18590
18758
|
}>>;
|
|
18591
18759
|
currentTier: z.ZodOptional<z.ZodNumber>;
|
|
18760
|
+
oneTimeProgress: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
18761
|
+
current: z.ZodNumber;
|
|
18762
|
+
target: z.ZodNumber;
|
|
18763
|
+
label: z.ZodOptional<z.ZodString>;
|
|
18764
|
+
context: z.ZodOptional<z.ZodString>;
|
|
18765
|
+
}, "strip", z.ZodTypeAny, {
|
|
18766
|
+
target: number;
|
|
18767
|
+
current: number;
|
|
18768
|
+
label?: string | undefined;
|
|
18769
|
+
context?: string | undefined;
|
|
18770
|
+
}, {
|
|
18771
|
+
target: number;
|
|
18772
|
+
current: number;
|
|
18773
|
+
label?: string | undefined;
|
|
18774
|
+
context?: string | undefined;
|
|
18775
|
+
}>>>;
|
|
18592
18776
|
seen: z.ZodOptional<z.ZodBoolean>;
|
|
18593
18777
|
type: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"global">, z.ZodLiteral<"sport">, z.ZodLiteral<"league">]>>;
|
|
18594
18778
|
league: z.ZodOptional<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">]>>;
|
|
@@ -18614,6 +18798,12 @@ export declare const nhlGameSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
18614
18798
|
};
|
|
18615
18799
|
} | undefined;
|
|
18616
18800
|
currentTier?: number | undefined;
|
|
18801
|
+
oneTimeProgress?: Record<string, {
|
|
18802
|
+
target: number;
|
|
18803
|
+
current: number;
|
|
18804
|
+
label?: string | undefined;
|
|
18805
|
+
context?: string | undefined;
|
|
18806
|
+
}> | undefined;
|
|
18617
18807
|
seen?: boolean | undefined;
|
|
18618
18808
|
sport?: "basketball" | "football" | "soccer" | "baseball" | "hockey" | undefined;
|
|
18619
18809
|
league?: "global" | "nba" | "ncaa" | "nfl" | "nhl" | "mlb" | "cbb" | "cfb" | "epl" | "mls" | "wnba" | "cwc" | undefined;
|
|
@@ -18638,6 +18828,12 @@ export declare const nhlGameSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
18638
18828
|
};
|
|
18639
18829
|
} | undefined;
|
|
18640
18830
|
currentTier?: number | undefined;
|
|
18831
|
+
oneTimeProgress?: Record<string, {
|
|
18832
|
+
target: number;
|
|
18833
|
+
current: number;
|
|
18834
|
+
label?: string | undefined;
|
|
18835
|
+
context?: string | undefined;
|
|
18836
|
+
}> | undefined;
|
|
18641
18837
|
seen?: boolean | undefined;
|
|
18642
18838
|
sport?: "basketball" | "football" | "soccer" | "baseball" | "hockey" | undefined;
|
|
18643
18839
|
league?: "global" | "nba" | "ncaa" | "nfl" | "nhl" | "mlb" | "cbb" | "cfb" | "epl" | "mls" | "wnba" | "cwc" | undefined;
|
|
@@ -20829,12 +21025,12 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
|
|
|
20829
21025
|
longest: z.ZodNumber;
|
|
20830
21026
|
updatedAt: z.ZodNumber;
|
|
20831
21027
|
}, "strip", z.ZodTypeAny, {
|
|
20832
|
-
updatedAt: number;
|
|
20833
21028
|
current: number;
|
|
21029
|
+
updatedAt: number;
|
|
20834
21030
|
longest: number;
|
|
20835
21031
|
}, {
|
|
20836
|
-
updatedAt: number;
|
|
20837
21032
|
current: number;
|
|
21033
|
+
updatedAt: number;
|
|
20838
21034
|
longest: number;
|
|
20839
21035
|
}>>;
|
|
20840
21036
|
milestones: z.ZodOptional<z.ZodObject<{
|
|
@@ -20941,6 +21137,22 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
|
|
|
20941
21137
|
};
|
|
20942
21138
|
}>>;
|
|
20943
21139
|
currentTier: z.ZodOptional<z.ZodNumber>;
|
|
21140
|
+
oneTimeProgress: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
21141
|
+
current: z.ZodNumber;
|
|
21142
|
+
target: z.ZodNumber;
|
|
21143
|
+
label: z.ZodOptional<z.ZodString>;
|
|
21144
|
+
context: z.ZodOptional<z.ZodString>;
|
|
21145
|
+
}, "strip", z.ZodTypeAny, {
|
|
21146
|
+
target: number;
|
|
21147
|
+
current: number;
|
|
21148
|
+
label?: string | undefined;
|
|
21149
|
+
context?: string | undefined;
|
|
21150
|
+
}, {
|
|
21151
|
+
target: number;
|
|
21152
|
+
current: number;
|
|
21153
|
+
label?: string | undefined;
|
|
21154
|
+
context?: string | undefined;
|
|
21155
|
+
}>>>;
|
|
20944
21156
|
seen: z.ZodOptional<z.ZodBoolean>;
|
|
20945
21157
|
type: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"global">, z.ZodLiteral<"sport">, z.ZodLiteral<"league">]>>;
|
|
20946
21158
|
league: z.ZodOptional<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">]>>;
|
|
@@ -20966,6 +21178,12 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
|
|
|
20966
21178
|
};
|
|
20967
21179
|
} | undefined;
|
|
20968
21180
|
currentTier?: number | undefined;
|
|
21181
|
+
oneTimeProgress?: Record<string, {
|
|
21182
|
+
target: number;
|
|
21183
|
+
current: number;
|
|
21184
|
+
label?: string | undefined;
|
|
21185
|
+
context?: string | undefined;
|
|
21186
|
+
}> | undefined;
|
|
20969
21187
|
seen?: boolean | undefined;
|
|
20970
21188
|
sport?: "basketball" | "football" | "soccer" | "baseball" | "hockey" | undefined;
|
|
20971
21189
|
league?: "global" | "nba" | "ncaa" | "nfl" | "nhl" | "mlb" | "cbb" | "cfb" | "epl" | "mls" | "wnba" | "cwc" | undefined;
|
|
@@ -20990,6 +21208,12 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
|
|
|
20990
21208
|
};
|
|
20991
21209
|
} | undefined;
|
|
20992
21210
|
currentTier?: number | undefined;
|
|
21211
|
+
oneTimeProgress?: Record<string, {
|
|
21212
|
+
target: number;
|
|
21213
|
+
current: number;
|
|
21214
|
+
label?: string | undefined;
|
|
21215
|
+
context?: string | undefined;
|
|
21216
|
+
}> | undefined;
|
|
20993
21217
|
seen?: boolean | undefined;
|
|
20994
21218
|
sport?: "basketball" | "football" | "soccer" | "baseball" | "hockey" | undefined;
|
|
20995
21219
|
league?: "global" | "nba" | "ncaa" | "nfl" | "nhl" | "mlb" | "cbb" | "cfb" | "epl" | "mls" | "wnba" | "cwc" | undefined;
|
|
@@ -23208,12 +23432,12 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
|
|
|
23208
23432
|
longest: z.ZodNumber;
|
|
23209
23433
|
updatedAt: z.ZodNumber;
|
|
23210
23434
|
}, "strip", z.ZodTypeAny, {
|
|
23211
|
-
updatedAt: number;
|
|
23212
23435
|
current: number;
|
|
23436
|
+
updatedAt: number;
|
|
23213
23437
|
longest: number;
|
|
23214
23438
|
}, {
|
|
23215
|
-
updatedAt: number;
|
|
23216
23439
|
current: number;
|
|
23440
|
+
updatedAt: number;
|
|
23217
23441
|
longest: number;
|
|
23218
23442
|
}>>;
|
|
23219
23443
|
milestones: z.ZodOptional<z.ZodObject<{
|
|
@@ -23320,6 +23544,22 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
|
|
|
23320
23544
|
};
|
|
23321
23545
|
}>>;
|
|
23322
23546
|
currentTier: z.ZodOptional<z.ZodNumber>;
|
|
23547
|
+
oneTimeProgress: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
23548
|
+
current: z.ZodNumber;
|
|
23549
|
+
target: z.ZodNumber;
|
|
23550
|
+
label: z.ZodOptional<z.ZodString>;
|
|
23551
|
+
context: z.ZodOptional<z.ZodString>;
|
|
23552
|
+
}, "strip", z.ZodTypeAny, {
|
|
23553
|
+
target: number;
|
|
23554
|
+
current: number;
|
|
23555
|
+
label?: string | undefined;
|
|
23556
|
+
context?: string | undefined;
|
|
23557
|
+
}, {
|
|
23558
|
+
target: number;
|
|
23559
|
+
current: number;
|
|
23560
|
+
label?: string | undefined;
|
|
23561
|
+
context?: string | undefined;
|
|
23562
|
+
}>>>;
|
|
23323
23563
|
seen: z.ZodOptional<z.ZodBoolean>;
|
|
23324
23564
|
type: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"global">, z.ZodLiteral<"sport">, z.ZodLiteral<"league">]>>;
|
|
23325
23565
|
league: z.ZodOptional<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">]>>;
|
|
@@ -23345,6 +23585,12 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
|
|
|
23345
23585
|
};
|
|
23346
23586
|
} | undefined;
|
|
23347
23587
|
currentTier?: number | undefined;
|
|
23588
|
+
oneTimeProgress?: Record<string, {
|
|
23589
|
+
target: number;
|
|
23590
|
+
current: number;
|
|
23591
|
+
label?: string | undefined;
|
|
23592
|
+
context?: string | undefined;
|
|
23593
|
+
}> | undefined;
|
|
23348
23594
|
seen?: boolean | undefined;
|
|
23349
23595
|
sport?: "basketball" | "football" | "soccer" | "baseball" | "hockey" | undefined;
|
|
23350
23596
|
league?: "global" | "nba" | "ncaa" | "nfl" | "nhl" | "mlb" | "cbb" | "cfb" | "epl" | "mls" | "wnba" | "cwc" | undefined;
|
|
@@ -23369,6 +23615,12 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
|
|
|
23369
23615
|
};
|
|
23370
23616
|
} | undefined;
|
|
23371
23617
|
currentTier?: number | undefined;
|
|
23618
|
+
oneTimeProgress?: Record<string, {
|
|
23619
|
+
target: number;
|
|
23620
|
+
current: number;
|
|
23621
|
+
label?: string | undefined;
|
|
23622
|
+
context?: string | undefined;
|
|
23623
|
+
}> | undefined;
|
|
23372
23624
|
seen?: boolean | undefined;
|
|
23373
23625
|
sport?: "basketball" | "football" | "soccer" | "baseball" | "hockey" | undefined;
|
|
23374
23626
|
league?: "global" | "nba" | "ncaa" | "nfl" | "nhl" | "mlb" | "cbb" | "cfb" | "epl" | "mls" | "wnba" | "cwc" | undefined;
|
|
@@ -25608,12 +25860,12 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
|
|
|
25608
25860
|
longest: z.ZodNumber;
|
|
25609
25861
|
updatedAt: z.ZodNumber;
|
|
25610
25862
|
}, "strip", z.ZodTypeAny, {
|
|
25611
|
-
updatedAt: number;
|
|
25612
25863
|
current: number;
|
|
25864
|
+
updatedAt: number;
|
|
25613
25865
|
longest: number;
|
|
25614
25866
|
}, {
|
|
25615
|
-
updatedAt: number;
|
|
25616
25867
|
current: number;
|
|
25868
|
+
updatedAt: number;
|
|
25617
25869
|
longest: number;
|
|
25618
25870
|
}>>;
|
|
25619
25871
|
milestones: z.ZodOptional<z.ZodObject<{
|
|
@@ -25720,6 +25972,22 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
|
|
|
25720
25972
|
};
|
|
25721
25973
|
}>>;
|
|
25722
25974
|
currentTier: z.ZodOptional<z.ZodNumber>;
|
|
25975
|
+
oneTimeProgress: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
25976
|
+
current: z.ZodNumber;
|
|
25977
|
+
target: z.ZodNumber;
|
|
25978
|
+
label: z.ZodOptional<z.ZodString>;
|
|
25979
|
+
context: z.ZodOptional<z.ZodString>;
|
|
25980
|
+
}, "strip", z.ZodTypeAny, {
|
|
25981
|
+
target: number;
|
|
25982
|
+
current: number;
|
|
25983
|
+
label?: string | undefined;
|
|
25984
|
+
context?: string | undefined;
|
|
25985
|
+
}, {
|
|
25986
|
+
target: number;
|
|
25987
|
+
current: number;
|
|
25988
|
+
label?: string | undefined;
|
|
25989
|
+
context?: string | undefined;
|
|
25990
|
+
}>>>;
|
|
25723
25991
|
seen: z.ZodOptional<z.ZodBoolean>;
|
|
25724
25992
|
type: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"global">, z.ZodLiteral<"sport">, z.ZodLiteral<"league">]>>;
|
|
25725
25993
|
league: z.ZodOptional<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">]>>;
|
|
@@ -25745,6 +26013,12 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
|
|
|
25745
26013
|
};
|
|
25746
26014
|
} | undefined;
|
|
25747
26015
|
currentTier?: number | undefined;
|
|
26016
|
+
oneTimeProgress?: Record<string, {
|
|
26017
|
+
target: number;
|
|
26018
|
+
current: number;
|
|
26019
|
+
label?: string | undefined;
|
|
26020
|
+
context?: string | undefined;
|
|
26021
|
+
}> | undefined;
|
|
25748
26022
|
seen?: boolean | undefined;
|
|
25749
26023
|
sport?: "basketball" | "football" | "soccer" | "baseball" | "hockey" | undefined;
|
|
25750
26024
|
league?: "global" | "nba" | "ncaa" | "nfl" | "nhl" | "mlb" | "cbb" | "cfb" | "epl" | "mls" | "wnba" | "cwc" | undefined;
|
|
@@ -25769,6 +26043,12 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
|
|
|
25769
26043
|
};
|
|
25770
26044
|
} | undefined;
|
|
25771
26045
|
currentTier?: number | undefined;
|
|
26046
|
+
oneTimeProgress?: Record<string, {
|
|
26047
|
+
target: number;
|
|
26048
|
+
current: number;
|
|
26049
|
+
label?: string | undefined;
|
|
26050
|
+
context?: string | undefined;
|
|
26051
|
+
}> | undefined;
|
|
25772
26052
|
seen?: boolean | undefined;
|
|
25773
26053
|
sport?: "basketball" | "football" | "soccer" | "baseball" | "hockey" | undefined;
|
|
25774
26054
|
league?: "global" | "nba" | "ncaa" | "nfl" | "nhl" | "mlb" | "cbb" | "cfb" | "epl" | "mls" | "wnba" | "cwc" | undefined;
|
|
@@ -28093,12 +28373,12 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
|
|
|
28093
28373
|
longest: z.ZodNumber;
|
|
28094
28374
|
updatedAt: z.ZodNumber;
|
|
28095
28375
|
}, "strip", z.ZodTypeAny, {
|
|
28096
|
-
updatedAt: number;
|
|
28097
28376
|
current: number;
|
|
28377
|
+
updatedAt: number;
|
|
28098
28378
|
longest: number;
|
|
28099
28379
|
}, {
|
|
28100
|
-
updatedAt: number;
|
|
28101
28380
|
current: number;
|
|
28381
|
+
updatedAt: number;
|
|
28102
28382
|
longest: number;
|
|
28103
28383
|
}>>;
|
|
28104
28384
|
milestones: z.ZodOptional<z.ZodObject<{
|
|
@@ -28205,6 +28485,22 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
|
|
|
28205
28485
|
};
|
|
28206
28486
|
}>>;
|
|
28207
28487
|
currentTier: z.ZodOptional<z.ZodNumber>;
|
|
28488
|
+
oneTimeProgress: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
28489
|
+
current: z.ZodNumber;
|
|
28490
|
+
target: z.ZodNumber;
|
|
28491
|
+
label: z.ZodOptional<z.ZodString>;
|
|
28492
|
+
context: z.ZodOptional<z.ZodString>;
|
|
28493
|
+
}, "strip", z.ZodTypeAny, {
|
|
28494
|
+
target: number;
|
|
28495
|
+
current: number;
|
|
28496
|
+
label?: string | undefined;
|
|
28497
|
+
context?: string | undefined;
|
|
28498
|
+
}, {
|
|
28499
|
+
target: number;
|
|
28500
|
+
current: number;
|
|
28501
|
+
label?: string | undefined;
|
|
28502
|
+
context?: string | undefined;
|
|
28503
|
+
}>>>;
|
|
28208
28504
|
seen: z.ZodOptional<z.ZodBoolean>;
|
|
28209
28505
|
type: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"global">, z.ZodLiteral<"sport">, z.ZodLiteral<"league">]>>;
|
|
28210
28506
|
league: z.ZodOptional<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">]>>;
|
|
@@ -28230,6 +28526,12 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
|
|
|
28230
28526
|
};
|
|
28231
28527
|
} | undefined;
|
|
28232
28528
|
currentTier?: number | undefined;
|
|
28529
|
+
oneTimeProgress?: Record<string, {
|
|
28530
|
+
target: number;
|
|
28531
|
+
current: number;
|
|
28532
|
+
label?: string | undefined;
|
|
28533
|
+
context?: string | undefined;
|
|
28534
|
+
}> | undefined;
|
|
28233
28535
|
seen?: boolean | undefined;
|
|
28234
28536
|
sport?: "basketball" | "football" | "soccer" | "baseball" | "hockey" | undefined;
|
|
28235
28537
|
league?: "global" | "nba" | "ncaa" | "nfl" | "nhl" | "mlb" | "cbb" | "cfb" | "epl" | "mls" | "wnba" | "cwc" | undefined;
|
|
@@ -28254,6 +28556,12 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
|
|
|
28254
28556
|
};
|
|
28255
28557
|
} | undefined;
|
|
28256
28558
|
currentTier?: number | undefined;
|
|
28559
|
+
oneTimeProgress?: Record<string, {
|
|
28560
|
+
target: number;
|
|
28561
|
+
current: number;
|
|
28562
|
+
label?: string | undefined;
|
|
28563
|
+
context?: string | undefined;
|
|
28564
|
+
}> | undefined;
|
|
28257
28565
|
seen?: boolean | undefined;
|
|
28258
28566
|
sport?: "basketball" | "football" | "soccer" | "baseball" | "hockey" | undefined;
|
|
28259
28567
|
league?: "global" | "nba" | "ncaa" | "nfl" | "nhl" | "mlb" | "cbb" | "cfb" | "epl" | "mls" | "wnba" | "cwc" | undefined;
|
|
@@ -30549,12 +30857,12 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
|
|
|
30549
30857
|
longest: z.ZodNumber;
|
|
30550
30858
|
updatedAt: z.ZodNumber;
|
|
30551
30859
|
}, "strip", z.ZodTypeAny, {
|
|
30552
|
-
updatedAt: number;
|
|
30553
30860
|
current: number;
|
|
30861
|
+
updatedAt: number;
|
|
30554
30862
|
longest: number;
|
|
30555
30863
|
}, {
|
|
30556
|
-
updatedAt: number;
|
|
30557
30864
|
current: number;
|
|
30865
|
+
updatedAt: number;
|
|
30558
30866
|
longest: number;
|
|
30559
30867
|
}>>;
|
|
30560
30868
|
milestones: z.ZodOptional<z.ZodObject<{
|
|
@@ -30661,6 +30969,22 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
|
|
|
30661
30969
|
};
|
|
30662
30970
|
}>>;
|
|
30663
30971
|
currentTier: z.ZodOptional<z.ZodNumber>;
|
|
30972
|
+
oneTimeProgress: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
30973
|
+
current: z.ZodNumber;
|
|
30974
|
+
target: z.ZodNumber;
|
|
30975
|
+
label: z.ZodOptional<z.ZodString>;
|
|
30976
|
+
context: z.ZodOptional<z.ZodString>;
|
|
30977
|
+
}, "strip", z.ZodTypeAny, {
|
|
30978
|
+
target: number;
|
|
30979
|
+
current: number;
|
|
30980
|
+
label?: string | undefined;
|
|
30981
|
+
context?: string | undefined;
|
|
30982
|
+
}, {
|
|
30983
|
+
target: number;
|
|
30984
|
+
current: number;
|
|
30985
|
+
label?: string | undefined;
|
|
30986
|
+
context?: string | undefined;
|
|
30987
|
+
}>>>;
|
|
30664
30988
|
seen: z.ZodOptional<z.ZodBoolean>;
|
|
30665
30989
|
type: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"global">, z.ZodLiteral<"sport">, z.ZodLiteral<"league">]>>;
|
|
30666
30990
|
league: z.ZodOptional<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">]>>;
|
|
@@ -30686,6 +31010,12 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
|
|
|
30686
31010
|
};
|
|
30687
31011
|
} | undefined;
|
|
30688
31012
|
currentTier?: number | undefined;
|
|
31013
|
+
oneTimeProgress?: Record<string, {
|
|
31014
|
+
target: number;
|
|
31015
|
+
current: number;
|
|
31016
|
+
label?: string | undefined;
|
|
31017
|
+
context?: string | undefined;
|
|
31018
|
+
}> | undefined;
|
|
30689
31019
|
seen?: boolean | undefined;
|
|
30690
31020
|
sport?: "basketball" | "football" | "soccer" | "baseball" | "hockey" | undefined;
|
|
30691
31021
|
league?: "global" | "nba" | "ncaa" | "nfl" | "nhl" | "mlb" | "cbb" | "cfb" | "epl" | "mls" | "wnba" | "cwc" | undefined;
|
|
@@ -30710,6 +31040,12 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
|
|
|
30710
31040
|
};
|
|
30711
31041
|
} | undefined;
|
|
30712
31042
|
currentTier?: number | undefined;
|
|
31043
|
+
oneTimeProgress?: Record<string, {
|
|
31044
|
+
target: number;
|
|
31045
|
+
current: number;
|
|
31046
|
+
label?: string | undefined;
|
|
31047
|
+
context?: string | undefined;
|
|
31048
|
+
}> | undefined;
|
|
30713
31049
|
seen?: boolean | undefined;
|
|
30714
31050
|
sport?: "basketball" | "football" | "soccer" | "baseball" | "hockey" | undefined;
|
|
30715
31051
|
league?: "global" | "nba" | "ncaa" | "nfl" | "nhl" | "mlb" | "cbb" | "cfb" | "epl" | "mls" | "wnba" | "cwc" | undefined;
|
|
@@ -32987,12 +33323,12 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
|
|
|
32987
33323
|
longest: z.ZodNumber;
|
|
32988
33324
|
updatedAt: z.ZodNumber;
|
|
32989
33325
|
}, "strip", z.ZodTypeAny, {
|
|
32990
|
-
updatedAt: number;
|
|
32991
33326
|
current: number;
|
|
33327
|
+
updatedAt: number;
|
|
32992
33328
|
longest: number;
|
|
32993
33329
|
}, {
|
|
32994
|
-
updatedAt: number;
|
|
32995
33330
|
current: number;
|
|
33331
|
+
updatedAt: number;
|
|
32996
33332
|
longest: number;
|
|
32997
33333
|
}>>;
|
|
32998
33334
|
milestones: z.ZodOptional<z.ZodObject<{
|
|
@@ -33099,6 +33435,22 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
|
|
|
33099
33435
|
};
|
|
33100
33436
|
}>>;
|
|
33101
33437
|
currentTier: z.ZodOptional<z.ZodNumber>;
|
|
33438
|
+
oneTimeProgress: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
33439
|
+
current: z.ZodNumber;
|
|
33440
|
+
target: z.ZodNumber;
|
|
33441
|
+
label: z.ZodOptional<z.ZodString>;
|
|
33442
|
+
context: z.ZodOptional<z.ZodString>;
|
|
33443
|
+
}, "strip", z.ZodTypeAny, {
|
|
33444
|
+
target: number;
|
|
33445
|
+
current: number;
|
|
33446
|
+
label?: string | undefined;
|
|
33447
|
+
context?: string | undefined;
|
|
33448
|
+
}, {
|
|
33449
|
+
target: number;
|
|
33450
|
+
current: number;
|
|
33451
|
+
label?: string | undefined;
|
|
33452
|
+
context?: string | undefined;
|
|
33453
|
+
}>>>;
|
|
33102
33454
|
seen: z.ZodOptional<z.ZodBoolean>;
|
|
33103
33455
|
type: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"global">, z.ZodLiteral<"sport">, z.ZodLiteral<"league">]>>;
|
|
33104
33456
|
league: z.ZodOptional<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">]>>;
|
|
@@ -33124,6 +33476,12 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
|
|
|
33124
33476
|
};
|
|
33125
33477
|
} | undefined;
|
|
33126
33478
|
currentTier?: number | undefined;
|
|
33479
|
+
oneTimeProgress?: Record<string, {
|
|
33480
|
+
target: number;
|
|
33481
|
+
current: number;
|
|
33482
|
+
label?: string | undefined;
|
|
33483
|
+
context?: string | undefined;
|
|
33484
|
+
}> | undefined;
|
|
33127
33485
|
seen?: boolean | undefined;
|
|
33128
33486
|
sport?: "basketball" | "football" | "soccer" | "baseball" | "hockey" | undefined;
|
|
33129
33487
|
league?: "global" | "nba" | "ncaa" | "nfl" | "nhl" | "mlb" | "cbb" | "cfb" | "epl" | "mls" | "wnba" | "cwc" | undefined;
|
|
@@ -33148,6 +33506,12 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
|
|
|
33148
33506
|
};
|
|
33149
33507
|
} | undefined;
|
|
33150
33508
|
currentTier?: number | undefined;
|
|
33509
|
+
oneTimeProgress?: Record<string, {
|
|
33510
|
+
target: number;
|
|
33511
|
+
current: number;
|
|
33512
|
+
label?: string | undefined;
|
|
33513
|
+
context?: string | undefined;
|
|
33514
|
+
}> | undefined;
|
|
33151
33515
|
seen?: boolean | undefined;
|
|
33152
33516
|
sport?: "basketball" | "football" | "soccer" | "baseball" | "hockey" | undefined;
|
|
33153
33517
|
league?: "global" | "nba" | "ncaa" | "nfl" | "nhl" | "mlb" | "cbb" | "cfb" | "epl" | "mls" | "wnba" | "cwc" | undefined;
|
|
@@ -35383,12 +35747,12 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
35383
35747
|
longest: z.ZodNumber;
|
|
35384
35748
|
updatedAt: z.ZodNumber;
|
|
35385
35749
|
}, "strip", z.ZodTypeAny, {
|
|
35386
|
-
updatedAt: number;
|
|
35387
35750
|
current: number;
|
|
35751
|
+
updatedAt: number;
|
|
35388
35752
|
longest: number;
|
|
35389
35753
|
}, {
|
|
35390
|
-
updatedAt: number;
|
|
35391
35754
|
current: number;
|
|
35755
|
+
updatedAt: number;
|
|
35392
35756
|
longest: number;
|
|
35393
35757
|
}>>;
|
|
35394
35758
|
milestones: z.ZodOptional<z.ZodObject<{
|
|
@@ -35495,6 +35859,22 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
35495
35859
|
};
|
|
35496
35860
|
}>>;
|
|
35497
35861
|
currentTier: z.ZodOptional<z.ZodNumber>;
|
|
35862
|
+
oneTimeProgress: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
35863
|
+
current: z.ZodNumber;
|
|
35864
|
+
target: z.ZodNumber;
|
|
35865
|
+
label: z.ZodOptional<z.ZodString>;
|
|
35866
|
+
context: z.ZodOptional<z.ZodString>;
|
|
35867
|
+
}, "strip", z.ZodTypeAny, {
|
|
35868
|
+
target: number;
|
|
35869
|
+
current: number;
|
|
35870
|
+
label?: string | undefined;
|
|
35871
|
+
context?: string | undefined;
|
|
35872
|
+
}, {
|
|
35873
|
+
target: number;
|
|
35874
|
+
current: number;
|
|
35875
|
+
label?: string | undefined;
|
|
35876
|
+
context?: string | undefined;
|
|
35877
|
+
}>>>;
|
|
35498
35878
|
seen: z.ZodOptional<z.ZodBoolean>;
|
|
35499
35879
|
type: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"global">, z.ZodLiteral<"sport">, z.ZodLiteral<"league">]>>;
|
|
35500
35880
|
league: z.ZodOptional<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">]>>;
|
|
@@ -35520,6 +35900,12 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
35520
35900
|
};
|
|
35521
35901
|
} | undefined;
|
|
35522
35902
|
currentTier?: number | undefined;
|
|
35903
|
+
oneTimeProgress?: Record<string, {
|
|
35904
|
+
target: number;
|
|
35905
|
+
current: number;
|
|
35906
|
+
label?: string | undefined;
|
|
35907
|
+
context?: string | undefined;
|
|
35908
|
+
}> | undefined;
|
|
35523
35909
|
seen?: boolean | undefined;
|
|
35524
35910
|
sport?: "basketball" | "football" | "soccer" | "baseball" | "hockey" | undefined;
|
|
35525
35911
|
league?: "global" | "nba" | "ncaa" | "nfl" | "nhl" | "mlb" | "cbb" | "cfb" | "epl" | "mls" | "wnba" | "cwc" | undefined;
|
|
@@ -35544,6 +35930,12 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
35544
35930
|
};
|
|
35545
35931
|
} | undefined;
|
|
35546
35932
|
currentTier?: number | undefined;
|
|
35933
|
+
oneTimeProgress?: Record<string, {
|
|
35934
|
+
target: number;
|
|
35935
|
+
current: number;
|
|
35936
|
+
label?: string | undefined;
|
|
35937
|
+
context?: string | undefined;
|
|
35938
|
+
}> | undefined;
|
|
35547
35939
|
seen?: boolean | undefined;
|
|
35548
35940
|
sport?: "basketball" | "football" | "soccer" | "baseball" | "hockey" | undefined;
|
|
35549
35941
|
league?: "global" | "nba" | "ncaa" | "nfl" | "nhl" | "mlb" | "cbb" | "cfb" | "epl" | "mls" | "wnba" | "cwc" | undefined;
|
|
@@ -37762,12 +38154,12 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
37762
38154
|
longest: z.ZodNumber;
|
|
37763
38155
|
updatedAt: z.ZodNumber;
|
|
37764
38156
|
}, "strip", z.ZodTypeAny, {
|
|
37765
|
-
updatedAt: number;
|
|
37766
38157
|
current: number;
|
|
38158
|
+
updatedAt: number;
|
|
37767
38159
|
longest: number;
|
|
37768
38160
|
}, {
|
|
37769
|
-
updatedAt: number;
|
|
37770
38161
|
current: number;
|
|
38162
|
+
updatedAt: number;
|
|
37771
38163
|
longest: number;
|
|
37772
38164
|
}>>;
|
|
37773
38165
|
milestones: z.ZodOptional<z.ZodObject<{
|
|
@@ -37874,6 +38266,22 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
37874
38266
|
};
|
|
37875
38267
|
}>>;
|
|
37876
38268
|
currentTier: z.ZodOptional<z.ZodNumber>;
|
|
38269
|
+
oneTimeProgress: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
38270
|
+
current: z.ZodNumber;
|
|
38271
|
+
target: z.ZodNumber;
|
|
38272
|
+
label: z.ZodOptional<z.ZodString>;
|
|
38273
|
+
context: z.ZodOptional<z.ZodString>;
|
|
38274
|
+
}, "strip", z.ZodTypeAny, {
|
|
38275
|
+
target: number;
|
|
38276
|
+
current: number;
|
|
38277
|
+
label?: string | undefined;
|
|
38278
|
+
context?: string | undefined;
|
|
38279
|
+
}, {
|
|
38280
|
+
target: number;
|
|
38281
|
+
current: number;
|
|
38282
|
+
label?: string | undefined;
|
|
38283
|
+
context?: string | undefined;
|
|
38284
|
+
}>>>;
|
|
37877
38285
|
seen: z.ZodOptional<z.ZodBoolean>;
|
|
37878
38286
|
type: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"global">, z.ZodLiteral<"sport">, z.ZodLiteral<"league">]>>;
|
|
37879
38287
|
league: z.ZodOptional<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">]>>;
|
|
@@ -37899,6 +38307,12 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
37899
38307
|
};
|
|
37900
38308
|
} | undefined;
|
|
37901
38309
|
currentTier?: number | undefined;
|
|
38310
|
+
oneTimeProgress?: Record<string, {
|
|
38311
|
+
target: number;
|
|
38312
|
+
current: number;
|
|
38313
|
+
label?: string | undefined;
|
|
38314
|
+
context?: string | undefined;
|
|
38315
|
+
}> | undefined;
|
|
37902
38316
|
seen?: boolean | undefined;
|
|
37903
38317
|
sport?: "basketball" | "football" | "soccer" | "baseball" | "hockey" | undefined;
|
|
37904
38318
|
league?: "global" | "nba" | "ncaa" | "nfl" | "nhl" | "mlb" | "cbb" | "cfb" | "epl" | "mls" | "wnba" | "cwc" | undefined;
|
|
@@ -37923,6 +38337,12 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
37923
38337
|
};
|
|
37924
38338
|
} | undefined;
|
|
37925
38339
|
currentTier?: number | undefined;
|
|
38340
|
+
oneTimeProgress?: Record<string, {
|
|
38341
|
+
target: number;
|
|
38342
|
+
current: number;
|
|
38343
|
+
label?: string | undefined;
|
|
38344
|
+
context?: string | undefined;
|
|
38345
|
+
}> | undefined;
|
|
37926
38346
|
seen?: boolean | undefined;
|
|
37927
38347
|
sport?: "basketball" | "football" | "soccer" | "baseball" | "hockey" | undefined;
|
|
37928
38348
|
league?: "global" | "nba" | "ncaa" | "nfl" | "nhl" | "mlb" | "cbb" | "cfb" | "epl" | "mls" | "wnba" | "cwc" | undefined;
|
|
@@ -40162,12 +40582,12 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
40162
40582
|
longest: z.ZodNumber;
|
|
40163
40583
|
updatedAt: z.ZodNumber;
|
|
40164
40584
|
}, "strip", z.ZodTypeAny, {
|
|
40165
|
-
updatedAt: number;
|
|
40166
40585
|
current: number;
|
|
40586
|
+
updatedAt: number;
|
|
40167
40587
|
longest: number;
|
|
40168
40588
|
}, {
|
|
40169
|
-
updatedAt: number;
|
|
40170
40589
|
current: number;
|
|
40590
|
+
updatedAt: number;
|
|
40171
40591
|
longest: number;
|
|
40172
40592
|
}>>;
|
|
40173
40593
|
milestones: z.ZodOptional<z.ZodObject<{
|
|
@@ -40274,6 +40694,22 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
40274
40694
|
};
|
|
40275
40695
|
}>>;
|
|
40276
40696
|
currentTier: z.ZodOptional<z.ZodNumber>;
|
|
40697
|
+
oneTimeProgress: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
40698
|
+
current: z.ZodNumber;
|
|
40699
|
+
target: z.ZodNumber;
|
|
40700
|
+
label: z.ZodOptional<z.ZodString>;
|
|
40701
|
+
context: z.ZodOptional<z.ZodString>;
|
|
40702
|
+
}, "strip", z.ZodTypeAny, {
|
|
40703
|
+
target: number;
|
|
40704
|
+
current: number;
|
|
40705
|
+
label?: string | undefined;
|
|
40706
|
+
context?: string | undefined;
|
|
40707
|
+
}, {
|
|
40708
|
+
target: number;
|
|
40709
|
+
current: number;
|
|
40710
|
+
label?: string | undefined;
|
|
40711
|
+
context?: string | undefined;
|
|
40712
|
+
}>>>;
|
|
40277
40713
|
seen: z.ZodOptional<z.ZodBoolean>;
|
|
40278
40714
|
type: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"global">, z.ZodLiteral<"sport">, z.ZodLiteral<"league">]>>;
|
|
40279
40715
|
league: z.ZodOptional<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">]>>;
|
|
@@ -40299,6 +40735,12 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
40299
40735
|
};
|
|
40300
40736
|
} | undefined;
|
|
40301
40737
|
currentTier?: number | undefined;
|
|
40738
|
+
oneTimeProgress?: Record<string, {
|
|
40739
|
+
target: number;
|
|
40740
|
+
current: number;
|
|
40741
|
+
label?: string | undefined;
|
|
40742
|
+
context?: string | undefined;
|
|
40743
|
+
}> | undefined;
|
|
40302
40744
|
seen?: boolean | undefined;
|
|
40303
40745
|
sport?: "basketball" | "football" | "soccer" | "baseball" | "hockey" | undefined;
|
|
40304
40746
|
league?: "global" | "nba" | "ncaa" | "nfl" | "nhl" | "mlb" | "cbb" | "cfb" | "epl" | "mls" | "wnba" | "cwc" | undefined;
|
|
@@ -40323,6 +40765,12 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
40323
40765
|
};
|
|
40324
40766
|
} | undefined;
|
|
40325
40767
|
currentTier?: number | undefined;
|
|
40768
|
+
oneTimeProgress?: Record<string, {
|
|
40769
|
+
target: number;
|
|
40770
|
+
current: number;
|
|
40771
|
+
label?: string | undefined;
|
|
40772
|
+
context?: string | undefined;
|
|
40773
|
+
}> | undefined;
|
|
40326
40774
|
seen?: boolean | undefined;
|
|
40327
40775
|
sport?: "basketball" | "football" | "soccer" | "baseball" | "hockey" | undefined;
|
|
40328
40776
|
league?: "global" | "nba" | "ncaa" | "nfl" | "nhl" | "mlb" | "cbb" | "cfb" | "epl" | "mls" | "wnba" | "cwc" | undefined;
|
|
@@ -42647,12 +43095,12 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
42647
43095
|
longest: z.ZodNumber;
|
|
42648
43096
|
updatedAt: z.ZodNumber;
|
|
42649
43097
|
}, "strip", z.ZodTypeAny, {
|
|
42650
|
-
updatedAt: number;
|
|
42651
43098
|
current: number;
|
|
43099
|
+
updatedAt: number;
|
|
42652
43100
|
longest: number;
|
|
42653
43101
|
}, {
|
|
42654
|
-
updatedAt: number;
|
|
42655
43102
|
current: number;
|
|
43103
|
+
updatedAt: number;
|
|
42656
43104
|
longest: number;
|
|
42657
43105
|
}>>;
|
|
42658
43106
|
milestones: z.ZodOptional<z.ZodObject<{
|
|
@@ -42759,6 +43207,22 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
42759
43207
|
};
|
|
42760
43208
|
}>>;
|
|
42761
43209
|
currentTier: z.ZodOptional<z.ZodNumber>;
|
|
43210
|
+
oneTimeProgress: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
43211
|
+
current: z.ZodNumber;
|
|
43212
|
+
target: z.ZodNumber;
|
|
43213
|
+
label: z.ZodOptional<z.ZodString>;
|
|
43214
|
+
context: z.ZodOptional<z.ZodString>;
|
|
43215
|
+
}, "strip", z.ZodTypeAny, {
|
|
43216
|
+
target: number;
|
|
43217
|
+
current: number;
|
|
43218
|
+
label?: string | undefined;
|
|
43219
|
+
context?: string | undefined;
|
|
43220
|
+
}, {
|
|
43221
|
+
target: number;
|
|
43222
|
+
current: number;
|
|
43223
|
+
label?: string | undefined;
|
|
43224
|
+
context?: string | undefined;
|
|
43225
|
+
}>>>;
|
|
42762
43226
|
seen: z.ZodOptional<z.ZodBoolean>;
|
|
42763
43227
|
type: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"global">, z.ZodLiteral<"sport">, z.ZodLiteral<"league">]>>;
|
|
42764
43228
|
league: z.ZodOptional<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">]>>;
|
|
@@ -42784,6 +43248,12 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
42784
43248
|
};
|
|
42785
43249
|
} | undefined;
|
|
42786
43250
|
currentTier?: number | undefined;
|
|
43251
|
+
oneTimeProgress?: Record<string, {
|
|
43252
|
+
target: number;
|
|
43253
|
+
current: number;
|
|
43254
|
+
label?: string | undefined;
|
|
43255
|
+
context?: string | undefined;
|
|
43256
|
+
}> | undefined;
|
|
42787
43257
|
seen?: boolean | undefined;
|
|
42788
43258
|
sport?: "basketball" | "football" | "soccer" | "baseball" | "hockey" | undefined;
|
|
42789
43259
|
league?: "global" | "nba" | "ncaa" | "nfl" | "nhl" | "mlb" | "cbb" | "cfb" | "epl" | "mls" | "wnba" | "cwc" | undefined;
|
|
@@ -42808,6 +43278,12 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
42808
43278
|
};
|
|
42809
43279
|
} | undefined;
|
|
42810
43280
|
currentTier?: number | undefined;
|
|
43281
|
+
oneTimeProgress?: Record<string, {
|
|
43282
|
+
target: number;
|
|
43283
|
+
current: number;
|
|
43284
|
+
label?: string | undefined;
|
|
43285
|
+
context?: string | undefined;
|
|
43286
|
+
}> | undefined;
|
|
42811
43287
|
seen?: boolean | undefined;
|
|
42812
43288
|
sport?: "basketball" | "football" | "soccer" | "baseball" | "hockey" | undefined;
|
|
42813
43289
|
league?: "global" | "nba" | "ncaa" | "nfl" | "nhl" | "mlb" | "cbb" | "cfb" | "epl" | "mls" | "wnba" | "cwc" | undefined;
|
|
@@ -45103,12 +45579,12 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
45103
45579
|
longest: z.ZodNumber;
|
|
45104
45580
|
updatedAt: z.ZodNumber;
|
|
45105
45581
|
}, "strip", z.ZodTypeAny, {
|
|
45106
|
-
updatedAt: number;
|
|
45107
45582
|
current: number;
|
|
45583
|
+
updatedAt: number;
|
|
45108
45584
|
longest: number;
|
|
45109
45585
|
}, {
|
|
45110
|
-
updatedAt: number;
|
|
45111
45586
|
current: number;
|
|
45587
|
+
updatedAt: number;
|
|
45112
45588
|
longest: number;
|
|
45113
45589
|
}>>;
|
|
45114
45590
|
milestones: z.ZodOptional<z.ZodObject<{
|
|
@@ -45215,6 +45691,22 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
45215
45691
|
};
|
|
45216
45692
|
}>>;
|
|
45217
45693
|
currentTier: z.ZodOptional<z.ZodNumber>;
|
|
45694
|
+
oneTimeProgress: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
45695
|
+
current: z.ZodNumber;
|
|
45696
|
+
target: z.ZodNumber;
|
|
45697
|
+
label: z.ZodOptional<z.ZodString>;
|
|
45698
|
+
context: z.ZodOptional<z.ZodString>;
|
|
45699
|
+
}, "strip", z.ZodTypeAny, {
|
|
45700
|
+
target: number;
|
|
45701
|
+
current: number;
|
|
45702
|
+
label?: string | undefined;
|
|
45703
|
+
context?: string | undefined;
|
|
45704
|
+
}, {
|
|
45705
|
+
target: number;
|
|
45706
|
+
current: number;
|
|
45707
|
+
label?: string | undefined;
|
|
45708
|
+
context?: string | undefined;
|
|
45709
|
+
}>>>;
|
|
45218
45710
|
seen: z.ZodOptional<z.ZodBoolean>;
|
|
45219
45711
|
type: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"global">, z.ZodLiteral<"sport">, z.ZodLiteral<"league">]>>;
|
|
45220
45712
|
league: z.ZodOptional<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">]>>;
|
|
@@ -45240,6 +45732,12 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
45240
45732
|
};
|
|
45241
45733
|
} | undefined;
|
|
45242
45734
|
currentTier?: number | undefined;
|
|
45735
|
+
oneTimeProgress?: Record<string, {
|
|
45736
|
+
target: number;
|
|
45737
|
+
current: number;
|
|
45738
|
+
label?: string | undefined;
|
|
45739
|
+
context?: string | undefined;
|
|
45740
|
+
}> | undefined;
|
|
45243
45741
|
seen?: boolean | undefined;
|
|
45244
45742
|
sport?: "basketball" | "football" | "soccer" | "baseball" | "hockey" | undefined;
|
|
45245
45743
|
league?: "global" | "nba" | "ncaa" | "nfl" | "nhl" | "mlb" | "cbb" | "cfb" | "epl" | "mls" | "wnba" | "cwc" | undefined;
|
|
@@ -45264,6 +45762,12 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
45264
45762
|
};
|
|
45265
45763
|
} | undefined;
|
|
45266
45764
|
currentTier?: number | undefined;
|
|
45765
|
+
oneTimeProgress?: Record<string, {
|
|
45766
|
+
target: number;
|
|
45767
|
+
current: number;
|
|
45768
|
+
label?: string | undefined;
|
|
45769
|
+
context?: string | undefined;
|
|
45770
|
+
}> | undefined;
|
|
45267
45771
|
seen?: boolean | undefined;
|
|
45268
45772
|
sport?: "basketball" | "football" | "soccer" | "baseball" | "hockey" | undefined;
|
|
45269
45773
|
league?: "global" | "nba" | "ncaa" | "nfl" | "nhl" | "mlb" | "cbb" | "cfb" | "epl" | "mls" | "wnba" | "cwc" | undefined;
|
|
@@ -47541,12 +48045,12 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
47541
48045
|
longest: z.ZodNumber;
|
|
47542
48046
|
updatedAt: z.ZodNumber;
|
|
47543
48047
|
}, "strip", z.ZodTypeAny, {
|
|
47544
|
-
updatedAt: number;
|
|
47545
48048
|
current: number;
|
|
48049
|
+
updatedAt: number;
|
|
47546
48050
|
longest: number;
|
|
47547
48051
|
}, {
|
|
47548
|
-
updatedAt: number;
|
|
47549
48052
|
current: number;
|
|
48053
|
+
updatedAt: number;
|
|
47550
48054
|
longest: number;
|
|
47551
48055
|
}>>;
|
|
47552
48056
|
milestones: z.ZodOptional<z.ZodObject<{
|
|
@@ -47653,6 +48157,22 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
47653
48157
|
};
|
|
47654
48158
|
}>>;
|
|
47655
48159
|
currentTier: z.ZodOptional<z.ZodNumber>;
|
|
48160
|
+
oneTimeProgress: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
48161
|
+
current: z.ZodNumber;
|
|
48162
|
+
target: z.ZodNumber;
|
|
48163
|
+
label: z.ZodOptional<z.ZodString>;
|
|
48164
|
+
context: z.ZodOptional<z.ZodString>;
|
|
48165
|
+
}, "strip", z.ZodTypeAny, {
|
|
48166
|
+
target: number;
|
|
48167
|
+
current: number;
|
|
48168
|
+
label?: string | undefined;
|
|
48169
|
+
context?: string | undefined;
|
|
48170
|
+
}, {
|
|
48171
|
+
target: number;
|
|
48172
|
+
current: number;
|
|
48173
|
+
label?: string | undefined;
|
|
48174
|
+
context?: string | undefined;
|
|
48175
|
+
}>>>;
|
|
47656
48176
|
seen: z.ZodOptional<z.ZodBoolean>;
|
|
47657
48177
|
type: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"global">, z.ZodLiteral<"sport">, z.ZodLiteral<"league">]>>;
|
|
47658
48178
|
league: z.ZodOptional<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">]>>;
|
|
@@ -47678,6 +48198,12 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
47678
48198
|
};
|
|
47679
48199
|
} | undefined;
|
|
47680
48200
|
currentTier?: number | undefined;
|
|
48201
|
+
oneTimeProgress?: Record<string, {
|
|
48202
|
+
target: number;
|
|
48203
|
+
current: number;
|
|
48204
|
+
label?: string | undefined;
|
|
48205
|
+
context?: string | undefined;
|
|
48206
|
+
}> | undefined;
|
|
47681
48207
|
seen?: boolean | undefined;
|
|
47682
48208
|
sport?: "basketball" | "football" | "soccer" | "baseball" | "hockey" | undefined;
|
|
47683
48209
|
league?: "global" | "nba" | "ncaa" | "nfl" | "nhl" | "mlb" | "cbb" | "cfb" | "epl" | "mls" | "wnba" | "cwc" | undefined;
|
|
@@ -47702,6 +48228,12 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
47702
48228
|
};
|
|
47703
48229
|
} | undefined;
|
|
47704
48230
|
currentTier?: number | undefined;
|
|
48231
|
+
oneTimeProgress?: Record<string, {
|
|
48232
|
+
target: number;
|
|
48233
|
+
current: number;
|
|
48234
|
+
label?: string | undefined;
|
|
48235
|
+
context?: string | undefined;
|
|
48236
|
+
}> | undefined;
|
|
47705
48237
|
seen?: boolean | undefined;
|
|
47706
48238
|
sport?: "basketball" | "football" | "soccer" | "baseball" | "hockey" | undefined;
|
|
47707
48239
|
league?: "global" | "nba" | "ncaa" | "nfl" | "nhl" | "mlb" | "cbb" | "cfb" | "epl" | "mls" | "wnba" | "cwc" | undefined;
|
|
@@ -48824,12 +49356,12 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
48824
49356
|
longest: z.ZodNumber;
|
|
48825
49357
|
updatedAt: z.ZodNumber;
|
|
48826
49358
|
}, "strip", z.ZodTypeAny, {
|
|
48827
|
-
updatedAt: number;
|
|
48828
49359
|
current: number;
|
|
49360
|
+
updatedAt: number;
|
|
48829
49361
|
longest: number;
|
|
48830
49362
|
}, {
|
|
48831
|
-
updatedAt: number;
|
|
48832
49363
|
current: number;
|
|
49364
|
+
updatedAt: number;
|
|
48833
49365
|
longest: number;
|
|
48834
49366
|
}>>;
|
|
48835
49367
|
milestones: z.ZodOptional<z.ZodObject<{
|
|
@@ -48936,6 +49468,22 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
48936
49468
|
};
|
|
48937
49469
|
}>>;
|
|
48938
49470
|
currentTier: z.ZodOptional<z.ZodNumber>;
|
|
49471
|
+
oneTimeProgress: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
49472
|
+
current: z.ZodNumber;
|
|
49473
|
+
target: z.ZodNumber;
|
|
49474
|
+
label: z.ZodOptional<z.ZodString>;
|
|
49475
|
+
context: z.ZodOptional<z.ZodString>;
|
|
49476
|
+
}, "strip", z.ZodTypeAny, {
|
|
49477
|
+
target: number;
|
|
49478
|
+
current: number;
|
|
49479
|
+
label?: string | undefined;
|
|
49480
|
+
context?: string | undefined;
|
|
49481
|
+
}, {
|
|
49482
|
+
target: number;
|
|
49483
|
+
current: number;
|
|
49484
|
+
label?: string | undefined;
|
|
49485
|
+
context?: string | undefined;
|
|
49486
|
+
}>>>;
|
|
48939
49487
|
seen: z.ZodOptional<z.ZodBoolean>;
|
|
48940
49488
|
type: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"global">, z.ZodLiteral<"sport">, z.ZodLiteral<"league">]>>;
|
|
48941
49489
|
league: z.ZodOptional<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">]>>;
|
|
@@ -48961,6 +49509,12 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
48961
49509
|
};
|
|
48962
49510
|
} | undefined;
|
|
48963
49511
|
currentTier?: number | undefined;
|
|
49512
|
+
oneTimeProgress?: Record<string, {
|
|
49513
|
+
target: number;
|
|
49514
|
+
current: number;
|
|
49515
|
+
label?: string | undefined;
|
|
49516
|
+
context?: string | undefined;
|
|
49517
|
+
}> | undefined;
|
|
48964
49518
|
seen?: boolean | undefined;
|
|
48965
49519
|
sport?: "basketball" | "football" | "soccer" | "baseball" | "hockey" | undefined;
|
|
48966
49520
|
league?: "global" | "nba" | "ncaa" | "nfl" | "nhl" | "mlb" | "cbb" | "cfb" | "epl" | "mls" | "wnba" | "cwc" | undefined;
|
|
@@ -48985,6 +49539,12 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
48985
49539
|
};
|
|
48986
49540
|
} | undefined;
|
|
48987
49541
|
currentTier?: number | undefined;
|
|
49542
|
+
oneTimeProgress?: Record<string, {
|
|
49543
|
+
target: number;
|
|
49544
|
+
current: number;
|
|
49545
|
+
label?: string | undefined;
|
|
49546
|
+
context?: string | undefined;
|
|
49547
|
+
}> | undefined;
|
|
48988
49548
|
seen?: boolean | undefined;
|
|
48989
49549
|
sport?: "basketball" | "football" | "soccer" | "baseball" | "hockey" | undefined;
|
|
48990
49550
|
league?: "global" | "nba" | "ncaa" | "nfl" | "nhl" | "mlb" | "cbb" | "cfb" | "epl" | "mls" | "wnba" | "cwc" | undefined;
|