rategame-shared 1.1.436 → 1.1.438

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.
@@ -689,4 +689,33 @@ exports.achievementsMap = {
689
689
  },
690
690
  type: "global",
691
691
  },
692
+ flow_state: {
693
+ id: "flow_state",
694
+ name: "Flow State",
695
+ description: "Reach a correct-pick streak.",
696
+ tiers: {
697
+ bronze: { threshold: 3 },
698
+ silver: { threshold: 7 },
699
+ gold: { threshold: 15 },
700
+ },
701
+ type: "global",
702
+ },
703
+ strive_for_greatness: {
704
+ id: "strive_for_greatness",
705
+ name: "Strive for Greatness",
706
+ description: "Correctly pick 23 games in a row.",
707
+ type: "global",
708
+ },
709
+ like_mike: {
710
+ id: "like_mike",
711
+ name: "Like Mike",
712
+ description: "Correctly pick 45 games in a row.",
713
+ type: "global",
714
+ },
715
+ joltin_joe: {
716
+ id: "joltin_joe",
717
+ name: "Joltin' Joe",
718
+ description: "Correctly pick 56 games in a row (the DiMaggio streak).",
719
+ type: "global",
720
+ },
692
721
  };
package/dist/index.d.ts CHANGED
@@ -21,6 +21,7 @@ export * from "./schemas/communityGame";
21
21
  export * from "./schemas/sharedTypes";
22
22
  export * from "./schemas/season";
23
23
  export * from "./schemas/trivia";
24
+ export * from "./schemas/article";
24
25
  export * from "./schemas/scorePrediction";
25
26
  export * from "./schemas/reactivation";
26
27
  export * from "./schemas/standings";
@@ -48,6 +49,7 @@ export * from "./models/pick";
48
49
  export * from "./models/communityGame";
49
50
  export * from "./models/season";
50
51
  export * from "./models/trivia";
52
+ export * from "./models/article";
51
53
  export * from "./models/scorePrediction";
52
54
  export * from "./models/reactivation";
53
55
  export * from "./models/standings";
package/dist/index.js CHANGED
@@ -37,6 +37,7 @@ __exportStar(require("./schemas/communityGame"), exports);
37
37
  __exportStar(require("./schemas/sharedTypes"), exports);
38
38
  __exportStar(require("./schemas/season"), exports);
39
39
  __exportStar(require("./schemas/trivia"), exports);
40
+ __exportStar(require("./schemas/article"), exports);
40
41
  __exportStar(require("./schemas/scorePrediction"), exports);
41
42
  __exportStar(require("./schemas/reactivation"), exports);
42
43
  __exportStar(require("./schemas/standings"), exports);
@@ -64,6 +65,7 @@ __exportStar(require("./models/pick"), exports);
64
65
  __exportStar(require("./models/communityGame"), exports);
65
66
  __exportStar(require("./models/season"), exports);
66
67
  __exportStar(require("./models/trivia"), exports);
68
+ __exportStar(require("./models/article"), exports);
67
69
  __exportStar(require("./models/scorePrediction"), exports);
68
70
  __exportStar(require("./models/reactivation"), exports);
69
71
  __exportStar(require("./models/standings"), exports);
@@ -0,0 +1,9 @@
1
+ import { z } from "zod";
2
+ import { articleSchema, articleEntitySchema, createArticleSchema, updateArticleSchema, searchArticleSchema, articleThreadCommentSchema, articleThreadCommentLikeSchema } from "../schemas/article";
3
+ export type Article = z.infer<typeof articleSchema>;
4
+ export type ArticleEntity = z.infer<typeof articleEntitySchema>;
5
+ export type CreateArticle = z.infer<typeof createArticleSchema>;
6
+ export type UpdateArticle = z.infer<typeof updateArticleSchema>;
7
+ export type SearchArticle = z.infer<typeof searchArticleSchema>;
8
+ export type ArticleThreadComment = z.infer<typeof articleThreadCommentSchema>;
9
+ export type ArticleThreadCommentLike = z.infer<typeof articleThreadCommentLikeSchema>;
@@ -0,0 +1,2 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });