rategame-shared 1.1.334 → 1.1.335
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.
|
@@ -38,6 +38,7 @@ export declare const experienceSchema: z.ZodObject<{
|
|
|
38
38
|
};
|
|
39
39
|
}>>;
|
|
40
40
|
createdAt: z.ZodNumber;
|
|
41
|
+
happenedAt: z.ZodNullable<z.ZodOptional<z.ZodNumber>>;
|
|
41
42
|
}, "strip", z.ZodTypeAny, {
|
|
42
43
|
id: string;
|
|
43
44
|
name: string;
|
|
@@ -55,6 +56,7 @@ export declare const experienceSchema: z.ZodObject<{
|
|
|
55
56
|
stadiumId?: string | null | undefined;
|
|
56
57
|
gameId?: string | null | undefined;
|
|
57
58
|
stadiumVenueName?: string | null | undefined;
|
|
59
|
+
happenedAt?: number | null | undefined;
|
|
58
60
|
}, {
|
|
59
61
|
id: string;
|
|
60
62
|
name: string;
|
|
@@ -72,6 +74,7 @@ export declare const experienceSchema: z.ZodObject<{
|
|
|
72
74
|
stadiumId?: string | null | undefined;
|
|
73
75
|
gameId?: string | null | undefined;
|
|
74
76
|
stadiumVenueName?: string | null | undefined;
|
|
77
|
+
happenedAt?: number | null | undefined;
|
|
75
78
|
}>;
|
|
76
79
|
export declare const experienceForRatingSchema: z.ZodObject<Omit<{
|
|
77
80
|
id: z.ZodString;
|
|
@@ -108,6 +111,7 @@ export declare const experienceForRatingSchema: z.ZodObject<Omit<{
|
|
|
108
111
|
};
|
|
109
112
|
}>>;
|
|
110
113
|
createdAt: z.ZodNumber;
|
|
114
|
+
happenedAt: z.ZodNullable<z.ZodOptional<z.ZodNumber>>;
|
|
111
115
|
}, "rating">, "strip", z.ZodTypeAny, {
|
|
112
116
|
id: string;
|
|
113
117
|
name: string;
|
|
@@ -118,6 +122,7 @@ export declare const experienceForRatingSchema: z.ZodObject<Omit<{
|
|
|
118
122
|
stadiumId?: string | null | undefined;
|
|
119
123
|
gameId?: string | null | undefined;
|
|
120
124
|
stadiumVenueName?: string | null | undefined;
|
|
125
|
+
happenedAt?: number | null | undefined;
|
|
121
126
|
}, {
|
|
122
127
|
id: string;
|
|
123
128
|
name: string;
|
|
@@ -128,6 +133,7 @@ export declare const experienceForRatingSchema: z.ZodObject<Omit<{
|
|
|
128
133
|
stadiumId?: string | null | undefined;
|
|
129
134
|
gameId?: string | null | undefined;
|
|
130
135
|
stadiumVenueName?: string | null | undefined;
|
|
136
|
+
happenedAt?: number | null | undefined;
|
|
131
137
|
}>;
|
|
132
138
|
/**
|
|
133
139
|
* Experience Rating schema
|
|
@@ -1271,6 +1277,7 @@ export declare const experienceRatingSchema: z.ZodObject<{
|
|
|
1271
1277
|
};
|
|
1272
1278
|
}>>;
|
|
1273
1279
|
createdAt: z.ZodNumber;
|
|
1280
|
+
happenedAt: z.ZodNullable<z.ZodOptional<z.ZodNumber>>;
|
|
1274
1281
|
}, "strip", z.ZodTypeAny, {
|
|
1275
1282
|
id: string;
|
|
1276
1283
|
name: string;
|
|
@@ -1288,6 +1295,7 @@ export declare const experienceRatingSchema: z.ZodObject<{
|
|
|
1288
1295
|
stadiumId?: string | null | undefined;
|
|
1289
1296
|
gameId?: string | null | undefined;
|
|
1290
1297
|
stadiumVenueName?: string | null | undefined;
|
|
1298
|
+
happenedAt?: number | null | undefined;
|
|
1291
1299
|
}, {
|
|
1292
1300
|
id: string;
|
|
1293
1301
|
name: string;
|
|
@@ -1305,6 +1313,7 @@ export declare const experienceRatingSchema: z.ZodObject<{
|
|
|
1305
1313
|
stadiumId?: string | null | undefined;
|
|
1306
1314
|
gameId?: string | null | undefined;
|
|
1307
1315
|
stadiumVenueName?: string | null | undefined;
|
|
1316
|
+
happenedAt?: number | null | undefined;
|
|
1308
1317
|
}>;
|
|
1309
1318
|
userLikes: z.ZodOptional<z.ZodNumber>;
|
|
1310
1319
|
updatedAt: z.ZodOptional<z.ZodNumber>;
|
|
@@ -1381,6 +1390,7 @@ export declare const experienceRatingSchema: z.ZodObject<{
|
|
|
1381
1390
|
stadiumId?: string | null | undefined;
|
|
1382
1391
|
gameId?: string | null | undefined;
|
|
1383
1392
|
stadiumVenueName?: string | null | undefined;
|
|
1393
|
+
happenedAt?: number | null | undefined;
|
|
1384
1394
|
};
|
|
1385
1395
|
updatedAt?: number | undefined;
|
|
1386
1396
|
comment?: string | undefined;
|
|
@@ -1426,6 +1436,7 @@ export declare const experienceRatingSchema: z.ZodObject<{
|
|
|
1426
1436
|
stadiumId?: string | null | undefined;
|
|
1427
1437
|
gameId?: string | null | undefined;
|
|
1428
1438
|
stadiumVenueName?: string | null | undefined;
|
|
1439
|
+
happenedAt?: number | null | undefined;
|
|
1429
1440
|
};
|
|
1430
1441
|
updatedAt?: number | undefined;
|
|
1431
1442
|
comment?: string | undefined;
|
|
@@ -2616,6 +2627,7 @@ export declare const createExperienceRatingSchema: z.ZodObject<z.objectUtil.exte
|
|
|
2616
2627
|
};
|
|
2617
2628
|
}>>;
|
|
2618
2629
|
createdAt: z.ZodNumber;
|
|
2630
|
+
happenedAt: z.ZodNullable<z.ZodOptional<z.ZodNumber>>;
|
|
2619
2631
|
}, "strip", z.ZodTypeAny, {
|
|
2620
2632
|
id: string;
|
|
2621
2633
|
name: string;
|
|
@@ -2633,6 +2645,7 @@ export declare const createExperienceRatingSchema: z.ZodObject<z.objectUtil.exte
|
|
|
2633
2645
|
stadiumId?: string | null | undefined;
|
|
2634
2646
|
gameId?: string | null | undefined;
|
|
2635
2647
|
stadiumVenueName?: string | null | undefined;
|
|
2648
|
+
happenedAt?: number | null | undefined;
|
|
2636
2649
|
}, {
|
|
2637
2650
|
id: string;
|
|
2638
2651
|
name: string;
|
|
@@ -2650,6 +2663,7 @@ export declare const createExperienceRatingSchema: z.ZodObject<z.objectUtil.exte
|
|
|
2650
2663
|
stadiumId?: string | null | undefined;
|
|
2651
2664
|
gameId?: string | null | undefined;
|
|
2652
2665
|
stadiumVenueName?: string | null | undefined;
|
|
2666
|
+
happenedAt?: number | null | undefined;
|
|
2653
2667
|
}>;
|
|
2654
2668
|
userLikes: z.ZodOptional<z.ZodNumber>;
|
|
2655
2669
|
updatedAt: z.ZodOptional<z.ZodNumber>;
|
|
@@ -2734,6 +2748,7 @@ export declare const createExperienceRatingSchema: z.ZodObject<z.objectUtil.exte
|
|
|
2734
2748
|
};
|
|
2735
2749
|
}>>;
|
|
2736
2750
|
createdAt: z.ZodNumber;
|
|
2751
|
+
happenedAt: z.ZodNullable<z.ZodOptional<z.ZodNumber>>;
|
|
2737
2752
|
}, "rating">, "strip", z.ZodTypeAny, {
|
|
2738
2753
|
id: string;
|
|
2739
2754
|
name: string;
|
|
@@ -2744,6 +2759,7 @@ export declare const createExperienceRatingSchema: z.ZodObject<z.objectUtil.exte
|
|
|
2744
2759
|
stadiumId?: string | null | undefined;
|
|
2745
2760
|
gameId?: string | null | undefined;
|
|
2746
2761
|
stadiumVenueName?: string | null | undefined;
|
|
2762
|
+
happenedAt?: number | null | undefined;
|
|
2747
2763
|
}, {
|
|
2748
2764
|
id: string;
|
|
2749
2765
|
name: string;
|
|
@@ -2754,6 +2770,7 @@ export declare const createExperienceRatingSchema: z.ZodObject<z.objectUtil.exte
|
|
|
2754
2770
|
stadiumId?: string | null | undefined;
|
|
2755
2771
|
gameId?: string | null | undefined;
|
|
2756
2772
|
stadiumVenueName?: string | null | undefined;
|
|
2773
|
+
happenedAt?: number | null | undefined;
|
|
2757
2774
|
}>;
|
|
2758
2775
|
}>, "strip", z.ZodTypeAny, {
|
|
2759
2776
|
id: string;
|
|
@@ -2775,6 +2792,7 @@ export declare const createExperienceRatingSchema: z.ZodObject<z.objectUtil.exte
|
|
|
2775
2792
|
stadiumId?: string | null | undefined;
|
|
2776
2793
|
gameId?: string | null | undefined;
|
|
2777
2794
|
stadiumVenueName?: string | null | undefined;
|
|
2795
|
+
happenedAt?: number | null | undefined;
|
|
2778
2796
|
};
|
|
2779
2797
|
updatedAt?: number | undefined;
|
|
2780
2798
|
comment?: string | undefined;
|
|
@@ -2812,6 +2830,7 @@ export declare const createExperienceRatingSchema: z.ZodObject<z.objectUtil.exte
|
|
|
2812
2830
|
stadiumId?: string | null | undefined;
|
|
2813
2831
|
gameId?: string | null | undefined;
|
|
2814
2832
|
stadiumVenueName?: string | null | undefined;
|
|
2833
|
+
happenedAt?: number | null | undefined;
|
|
2815
2834
|
};
|
|
2816
2835
|
updatedAt?: number | undefined;
|
|
2817
2836
|
comment?: string | undefined;
|
|
@@ -22,6 +22,7 @@ exports.experienceSchema = zod_1.z.object({
|
|
|
22
22
|
stadiumUrl: zod_1.z.string().optional().nullable(),
|
|
23
23
|
rating: stadium_1.stadiumRatingAggregateSchema.optional(),
|
|
24
24
|
createdAt: zod_1.z.number(),
|
|
25
|
+
happenedAt: zod_1.z.number().optional().nullable(),
|
|
25
26
|
});
|
|
26
27
|
// Simplified experience schema for rating creation (excludes rating aggregate data)
|
|
27
28
|
exports.experienceForRatingSchema = exports.experienceSchema.omit({
|