rategame-shared 1.1.416 → 1.1.418
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 +10 -0
- package/dist/schemas/experience.d.ts +8 -0
- package/dist/schemas/game.d.ts +40 -0
- package/dist/schemas/list.d.ts +10 -0
- package/dist/schemas/moderation.d.ts +8 -0
- package/dist/schemas/pick.d.ts +76 -0
- package/dist/schemas/rating.d.ts +6 -0
- package/dist/schemas/scorePrediction.d.ts +54 -0
- package/dist/schemas/stadium.d.ts +8 -0
- package/dist/schemas/trivia.d.ts +34 -0
- package/dist/schemas/trivia.js +12 -0
- package/dist/schemas/user.d.ts +20 -0
- package/dist/schemas/user.js +4 -0
- package/dist/schemas/userEvent.d.ts +6 -0
- package/dist/schemas/voting.d.ts +18 -0
- package/package.json +1 -1
package/dist/schemas/chat.d.ts
CHANGED
|
@@ -853,6 +853,8 @@ export declare const chatMessageSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
853
853
|
longest: number;
|
|
854
854
|
timeZone?: string | undefined;
|
|
855
855
|
}>>;
|
|
856
|
+
currentPickStreak: z.ZodOptional<z.ZodNumber>;
|
|
857
|
+
allTimeHighStreak: z.ZodOptional<z.ZodNumber>;
|
|
856
858
|
milestones: z.ZodOptional<z.ZodObject<{
|
|
857
859
|
ratings: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
858
860
|
count: z.ZodNumber;
|
|
@@ -2035,6 +2037,8 @@ export declare const chatMessageSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
2035
2037
|
longest: number;
|
|
2036
2038
|
timeZone?: string | undefined;
|
|
2037
2039
|
}>>;
|
|
2040
|
+
currentPickStreak: z.ZodOptional<z.ZodNumber>;
|
|
2041
|
+
allTimeHighStreak: z.ZodOptional<z.ZodNumber>;
|
|
2038
2042
|
milestones: z.ZodOptional<z.ZodObject<{
|
|
2039
2043
|
ratings: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
2040
2044
|
count: z.ZodNumber;
|
|
@@ -3276,6 +3280,8 @@ export declare const communityChatMessageSchema: z.ZodObject<z.objectUtil.extend
|
|
|
3276
3280
|
longest: number;
|
|
3277
3281
|
timeZone?: string | undefined;
|
|
3278
3282
|
}>>;
|
|
3283
|
+
currentPickStreak: z.ZodOptional<z.ZodNumber>;
|
|
3284
|
+
allTimeHighStreak: z.ZodOptional<z.ZodNumber>;
|
|
3279
3285
|
milestones: z.ZodOptional<z.ZodObject<{
|
|
3280
3286
|
ratings: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
3281
3287
|
count: z.ZodNumber;
|
|
@@ -4457,6 +4463,8 @@ export declare const communityChatMessageSchema: z.ZodObject<z.objectUtil.extend
|
|
|
4457
4463
|
longest: number;
|
|
4458
4464
|
timeZone?: string | undefined;
|
|
4459
4465
|
}>>;
|
|
4466
|
+
currentPickStreak: z.ZodOptional<z.ZodNumber>;
|
|
4467
|
+
allTimeHighStreak: z.ZodOptional<z.ZodNumber>;
|
|
4460
4468
|
milestones: z.ZodOptional<z.ZodObject<{
|
|
4461
4469
|
ratings: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
4462
4470
|
count: z.ZodNumber;
|
|
@@ -5692,6 +5700,8 @@ export declare const messageReactionSchema: z.ZodObject<{
|
|
|
5692
5700
|
longest: number;
|
|
5693
5701
|
timeZone?: string | undefined;
|
|
5694
5702
|
}>>;
|
|
5703
|
+
currentPickStreak: z.ZodOptional<z.ZodNumber>;
|
|
5704
|
+
allTimeHighStreak: z.ZodOptional<z.ZodNumber>;
|
|
5695
5705
|
milestones: z.ZodOptional<z.ZodObject<{
|
|
5696
5706
|
ratings: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
5697
5707
|
count: z.ZodNumber;
|
|
@@ -992,6 +992,8 @@ export declare const experienceRatingSchema: z.ZodObject<{
|
|
|
992
992
|
longest: number;
|
|
993
993
|
timeZone?: string | undefined;
|
|
994
994
|
}>>;
|
|
995
|
+
currentPickStreak: z.ZodOptional<z.ZodNumber>;
|
|
996
|
+
allTimeHighStreak: z.ZodOptional<z.ZodNumber>;
|
|
995
997
|
milestones: z.ZodOptional<z.ZodObject<{
|
|
996
998
|
ratings: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
997
999
|
count: z.ZodNumber;
|
|
@@ -2433,6 +2435,8 @@ export declare const createExperienceRatingSchema: z.ZodObject<z.objectUtil.exte
|
|
|
2433
2435
|
longest: number;
|
|
2434
2436
|
timeZone?: string | undefined;
|
|
2435
2437
|
}>>;
|
|
2438
|
+
currentPickStreak: z.ZodOptional<z.ZodNumber>;
|
|
2439
|
+
allTimeHighStreak: z.ZodOptional<z.ZodNumber>;
|
|
2436
2440
|
milestones: z.ZodOptional<z.ZodObject<{
|
|
2437
2441
|
ratings: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
2438
2442
|
count: z.ZodNumber;
|
|
@@ -3873,6 +3877,8 @@ export declare const experienceThreadCommentSchema: z.ZodObject<{
|
|
|
3873
3877
|
longest: number;
|
|
3874
3878
|
timeZone?: string | undefined;
|
|
3875
3879
|
}>>;
|
|
3880
|
+
currentPickStreak: z.ZodOptional<z.ZodNumber>;
|
|
3881
|
+
allTimeHighStreak: z.ZodOptional<z.ZodNumber>;
|
|
3876
3882
|
milestones: z.ZodOptional<z.ZodObject<{
|
|
3877
3883
|
ratings: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
3878
3884
|
count: z.ZodNumber;
|
|
@@ -5050,6 +5056,8 @@ export declare const experienceThreadCommentSchema: z.ZodObject<{
|
|
|
5050
5056
|
longest: number;
|
|
5051
5057
|
timeZone?: string | undefined;
|
|
5052
5058
|
}>>;
|
|
5059
|
+
currentPickStreak: z.ZodOptional<z.ZodNumber>;
|
|
5060
|
+
allTimeHighStreak: z.ZodOptional<z.ZodNumber>;
|
|
5053
5061
|
milestones: z.ZodOptional<z.ZodObject<{
|
|
5054
5062
|
ratings: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
5055
5063
|
count: z.ZodNumber;
|
package/dist/schemas/game.d.ts
CHANGED
|
@@ -4173,6 +4173,8 @@ export declare const commonGameSchema: z.ZodObject<{
|
|
|
4173
4173
|
longest: number;
|
|
4174
4174
|
timeZone?: string | undefined;
|
|
4175
4175
|
}>>;
|
|
4176
|
+
currentPickStreak: z.ZodOptional<z.ZodNumber>;
|
|
4177
|
+
allTimeHighStreak: z.ZodOptional<z.ZodNumber>;
|
|
4176
4178
|
milestones: z.ZodOptional<z.ZodObject<{
|
|
4177
4179
|
ratings: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
4178
4180
|
count: z.ZodNumber;
|
|
@@ -6870,6 +6872,8 @@ export declare const basketballGameSchema: z.ZodObject<z.objectUtil.extendShape<
|
|
|
6870
6872
|
longest: number;
|
|
6871
6873
|
timeZone?: string | undefined;
|
|
6872
6874
|
}>>;
|
|
6875
|
+
currentPickStreak: z.ZodOptional<z.ZodNumber>;
|
|
6876
|
+
allTimeHighStreak: z.ZodOptional<z.ZodNumber>;
|
|
6873
6877
|
milestones: z.ZodOptional<z.ZodObject<{
|
|
6874
6878
|
ratings: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
6875
6879
|
count: z.ZodNumber;
|
|
@@ -9628,6 +9632,8 @@ export declare const mlbGameSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
9628
9632
|
longest: number;
|
|
9629
9633
|
timeZone?: string | undefined;
|
|
9630
9634
|
}>>;
|
|
9635
|
+
currentPickStreak: z.ZodOptional<z.ZodNumber>;
|
|
9636
|
+
allTimeHighStreak: z.ZodOptional<z.ZodNumber>;
|
|
9631
9637
|
milestones: z.ZodOptional<z.ZodObject<{
|
|
9632
9638
|
ratings: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
9633
9639
|
count: z.ZodNumber;
|
|
@@ -12394,6 +12400,8 @@ export declare const footballGameSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
12394
12400
|
longest: number;
|
|
12395
12401
|
timeZone?: string | undefined;
|
|
12396
12402
|
}>>;
|
|
12403
|
+
currentPickStreak: z.ZodOptional<z.ZodNumber>;
|
|
12404
|
+
allTimeHighStreak: z.ZodOptional<z.ZodNumber>;
|
|
12397
12405
|
milestones: z.ZodOptional<z.ZodObject<{
|
|
12398
12406
|
ratings: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
12399
12407
|
count: z.ZodNumber;
|
|
@@ -15257,6 +15265,8 @@ export declare const nflGameSchema: z.ZodObject<z.objectUtil.extendShape<z.objec
|
|
|
15257
15265
|
longest: number;
|
|
15258
15266
|
timeZone?: string | undefined;
|
|
15259
15267
|
}>>;
|
|
15268
|
+
currentPickStreak: z.ZodOptional<z.ZodNumber>;
|
|
15269
|
+
allTimeHighStreak: z.ZodOptional<z.ZodNumber>;
|
|
15260
15270
|
milestones: z.ZodOptional<z.ZodObject<{
|
|
15261
15271
|
ratings: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
15262
15272
|
count: z.ZodNumber;
|
|
@@ -18079,6 +18089,8 @@ export declare const cfbGameSchema: z.ZodObject<z.objectUtil.extendShape<z.objec
|
|
|
18079
18089
|
longest: number;
|
|
18080
18090
|
timeZone?: string | undefined;
|
|
18081
18091
|
}>>;
|
|
18092
|
+
currentPickStreak: z.ZodOptional<z.ZodNumber>;
|
|
18093
|
+
allTimeHighStreak: z.ZodOptional<z.ZodNumber>;
|
|
18082
18094
|
milestones: z.ZodOptional<z.ZodObject<{
|
|
18083
18095
|
ratings: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
18084
18096
|
count: z.ZodNumber;
|
|
@@ -20883,6 +20895,8 @@ export declare const nhlGameSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
20883
20895
|
longest: number;
|
|
20884
20896
|
timeZone?: string | undefined;
|
|
20885
20897
|
}>>;
|
|
20898
|
+
currentPickStreak: z.ZodOptional<z.ZodNumber>;
|
|
20899
|
+
allTimeHighStreak: z.ZodOptional<z.ZodNumber>;
|
|
20886
20900
|
milestones: z.ZodOptional<z.ZodObject<{
|
|
20887
20901
|
ratings: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
20888
20902
|
count: z.ZodNumber;
|
|
@@ -23600,6 +23614,8 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
|
|
|
23600
23614
|
longest: number;
|
|
23601
23615
|
timeZone?: string | undefined;
|
|
23602
23616
|
}>>;
|
|
23617
|
+
currentPickStreak: z.ZodOptional<z.ZodNumber>;
|
|
23618
|
+
allTimeHighStreak: z.ZodOptional<z.ZodNumber>;
|
|
23603
23619
|
milestones: z.ZodOptional<z.ZodObject<{
|
|
23604
23620
|
ratings: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
23605
23621
|
count: z.ZodNumber;
|
|
@@ -26344,6 +26360,8 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
|
|
|
26344
26360
|
longest: number;
|
|
26345
26361
|
timeZone?: string | undefined;
|
|
26346
26362
|
}>>;
|
|
26363
|
+
currentPickStreak: z.ZodOptional<z.ZodNumber>;
|
|
26364
|
+
allTimeHighStreak: z.ZodOptional<z.ZodNumber>;
|
|
26347
26365
|
milestones: z.ZodOptional<z.ZodObject<{
|
|
26348
26366
|
ratings: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
26349
26367
|
count: z.ZodNumber;
|
|
@@ -29109,6 +29127,8 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
|
|
|
29109
29127
|
longest: number;
|
|
29110
29128
|
timeZone?: string | undefined;
|
|
29111
29129
|
}>>;
|
|
29130
|
+
currentPickStreak: z.ZodOptional<z.ZodNumber>;
|
|
29131
|
+
allTimeHighStreak: z.ZodOptional<z.ZodNumber>;
|
|
29112
29132
|
milestones: z.ZodOptional<z.ZodObject<{
|
|
29113
29133
|
ratings: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
29114
29134
|
count: z.ZodNumber;
|
|
@@ -31971,6 +31991,8 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
|
|
|
31971
31991
|
longest: number;
|
|
31972
31992
|
timeZone?: string | undefined;
|
|
31973
31993
|
}>>;
|
|
31994
|
+
currentPickStreak: z.ZodOptional<z.ZodNumber>;
|
|
31995
|
+
allTimeHighStreak: z.ZodOptional<z.ZodNumber>;
|
|
31974
31996
|
milestones: z.ZodOptional<z.ZodObject<{
|
|
31975
31997
|
ratings: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
31976
31998
|
count: z.ZodNumber;
|
|
@@ -34792,6 +34814,8 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
|
|
|
34792
34814
|
longest: number;
|
|
34793
34815
|
timeZone?: string | undefined;
|
|
34794
34816
|
}>>;
|
|
34817
|
+
currentPickStreak: z.ZodOptional<z.ZodNumber>;
|
|
34818
|
+
allTimeHighStreak: z.ZodOptional<z.ZodNumber>;
|
|
34795
34819
|
milestones: z.ZodOptional<z.ZodObject<{
|
|
34796
34820
|
ratings: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
34797
34821
|
count: z.ZodNumber;
|
|
@@ -37595,6 +37619,8 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
|
|
|
37595
37619
|
longest: number;
|
|
37596
37620
|
timeZone?: string | undefined;
|
|
37597
37621
|
}>>;
|
|
37622
|
+
currentPickStreak: z.ZodOptional<z.ZodNumber>;
|
|
37623
|
+
allTimeHighStreak: z.ZodOptional<z.ZodNumber>;
|
|
37598
37624
|
milestones: z.ZodOptional<z.ZodObject<{
|
|
37599
37625
|
ratings: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
37600
37626
|
count: z.ZodNumber;
|
|
@@ -40386,6 +40412,8 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
40386
40412
|
longest: number;
|
|
40387
40413
|
timeZone?: string | undefined;
|
|
40388
40414
|
}>>;
|
|
40415
|
+
currentPickStreak: z.ZodOptional<z.ZodNumber>;
|
|
40416
|
+
allTimeHighStreak: z.ZodOptional<z.ZodNumber>;
|
|
40389
40417
|
milestones: z.ZodOptional<z.ZodObject<{
|
|
40390
40418
|
ratings: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
40391
40419
|
count: z.ZodNumber;
|
|
@@ -43130,6 +43158,8 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
43130
43158
|
longest: number;
|
|
43131
43159
|
timeZone?: string | undefined;
|
|
43132
43160
|
}>>;
|
|
43161
|
+
currentPickStreak: z.ZodOptional<z.ZodNumber>;
|
|
43162
|
+
allTimeHighStreak: z.ZodOptional<z.ZodNumber>;
|
|
43133
43163
|
milestones: z.ZodOptional<z.ZodObject<{
|
|
43134
43164
|
ratings: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
43135
43165
|
count: z.ZodNumber;
|
|
@@ -45895,6 +45925,8 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
45895
45925
|
longest: number;
|
|
45896
45926
|
timeZone?: string | undefined;
|
|
45897
45927
|
}>>;
|
|
45928
|
+
currentPickStreak: z.ZodOptional<z.ZodNumber>;
|
|
45929
|
+
allTimeHighStreak: z.ZodOptional<z.ZodNumber>;
|
|
45898
45930
|
milestones: z.ZodOptional<z.ZodObject<{
|
|
45899
45931
|
ratings: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
45900
45932
|
count: z.ZodNumber;
|
|
@@ -48757,6 +48789,8 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
48757
48789
|
longest: number;
|
|
48758
48790
|
timeZone?: string | undefined;
|
|
48759
48791
|
}>>;
|
|
48792
|
+
currentPickStreak: z.ZodOptional<z.ZodNumber>;
|
|
48793
|
+
allTimeHighStreak: z.ZodOptional<z.ZodNumber>;
|
|
48760
48794
|
milestones: z.ZodOptional<z.ZodObject<{
|
|
48761
48795
|
ratings: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
48762
48796
|
count: z.ZodNumber;
|
|
@@ -51578,6 +51612,8 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
51578
51612
|
longest: number;
|
|
51579
51613
|
timeZone?: string | undefined;
|
|
51580
51614
|
}>>;
|
|
51615
|
+
currentPickStreak: z.ZodOptional<z.ZodNumber>;
|
|
51616
|
+
allTimeHighStreak: z.ZodOptional<z.ZodNumber>;
|
|
51581
51617
|
milestones: z.ZodOptional<z.ZodObject<{
|
|
51582
51618
|
ratings: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
51583
51619
|
count: z.ZodNumber;
|
|
@@ -54381,6 +54417,8 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
54381
54417
|
longest: number;
|
|
54382
54418
|
timeZone?: string | undefined;
|
|
54383
54419
|
}>>;
|
|
54420
|
+
currentPickStreak: z.ZodOptional<z.ZodNumber>;
|
|
54421
|
+
allTimeHighStreak: z.ZodOptional<z.ZodNumber>;
|
|
54384
54422
|
milestones: z.ZodOptional<z.ZodObject<{
|
|
54385
54423
|
ratings: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
54386
54424
|
count: z.ZodNumber;
|
|
@@ -56017,6 +56055,8 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
56017
56055
|
longest: number;
|
|
56018
56056
|
timeZone?: string | undefined;
|
|
56019
56057
|
}>>;
|
|
56058
|
+
currentPickStreak: z.ZodOptional<z.ZodNumber>;
|
|
56059
|
+
allTimeHighStreak: z.ZodOptional<z.ZodNumber>;
|
|
56020
56060
|
milestones: z.ZodOptional<z.ZodObject<{
|
|
56021
56061
|
ratings: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
56022
56062
|
count: z.ZodNumber;
|
package/dist/schemas/list.d.ts
CHANGED
|
@@ -853,6 +853,8 @@ export declare const listSchema: z.ZodObject<{
|
|
|
853
853
|
longest: number;
|
|
854
854
|
timeZone?: string | undefined;
|
|
855
855
|
}>>;
|
|
856
|
+
currentPickStreak: z.ZodOptional<z.ZodNumber>;
|
|
857
|
+
allTimeHighStreak: z.ZodOptional<z.ZodNumber>;
|
|
856
858
|
milestones: z.ZodOptional<z.ZodObject<{
|
|
857
859
|
ratings: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
858
860
|
count: z.ZodNumber;
|
|
@@ -2081,6 +2083,8 @@ export declare const listCreateSchema: z.ZodObject<Omit<{
|
|
|
2081
2083
|
longest: number;
|
|
2082
2084
|
timeZone?: string | undefined;
|
|
2083
2085
|
}>>;
|
|
2086
|
+
currentPickStreak: z.ZodOptional<z.ZodNumber>;
|
|
2087
|
+
allTimeHighStreak: z.ZodOptional<z.ZodNumber>;
|
|
2084
2088
|
milestones: z.ZodOptional<z.ZodObject<{
|
|
2085
2089
|
ratings: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
2086
2090
|
count: z.ZodNumber;
|
|
@@ -3300,6 +3304,8 @@ export declare const listCommentSchema: z.ZodObject<{
|
|
|
3300
3304
|
longest: number;
|
|
3301
3305
|
timeZone?: string | undefined;
|
|
3302
3306
|
}>>;
|
|
3307
|
+
currentPickStreak: z.ZodOptional<z.ZodNumber>;
|
|
3308
|
+
allTimeHighStreak: z.ZodOptional<z.ZodNumber>;
|
|
3303
3309
|
milestones: z.ZodOptional<z.ZodObject<{
|
|
3304
3310
|
ratings: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
3305
3311
|
count: z.ZodNumber;
|
|
@@ -4477,6 +4483,8 @@ export declare const listCommentSchema: z.ZodObject<{
|
|
|
4477
4483
|
longest: number;
|
|
4478
4484
|
timeZone?: string | undefined;
|
|
4479
4485
|
}>>;
|
|
4486
|
+
currentPickStreak: z.ZodOptional<z.ZodNumber>;
|
|
4487
|
+
allTimeHighStreak: z.ZodOptional<z.ZodNumber>;
|
|
4480
4488
|
milestones: z.ZodOptional<z.ZodObject<{
|
|
4481
4489
|
ratings: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
4482
4490
|
count: z.ZodNumber;
|
|
@@ -5699,6 +5707,8 @@ export declare const listCommentLikeSchema: z.ZodObject<{
|
|
|
5699
5707
|
longest: number;
|
|
5700
5708
|
timeZone?: string | undefined;
|
|
5701
5709
|
}>>;
|
|
5710
|
+
currentPickStreak: z.ZodOptional<z.ZodNumber>;
|
|
5711
|
+
allTimeHighStreak: z.ZodOptional<z.ZodNumber>;
|
|
5702
5712
|
milestones: z.ZodOptional<z.ZodObject<{
|
|
5703
5713
|
ratings: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
5704
5714
|
count: z.ZodNumber;
|
|
@@ -865,6 +865,8 @@ export declare const banInfoSchema: z.ZodObject<{
|
|
|
865
865
|
longest: number;
|
|
866
866
|
timeZone?: string | undefined;
|
|
867
867
|
}>>;
|
|
868
|
+
currentPickStreak: z.ZodOptional<z.ZodNumber>;
|
|
869
|
+
allTimeHighStreak: z.ZodOptional<z.ZodNumber>;
|
|
868
870
|
milestones: z.ZodOptional<z.ZodObject<{
|
|
869
871
|
ratings: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
870
872
|
count: z.ZodNumber;
|
|
@@ -2069,6 +2071,8 @@ export declare const bannedUserSchema: z.ZodObject<{
|
|
|
2069
2071
|
longest: number;
|
|
2070
2072
|
timeZone?: string | undefined;
|
|
2071
2073
|
}>>;
|
|
2074
|
+
currentPickStreak: z.ZodOptional<z.ZodNumber>;
|
|
2075
|
+
allTimeHighStreak: z.ZodOptional<z.ZodNumber>;
|
|
2072
2076
|
milestones: z.ZodOptional<z.ZodObject<{
|
|
2073
2077
|
ratings: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
2074
2078
|
count: z.ZodNumber;
|
|
@@ -3309,6 +3313,8 @@ export declare const bannedUsersResponseSchema: z.ZodObject<{
|
|
|
3309
3313
|
longest: number;
|
|
3310
3314
|
timeZone?: string | undefined;
|
|
3311
3315
|
}>>;
|
|
3316
|
+
currentPickStreak: z.ZodOptional<z.ZodNumber>;
|
|
3317
|
+
allTimeHighStreak: z.ZodOptional<z.ZodNumber>;
|
|
3312
3318
|
milestones: z.ZodOptional<z.ZodObject<{
|
|
3313
3319
|
ratings: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
3314
3320
|
count: z.ZodNumber;
|
|
@@ -4593,6 +4599,8 @@ export declare const banStatusResponseSchema: z.ZodObject<{
|
|
|
4593
4599
|
longest: number;
|
|
4594
4600
|
timeZone?: string | undefined;
|
|
4595
4601
|
}>>;
|
|
4602
|
+
currentPickStreak: z.ZodOptional<z.ZodNumber>;
|
|
4603
|
+
allTimeHighStreak: z.ZodOptional<z.ZodNumber>;
|
|
4596
4604
|
milestones: z.ZodOptional<z.ZodObject<{
|
|
4597
4605
|
ratings: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
4598
4606
|
count: z.ZodNumber;
|
package/dist/schemas/pick.d.ts
CHANGED
|
@@ -848,6 +848,8 @@ export declare const pickSchema: z.ZodObject<{
|
|
|
848
848
|
longest: number;
|
|
849
849
|
timeZone?: string | undefined;
|
|
850
850
|
}>>;
|
|
851
|
+
currentPickStreak: z.ZodOptional<z.ZodNumber>;
|
|
852
|
+
allTimeHighStreak: z.ZodOptional<z.ZodNumber>;
|
|
851
853
|
milestones: z.ZodOptional<z.ZodObject<{
|
|
852
854
|
ratings: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
853
855
|
count: z.ZodNumber;
|
|
@@ -3152,6 +3154,8 @@ export declare const pickSchema: z.ZodObject<{
|
|
|
3152
3154
|
longest: number;
|
|
3153
3155
|
timeZone?: string | undefined;
|
|
3154
3156
|
}>>;
|
|
3157
|
+
currentPickStreak: z.ZodOptional<z.ZodNumber>;
|
|
3158
|
+
allTimeHighStreak: z.ZodOptional<z.ZodNumber>;
|
|
3155
3159
|
milestones: z.ZodOptional<z.ZodObject<{
|
|
3156
3160
|
ratings: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
3157
3161
|
count: z.ZodNumber;
|
|
@@ -5896,6 +5900,8 @@ export declare const pickSchema: z.ZodObject<{
|
|
|
5896
5900
|
longest: number;
|
|
5897
5901
|
timeZone?: string | undefined;
|
|
5898
5902
|
}>>;
|
|
5903
|
+
currentPickStreak: z.ZodOptional<z.ZodNumber>;
|
|
5904
|
+
allTimeHighStreak: z.ZodOptional<z.ZodNumber>;
|
|
5899
5905
|
milestones: z.ZodOptional<z.ZodObject<{
|
|
5900
5906
|
ratings: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
5901
5907
|
count: z.ZodNumber;
|
|
@@ -8661,6 +8667,8 @@ export declare const pickSchema: z.ZodObject<{
|
|
|
8661
8667
|
longest: number;
|
|
8662
8668
|
timeZone?: string | undefined;
|
|
8663
8669
|
}>>;
|
|
8670
|
+
currentPickStreak: z.ZodOptional<z.ZodNumber>;
|
|
8671
|
+
allTimeHighStreak: z.ZodOptional<z.ZodNumber>;
|
|
8664
8672
|
milestones: z.ZodOptional<z.ZodObject<{
|
|
8665
8673
|
ratings: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
8666
8674
|
count: z.ZodNumber;
|
|
@@ -11523,6 +11531,8 @@ export declare const pickSchema: z.ZodObject<{
|
|
|
11523
11531
|
longest: number;
|
|
11524
11532
|
timeZone?: string | undefined;
|
|
11525
11533
|
}>>;
|
|
11534
|
+
currentPickStreak: z.ZodOptional<z.ZodNumber>;
|
|
11535
|
+
allTimeHighStreak: z.ZodOptional<z.ZodNumber>;
|
|
11526
11536
|
milestones: z.ZodOptional<z.ZodObject<{
|
|
11527
11537
|
ratings: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
11528
11538
|
count: z.ZodNumber;
|
|
@@ -14344,6 +14354,8 @@ export declare const pickSchema: z.ZodObject<{
|
|
|
14344
14354
|
longest: number;
|
|
14345
14355
|
timeZone?: string | undefined;
|
|
14346
14356
|
}>>;
|
|
14357
|
+
currentPickStreak: z.ZodOptional<z.ZodNumber>;
|
|
14358
|
+
allTimeHighStreak: z.ZodOptional<z.ZodNumber>;
|
|
14347
14359
|
milestones: z.ZodOptional<z.ZodObject<{
|
|
14348
14360
|
ratings: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
14349
14361
|
count: z.ZodNumber;
|
|
@@ -17147,6 +17159,8 @@ export declare const pickSchema: z.ZodObject<{
|
|
|
17147
17159
|
longest: number;
|
|
17148
17160
|
timeZone?: string | undefined;
|
|
17149
17161
|
}>>;
|
|
17162
|
+
currentPickStreak: z.ZodOptional<z.ZodNumber>;
|
|
17163
|
+
allTimeHighStreak: z.ZodOptional<z.ZodNumber>;
|
|
17150
17164
|
milestones: z.ZodOptional<z.ZodObject<{
|
|
17151
17165
|
ratings: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
17152
17166
|
count: z.ZodNumber;
|
|
@@ -21566,6 +21580,8 @@ export declare const pickSubmissionDtoSchema: z.ZodObject<{
|
|
|
21566
21580
|
longest: number;
|
|
21567
21581
|
timeZone?: string | undefined;
|
|
21568
21582
|
}>>;
|
|
21583
|
+
currentPickStreak: z.ZodOptional<z.ZodNumber>;
|
|
21584
|
+
allTimeHighStreak: z.ZodOptional<z.ZodNumber>;
|
|
21569
21585
|
milestones: z.ZodOptional<z.ZodObject<{
|
|
21570
21586
|
ratings: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
21571
21587
|
count: z.ZodNumber;
|
|
@@ -23821,6 +23837,8 @@ export declare const pickSubmissionDtoSchema: z.ZodObject<{
|
|
|
23821
23837
|
longest: number;
|
|
23822
23838
|
timeZone?: string | undefined;
|
|
23823
23839
|
}>>;
|
|
23840
|
+
currentPickStreak: z.ZodOptional<z.ZodNumber>;
|
|
23841
|
+
allTimeHighStreak: z.ZodOptional<z.ZodNumber>;
|
|
23824
23842
|
milestones: z.ZodOptional<z.ZodObject<{
|
|
23825
23843
|
ratings: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
23826
23844
|
count: z.ZodNumber;
|
|
@@ -26565,6 +26583,8 @@ export declare const pickSubmissionDtoSchema: z.ZodObject<{
|
|
|
26565
26583
|
longest: number;
|
|
26566
26584
|
timeZone?: string | undefined;
|
|
26567
26585
|
}>>;
|
|
26586
|
+
currentPickStreak: z.ZodOptional<z.ZodNumber>;
|
|
26587
|
+
allTimeHighStreak: z.ZodOptional<z.ZodNumber>;
|
|
26568
26588
|
milestones: z.ZodOptional<z.ZodObject<{
|
|
26569
26589
|
ratings: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
26570
26590
|
count: z.ZodNumber;
|
|
@@ -29330,6 +29350,8 @@ export declare const pickSubmissionDtoSchema: z.ZodObject<{
|
|
|
29330
29350
|
longest: number;
|
|
29331
29351
|
timeZone?: string | undefined;
|
|
29332
29352
|
}>>;
|
|
29353
|
+
currentPickStreak: z.ZodOptional<z.ZodNumber>;
|
|
29354
|
+
allTimeHighStreak: z.ZodOptional<z.ZodNumber>;
|
|
29333
29355
|
milestones: z.ZodOptional<z.ZodObject<{
|
|
29334
29356
|
ratings: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
29335
29357
|
count: z.ZodNumber;
|
|
@@ -32192,6 +32214,8 @@ export declare const pickSubmissionDtoSchema: z.ZodObject<{
|
|
|
32192
32214
|
longest: number;
|
|
32193
32215
|
timeZone?: string | undefined;
|
|
32194
32216
|
}>>;
|
|
32217
|
+
currentPickStreak: z.ZodOptional<z.ZodNumber>;
|
|
32218
|
+
allTimeHighStreak: z.ZodOptional<z.ZodNumber>;
|
|
32195
32219
|
milestones: z.ZodOptional<z.ZodObject<{
|
|
32196
32220
|
ratings: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
32197
32221
|
count: z.ZodNumber;
|
|
@@ -35013,6 +35037,8 @@ export declare const pickSubmissionDtoSchema: z.ZodObject<{
|
|
|
35013
35037
|
longest: number;
|
|
35014
35038
|
timeZone?: string | undefined;
|
|
35015
35039
|
}>>;
|
|
35040
|
+
currentPickStreak: z.ZodOptional<z.ZodNumber>;
|
|
35041
|
+
allTimeHighStreak: z.ZodOptional<z.ZodNumber>;
|
|
35016
35042
|
milestones: z.ZodOptional<z.ZodObject<{
|
|
35017
35043
|
ratings: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
35018
35044
|
count: z.ZodNumber;
|
|
@@ -37816,6 +37842,8 @@ export declare const pickSubmissionDtoSchema: z.ZodObject<{
|
|
|
37816
37842
|
longest: number;
|
|
37817
37843
|
timeZone?: string | undefined;
|
|
37818
37844
|
}>>;
|
|
37845
|
+
currentPickStreak: z.ZodOptional<z.ZodNumber>;
|
|
37846
|
+
allTimeHighStreak: z.ZodOptional<z.ZodNumber>;
|
|
37819
37847
|
milestones: z.ZodOptional<z.ZodObject<{
|
|
37820
37848
|
ratings: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
37821
37849
|
count: z.ZodNumber;
|
|
@@ -42205,6 +42233,8 @@ export declare const userPickResponseDtoSchema: z.ZodObject<{
|
|
|
42205
42233
|
longest: number;
|
|
42206
42234
|
timeZone?: string | undefined;
|
|
42207
42235
|
}>>;
|
|
42236
|
+
currentPickStreak: z.ZodOptional<z.ZodNumber>;
|
|
42237
|
+
allTimeHighStreak: z.ZodOptional<z.ZodNumber>;
|
|
42208
42238
|
milestones: z.ZodOptional<z.ZodObject<{
|
|
42209
42239
|
ratings: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
42210
42240
|
count: z.ZodNumber;
|
|
@@ -44509,6 +44539,8 @@ export declare const userPickResponseDtoSchema: z.ZodObject<{
|
|
|
44509
44539
|
longest: number;
|
|
44510
44540
|
timeZone?: string | undefined;
|
|
44511
44541
|
}>>;
|
|
44542
|
+
currentPickStreak: z.ZodOptional<z.ZodNumber>;
|
|
44543
|
+
allTimeHighStreak: z.ZodOptional<z.ZodNumber>;
|
|
44512
44544
|
milestones: z.ZodOptional<z.ZodObject<{
|
|
44513
44545
|
ratings: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
44514
44546
|
count: z.ZodNumber;
|
|
@@ -47253,6 +47285,8 @@ export declare const userPickResponseDtoSchema: z.ZodObject<{
|
|
|
47253
47285
|
longest: number;
|
|
47254
47286
|
timeZone?: string | undefined;
|
|
47255
47287
|
}>>;
|
|
47288
|
+
currentPickStreak: z.ZodOptional<z.ZodNumber>;
|
|
47289
|
+
allTimeHighStreak: z.ZodOptional<z.ZodNumber>;
|
|
47256
47290
|
milestones: z.ZodOptional<z.ZodObject<{
|
|
47257
47291
|
ratings: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
47258
47292
|
count: z.ZodNumber;
|
|
@@ -50018,6 +50052,8 @@ export declare const userPickResponseDtoSchema: z.ZodObject<{
|
|
|
50018
50052
|
longest: number;
|
|
50019
50053
|
timeZone?: string | undefined;
|
|
50020
50054
|
}>>;
|
|
50055
|
+
currentPickStreak: z.ZodOptional<z.ZodNumber>;
|
|
50056
|
+
allTimeHighStreak: z.ZodOptional<z.ZodNumber>;
|
|
50021
50057
|
milestones: z.ZodOptional<z.ZodObject<{
|
|
50022
50058
|
ratings: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
50023
50059
|
count: z.ZodNumber;
|
|
@@ -52880,6 +52916,8 @@ export declare const userPickResponseDtoSchema: z.ZodObject<{
|
|
|
52880
52916
|
longest: number;
|
|
52881
52917
|
timeZone?: string | undefined;
|
|
52882
52918
|
}>>;
|
|
52919
|
+
currentPickStreak: z.ZodOptional<z.ZodNumber>;
|
|
52920
|
+
allTimeHighStreak: z.ZodOptional<z.ZodNumber>;
|
|
52883
52921
|
milestones: z.ZodOptional<z.ZodObject<{
|
|
52884
52922
|
ratings: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
52885
52923
|
count: z.ZodNumber;
|
|
@@ -55701,6 +55739,8 @@ export declare const userPickResponseDtoSchema: z.ZodObject<{
|
|
|
55701
55739
|
longest: number;
|
|
55702
55740
|
timeZone?: string | undefined;
|
|
55703
55741
|
}>>;
|
|
55742
|
+
currentPickStreak: z.ZodOptional<z.ZodNumber>;
|
|
55743
|
+
allTimeHighStreak: z.ZodOptional<z.ZodNumber>;
|
|
55704
55744
|
milestones: z.ZodOptional<z.ZodObject<{
|
|
55705
55745
|
ratings: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
55706
55746
|
count: z.ZodNumber;
|
|
@@ -58504,6 +58544,8 @@ export declare const userPickResponseDtoSchema: z.ZodObject<{
|
|
|
58504
58544
|
longest: number;
|
|
58505
58545
|
timeZone?: string | undefined;
|
|
58506
58546
|
}>>;
|
|
58547
|
+
currentPickStreak: z.ZodOptional<z.ZodNumber>;
|
|
58548
|
+
allTimeHighStreak: z.ZodOptional<z.ZodNumber>;
|
|
58507
58549
|
milestones: z.ZodOptional<z.ZodObject<{
|
|
58508
58550
|
ratings: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
58509
58551
|
count: z.ZodNumber;
|
|
@@ -65566,6 +65608,8 @@ export declare const gamePickUsersResponseDtoSchema: z.ZodObject<{
|
|
|
65566
65608
|
longest: number;
|
|
65567
65609
|
timeZone?: string | undefined;
|
|
65568
65610
|
}>>;
|
|
65611
|
+
currentPickStreak: z.ZodOptional<z.ZodNumber>;
|
|
65612
|
+
allTimeHighStreak: z.ZodOptional<z.ZodNumber>;
|
|
65569
65613
|
milestones: z.ZodOptional<z.ZodObject<{
|
|
65570
65614
|
ratings: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
65571
65615
|
count: z.ZodNumber;
|
|
@@ -66740,6 +66784,8 @@ export declare const gamePickUsersResponseDtoSchema: z.ZodObject<{
|
|
|
66740
66784
|
longest: number;
|
|
66741
66785
|
timeZone?: string | undefined;
|
|
66742
66786
|
}>>;
|
|
66787
|
+
currentPickStreak: z.ZodOptional<z.ZodNumber>;
|
|
66788
|
+
allTimeHighStreak: z.ZodOptional<z.ZodNumber>;
|
|
66743
66789
|
milestones: z.ZodOptional<z.ZodObject<{
|
|
66744
66790
|
ratings: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
66745
66791
|
count: z.ZodNumber;
|
|
@@ -67953,6 +67999,8 @@ export declare const gamePickUsersPaginatedResponseDtoSchema: z.ZodObject<{
|
|
|
67953
67999
|
longest: number;
|
|
67954
68000
|
timeZone?: string | undefined;
|
|
67955
68001
|
}>>;
|
|
68002
|
+
currentPickStreak: z.ZodOptional<z.ZodNumber>;
|
|
68003
|
+
allTimeHighStreak: z.ZodOptional<z.ZodNumber>;
|
|
67956
68004
|
milestones: z.ZodOptional<z.ZodObject<{
|
|
67957
68005
|
ratings: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
67958
68006
|
count: z.ZodNumber;
|
|
@@ -69212,6 +69260,8 @@ export declare const marchMadnessPicksResponseDtoSchema: z.ZodObject<{
|
|
|
69212
69260
|
longest: number;
|
|
69213
69261
|
timeZone?: string | undefined;
|
|
69214
69262
|
}>>;
|
|
69263
|
+
currentPickStreak: z.ZodOptional<z.ZodNumber>;
|
|
69264
|
+
allTimeHighStreak: z.ZodOptional<z.ZodNumber>;
|
|
69215
69265
|
milestones: z.ZodOptional<z.ZodObject<{
|
|
69216
69266
|
ratings: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
69217
69267
|
count: z.ZodNumber;
|
|
@@ -71516,6 +71566,8 @@ export declare const marchMadnessPicksResponseDtoSchema: z.ZodObject<{
|
|
|
71516
71566
|
longest: number;
|
|
71517
71567
|
timeZone?: string | undefined;
|
|
71518
71568
|
}>>;
|
|
71569
|
+
currentPickStreak: z.ZodOptional<z.ZodNumber>;
|
|
71570
|
+
allTimeHighStreak: z.ZodOptional<z.ZodNumber>;
|
|
71519
71571
|
milestones: z.ZodOptional<z.ZodObject<{
|
|
71520
71572
|
ratings: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
71521
71573
|
count: z.ZodNumber;
|
|
@@ -74260,6 +74312,8 @@ export declare const marchMadnessPicksResponseDtoSchema: z.ZodObject<{
|
|
|
74260
74312
|
longest: number;
|
|
74261
74313
|
timeZone?: string | undefined;
|
|
74262
74314
|
}>>;
|
|
74315
|
+
currentPickStreak: z.ZodOptional<z.ZodNumber>;
|
|
74316
|
+
allTimeHighStreak: z.ZodOptional<z.ZodNumber>;
|
|
74263
74317
|
milestones: z.ZodOptional<z.ZodObject<{
|
|
74264
74318
|
ratings: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
74265
74319
|
count: z.ZodNumber;
|
|
@@ -77025,6 +77079,8 @@ export declare const marchMadnessPicksResponseDtoSchema: z.ZodObject<{
|
|
|
77025
77079
|
longest: number;
|
|
77026
77080
|
timeZone?: string | undefined;
|
|
77027
77081
|
}>>;
|
|
77082
|
+
currentPickStreak: z.ZodOptional<z.ZodNumber>;
|
|
77083
|
+
allTimeHighStreak: z.ZodOptional<z.ZodNumber>;
|
|
77028
77084
|
milestones: z.ZodOptional<z.ZodObject<{
|
|
77029
77085
|
ratings: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
77030
77086
|
count: z.ZodNumber;
|
|
@@ -79887,6 +79943,8 @@ export declare const marchMadnessPicksResponseDtoSchema: z.ZodObject<{
|
|
|
79887
79943
|
longest: number;
|
|
79888
79944
|
timeZone?: string | undefined;
|
|
79889
79945
|
}>>;
|
|
79946
|
+
currentPickStreak: z.ZodOptional<z.ZodNumber>;
|
|
79947
|
+
allTimeHighStreak: z.ZodOptional<z.ZodNumber>;
|
|
79890
79948
|
milestones: z.ZodOptional<z.ZodObject<{
|
|
79891
79949
|
ratings: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
79892
79950
|
count: z.ZodNumber;
|
|
@@ -82708,6 +82766,8 @@ export declare const marchMadnessPicksResponseDtoSchema: z.ZodObject<{
|
|
|
82708
82766
|
longest: number;
|
|
82709
82767
|
timeZone?: string | undefined;
|
|
82710
82768
|
}>>;
|
|
82769
|
+
currentPickStreak: z.ZodOptional<z.ZodNumber>;
|
|
82770
|
+
allTimeHighStreak: z.ZodOptional<z.ZodNumber>;
|
|
82711
82771
|
milestones: z.ZodOptional<z.ZodObject<{
|
|
82712
82772
|
ratings: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
82713
82773
|
count: z.ZodNumber;
|
|
@@ -85511,6 +85571,8 @@ export declare const marchMadnessPicksResponseDtoSchema: z.ZodObject<{
|
|
|
85511
85571
|
longest: number;
|
|
85512
85572
|
timeZone?: string | undefined;
|
|
85513
85573
|
}>>;
|
|
85574
|
+
currentPickStreak: z.ZodOptional<z.ZodNumber>;
|
|
85575
|
+
allTimeHighStreak: z.ZodOptional<z.ZodNumber>;
|
|
85514
85576
|
milestones: z.ZodOptional<z.ZodObject<{
|
|
85515
85577
|
ratings: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
85516
85578
|
count: z.ZodNumber;
|
|
@@ -92582,6 +92644,8 @@ export declare const pickDeleteDtoSchema: z.ZodObject<{
|
|
|
92582
92644
|
longest: number;
|
|
92583
92645
|
timeZone?: string | undefined;
|
|
92584
92646
|
}>>;
|
|
92647
|
+
currentPickStreak: z.ZodOptional<z.ZodNumber>;
|
|
92648
|
+
allTimeHighStreak: z.ZodOptional<z.ZodNumber>;
|
|
92585
92649
|
milestones: z.ZodOptional<z.ZodObject<{
|
|
92586
92650
|
ratings: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
92587
92651
|
count: z.ZodNumber;
|
|
@@ -94886,6 +94950,8 @@ export declare const pickDeleteDtoSchema: z.ZodObject<{
|
|
|
94886
94950
|
longest: number;
|
|
94887
94951
|
timeZone?: string | undefined;
|
|
94888
94952
|
}>>;
|
|
94953
|
+
currentPickStreak: z.ZodOptional<z.ZodNumber>;
|
|
94954
|
+
allTimeHighStreak: z.ZodOptional<z.ZodNumber>;
|
|
94889
94955
|
milestones: z.ZodOptional<z.ZodObject<{
|
|
94890
94956
|
ratings: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
94891
94957
|
count: z.ZodNumber;
|
|
@@ -97630,6 +97696,8 @@ export declare const pickDeleteDtoSchema: z.ZodObject<{
|
|
|
97630
97696
|
longest: number;
|
|
97631
97697
|
timeZone?: string | undefined;
|
|
97632
97698
|
}>>;
|
|
97699
|
+
currentPickStreak: z.ZodOptional<z.ZodNumber>;
|
|
97700
|
+
allTimeHighStreak: z.ZodOptional<z.ZodNumber>;
|
|
97633
97701
|
milestones: z.ZodOptional<z.ZodObject<{
|
|
97634
97702
|
ratings: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
97635
97703
|
count: z.ZodNumber;
|
|
@@ -100395,6 +100463,8 @@ export declare const pickDeleteDtoSchema: z.ZodObject<{
|
|
|
100395
100463
|
longest: number;
|
|
100396
100464
|
timeZone?: string | undefined;
|
|
100397
100465
|
}>>;
|
|
100466
|
+
currentPickStreak: z.ZodOptional<z.ZodNumber>;
|
|
100467
|
+
allTimeHighStreak: z.ZodOptional<z.ZodNumber>;
|
|
100398
100468
|
milestones: z.ZodOptional<z.ZodObject<{
|
|
100399
100469
|
ratings: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
100400
100470
|
count: z.ZodNumber;
|
|
@@ -103257,6 +103327,8 @@ export declare const pickDeleteDtoSchema: z.ZodObject<{
|
|
|
103257
103327
|
longest: number;
|
|
103258
103328
|
timeZone?: string | undefined;
|
|
103259
103329
|
}>>;
|
|
103330
|
+
currentPickStreak: z.ZodOptional<z.ZodNumber>;
|
|
103331
|
+
allTimeHighStreak: z.ZodOptional<z.ZodNumber>;
|
|
103260
103332
|
milestones: z.ZodOptional<z.ZodObject<{
|
|
103261
103333
|
ratings: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
103262
103334
|
count: z.ZodNumber;
|
|
@@ -106078,6 +106150,8 @@ export declare const pickDeleteDtoSchema: z.ZodObject<{
|
|
|
106078
106150
|
longest: number;
|
|
106079
106151
|
timeZone?: string | undefined;
|
|
106080
106152
|
}>>;
|
|
106153
|
+
currentPickStreak: z.ZodOptional<z.ZodNumber>;
|
|
106154
|
+
allTimeHighStreak: z.ZodOptional<z.ZodNumber>;
|
|
106081
106155
|
milestones: z.ZodOptional<z.ZodObject<{
|
|
106082
106156
|
ratings: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
106083
106157
|
count: z.ZodNumber;
|
|
@@ -108881,6 +108955,8 @@ export declare const pickDeleteDtoSchema: z.ZodObject<{
|
|
|
108881
108955
|
longest: number;
|
|
108882
108956
|
timeZone?: string | undefined;
|
|
108883
108957
|
}>>;
|
|
108958
|
+
currentPickStreak: z.ZodOptional<z.ZodNumber>;
|
|
108959
|
+
allTimeHighStreak: z.ZodOptional<z.ZodNumber>;
|
|
108884
108960
|
milestones: z.ZodOptional<z.ZodObject<{
|
|
108885
108961
|
ratings: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
108886
108962
|
count: z.ZodNumber;
|