rategame-shared 1.1.405 → 1.1.406

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.
@@ -423,6 +423,9 @@ export declare const internalNotification: z.ZodObject<{
423
423
  ratingCount?: number | undefined;
424
424
  };
425
425
  }>, "many">>;
426
+ deleted: z.ZodOptional<z.ZodBoolean>;
427
+ deletedAt: z.ZodOptional<z.ZodNumber>;
428
+ deletedBy: z.ZodOptional<z.ZodString>;
426
429
  }, "strip", z.ZodTypeAny, {
427
430
  id: string;
428
431
  user: {
@@ -528,6 +531,9 @@ export declare const internalNotification: z.ZodObject<{
528
531
  ratingCount?: number | undefined;
529
532
  };
530
533
  }[] | undefined;
534
+ deleted?: boolean | undefined;
535
+ deletedAt?: number | undefined;
536
+ deletedBy?: string | undefined;
531
537
  }, {
532
538
  id: string;
533
539
  user: {
@@ -633,6 +639,9 @@ export declare const internalNotification: z.ZodObject<{
633
639
  ratingCount?: number | undefined;
634
640
  };
635
641
  }[] | undefined;
642
+ deleted?: boolean | undefined;
643
+ deletedAt?: number | undefined;
644
+ deletedBy?: string | undefined;
636
645
  }>>;
637
646
  }, "strip", z.ZodTypeAny, {
638
647
  id: string;
@@ -755,6 +764,9 @@ export declare const internalNotification: z.ZodObject<{
755
764
  ratingCount?: number | undefined;
756
765
  };
757
766
  }[] | undefined;
767
+ deleted?: boolean | undefined;
768
+ deletedAt?: number | undefined;
769
+ deletedBy?: string | undefined;
758
770
  } | undefined;
759
771
  linkText?: string | undefined;
760
772
  }, {
@@ -878,6 +890,9 @@ export declare const internalNotification: z.ZodObject<{
878
890
  ratingCount?: number | undefined;
879
891
  };
880
892
  }[] | undefined;
893
+ deleted?: boolean | undefined;
894
+ deletedAt?: number | undefined;
895
+ deletedBy?: string | undefined;
881
896
  } | undefined;
882
897
  linkText?: string | undefined;
883
898
  }>;
@@ -527,6 +527,9 @@ export declare const ratingSchema: import("zod").ZodObject<{
527
527
  ratingCount?: number | undefined;
528
528
  };
529
529
  }>, "many">>;
530
+ deleted: import("zod").ZodOptional<import("zod").ZodBoolean>;
531
+ deletedAt: import("zod").ZodOptional<import("zod").ZodNumber>;
532
+ deletedBy: import("zod").ZodOptional<import("zod").ZodString>;
530
533
  }, "strip", import("zod").ZodTypeAny, {
531
534
  id: string;
532
535
  user: {
@@ -632,6 +635,9 @@ export declare const ratingSchema: import("zod").ZodObject<{
632
635
  ratingCount?: number | undefined;
633
636
  };
634
637
  }[] | undefined;
638
+ deleted?: boolean | undefined;
639
+ deletedAt?: number | undefined;
640
+ deletedBy?: string | undefined;
635
641
  }, {
636
642
  id: string;
637
643
  user: {
@@ -737,6 +743,9 @@ export declare const ratingSchema: import("zod").ZodObject<{
737
743
  ratingCount?: number | undefined;
738
744
  };
739
745
  }[] | undefined;
746
+ deleted?: boolean | undefined;
747
+ deletedAt?: number | undefined;
748
+ deletedBy?: string | undefined;
740
749
  }>;
741
750
  export declare const searchRatingSchema: import("zod").ZodObject<{
742
751
  q: import("zod").ZodOptional<import("zod").ZodString>;
@@ -1033,6 +1042,9 @@ export declare const createRatingSchema: import("zod").ZodObject<{
1033
1042
  ratingCount?: number | undefined;
1034
1043
  };
1035
1044
  }>, "many">>;
1045
+ deleted: import("zod").ZodOptional<import("zod").ZodBoolean>;
1046
+ deletedAt: import("zod").ZodOptional<import("zod").ZodNumber>;
1047
+ deletedBy: import("zod").ZodOptional<import("zod").ZodString>;
1036
1048
  } & {
1037
1049
  game: import("zod").ZodObject<Omit<{
1038
1050
  id: import("zod").ZodString;
@@ -1251,6 +1263,9 @@ export declare const createRatingSchema: import("zod").ZodObject<{
1251
1263
  ratingCount?: number | undefined;
1252
1264
  };
1253
1265
  }[] | undefined;
1266
+ deleted?: boolean | undefined;
1267
+ deletedAt?: number | undefined;
1268
+ deletedBy?: string | undefined;
1254
1269
  }, {
1255
1270
  rating: number;
1256
1271
  game: {
@@ -1311,6 +1326,9 @@ export declare const createRatingSchema: import("zod").ZodObject<{
1311
1326
  ratingCount?: number | undefined;
1312
1327
  };
1313
1328
  }[] | undefined;
1329
+ deleted?: boolean | undefined;
1330
+ deletedAt?: number | undefined;
1331
+ deletedBy?: string | undefined;
1314
1332
  }>;
1315
1333
  export declare const threadCommentSchema: import("zod").ZodObject<{
1316
1334
  id: import("zod").ZodString;
@@ -82,6 +82,9 @@ exports.ratingSchema = (0, zod_1.object)({
82
82
  userLocation: (0, zod_1.string)().optional().nullable(),
83
83
  pick: exports.ratingMiniPickSchema.optional(),
84
84
  events: (0, zod_1.array)(exports.ratingMiniEventSchema).optional(),
85
+ deleted: (0, zod_1.boolean)().optional(),
86
+ deletedAt: (0, zod_1.number)().optional(),
87
+ deletedBy: (0, zod_1.string)().optional(),
85
88
  });
86
89
  exports.searchRatingSchema = (0, zod_1.object)({
87
90
  q: (0, zod_1.string)().optional(),
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "rategame-shared",
3
- "version": "1.1.405",
3
+ "version": "1.1.406",
4
4
  "description": "This package contains shared resources for the Rate Game project.",
5
5
  "types": "./dist/index.d.ts",
6
6
  "main": "./dist/index.js",