rategame-shared 1.1.480 → 1.1.481
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/helpers/index.js +106 -0
- package/dist/schemas/article.d.ts +1817 -292
- package/dist/schemas/chat.d.ts +1720 -195
- package/dist/schemas/experience.d.ts +1361 -141
- package/dist/schemas/game.d.ts +6120 -20
- package/dist/schemas/list.d.ts +1810 -285
- package/dist/schemas/miniLeague.d.ts +3242 -479
- package/dist/schemas/moderation.d.ts +1257 -37
- package/dist/schemas/pick.d.ts +11628 -38
- package/dist/schemas/poll.d.ts +4896 -16
- package/dist/schemas/rating.d.ts +1012 -97
- package/dist/schemas/scorePrediction.d.ts +8262 -27
- package/dist/schemas/stadium.d.ts +1361 -141
- package/dist/schemas/trivia.d.ts +1817 -292
- package/dist/schemas/user.d.ts +1493 -358
- package/dist/schemas/user.js +25 -0
- package/dist/schemas/userEvent.d.ts +1120 -205
- package/dist/schemas/voting.d.ts +3286 -541
- package/package.json +1 -1
package/dist/helpers/index.js
CHANGED
|
@@ -721,6 +721,112 @@ exports.achievementsMap = {
|
|
|
721
721
|
type: "league",
|
|
722
722
|
league: "fifa",
|
|
723
723
|
},
|
|
724
|
+
yellow_wall: {
|
|
725
|
+
id: "yellow_wall",
|
|
726
|
+
name: "Yellow Wall",
|
|
727
|
+
description: "Rate 50 Bundesliga games.",
|
|
728
|
+
type: "league",
|
|
729
|
+
league: "bundesliga",
|
|
730
|
+
},
|
|
731
|
+
der_kaiser: {
|
|
732
|
+
id: "der_kaiser",
|
|
733
|
+
name: "Der Kaiser",
|
|
734
|
+
description: "Rate 100 Bundesliga games.",
|
|
735
|
+
type: "league",
|
|
736
|
+
league: "bundesliga",
|
|
737
|
+
},
|
|
738
|
+
der_bomber: {
|
|
739
|
+
id: "der_bomber",
|
|
740
|
+
name: "Der Bomber",
|
|
741
|
+
description: "Rate 200 Bundesliga games.",
|
|
742
|
+
type: "league",
|
|
743
|
+
league: "bundesliga",
|
|
744
|
+
},
|
|
745
|
+
golazo: {
|
|
746
|
+
id: "golazo",
|
|
747
|
+
name: "Golazo",
|
|
748
|
+
description: "Rate 50 La Liga games.",
|
|
749
|
+
type: "league",
|
|
750
|
+
league: "laliga",
|
|
751
|
+
},
|
|
752
|
+
el_fenomeno: {
|
|
753
|
+
id: "el_fenomeno",
|
|
754
|
+
name: "El Fenómeno",
|
|
755
|
+
description: "Rate 100 La Liga games.",
|
|
756
|
+
type: "league",
|
|
757
|
+
league: "laliga",
|
|
758
|
+
},
|
|
759
|
+
la_pulga: {
|
|
760
|
+
id: "la_pulga",
|
|
761
|
+
name: "La Pulga",
|
|
762
|
+
description: "Rate 260 La Liga games.",
|
|
763
|
+
type: "league",
|
|
764
|
+
league: "laliga",
|
|
765
|
+
},
|
|
766
|
+
catenaccio: {
|
|
767
|
+
id: "catenaccio",
|
|
768
|
+
name: "Catenaccio",
|
|
769
|
+
description: "Rate 50 Serie A games.",
|
|
770
|
+
type: "league",
|
|
771
|
+
league: "seriea",
|
|
772
|
+
},
|
|
773
|
+
il_capitano: {
|
|
774
|
+
id: "il_capitano",
|
|
775
|
+
name: "Il Capitano",
|
|
776
|
+
description: "Rate 100 Serie A games.",
|
|
777
|
+
type: "league",
|
|
778
|
+
league: "seriea",
|
|
779
|
+
},
|
|
780
|
+
il_divin_codino: {
|
|
781
|
+
id: "il_divin_codino",
|
|
782
|
+
name: "Il Divin Codino",
|
|
783
|
+
description: "Rate 260 Serie A games.",
|
|
784
|
+
type: "league",
|
|
785
|
+
league: "seriea",
|
|
786
|
+
},
|
|
787
|
+
le_classique: {
|
|
788
|
+
id: "le_classique",
|
|
789
|
+
name: "Le Classique",
|
|
790
|
+
description: "Rate 50 Ligue 1 games.",
|
|
791
|
+
type: "league",
|
|
792
|
+
league: "ligue1",
|
|
793
|
+
},
|
|
794
|
+
zizou: {
|
|
795
|
+
id: "zizou",
|
|
796
|
+
name: "Zizou",
|
|
797
|
+
description: "Rate 100 Ligue 1 games.",
|
|
798
|
+
type: "league",
|
|
799
|
+
league: "ligue1",
|
|
800
|
+
},
|
|
801
|
+
le_roi: {
|
|
802
|
+
id: "le_roi",
|
|
803
|
+
name: "Le Roi",
|
|
804
|
+
description: "Rate 200 Ligue 1 games.",
|
|
805
|
+
type: "league",
|
|
806
|
+
league: "ligue1",
|
|
807
|
+
},
|
|
808
|
+
the_anthem: {
|
|
809
|
+
id: "the_anthem",
|
|
810
|
+
name: "The Anthem",
|
|
811
|
+
description: "Rate 50 Champions League games.",
|
|
812
|
+
type: "league",
|
|
813
|
+
league: "ucl",
|
|
814
|
+
},
|
|
815
|
+
big_ears: {
|
|
816
|
+
id: "big_ears",
|
|
817
|
+
name: "Big Ears",
|
|
818
|
+
description: "Rate 100 Champions League games.",
|
|
819
|
+
type: "league",
|
|
820
|
+
league: "ucl",
|
|
821
|
+
},
|
|
822
|
+
starball: {
|
|
823
|
+
id: "starball",
|
|
824
|
+
name: "Starball",
|
|
825
|
+
description: "Rate every match of a Champions League season.",
|
|
826
|
+
type: "league",
|
|
827
|
+
league: "ucl",
|
|
828
|
+
seasonal: true,
|
|
829
|
+
},
|
|
724
830
|
a_list: {
|
|
725
831
|
id: "a_list",
|
|
726
832
|
name: "A-List",
|