rategame-shared 1.1.204 → 1.1.206
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 +21 -0
- package/dist/schemas/chat.d.ts +851 -4
- package/dist/schemas/chat.js +13 -0
- package/dist/schemas/game.d.ts +20 -20
- package/dist/schemas/list.d.ts +5 -5
- package/dist/schemas/rating.d.ts +3 -3
- package/dist/schemas/user.d.ts +8 -8
- package/dist/schemas/user.js +3 -0
- package/package.json +1 -1
package/dist/helpers/index.js
CHANGED
|
@@ -438,4 +438,25 @@ exports.achievementsMap = {
|
|
|
438
438
|
type: "league",
|
|
439
439
|
league: "mls",
|
|
440
440
|
},
|
|
441
|
+
queenb: {
|
|
442
|
+
id: "queenb",
|
|
443
|
+
name: "Queen B",
|
|
444
|
+
description: "Rate an entire season of WNBA.",
|
|
445
|
+
type: "league",
|
|
446
|
+
league: "wnba",
|
|
447
|
+
},
|
|
448
|
+
tau3asi: {
|
|
449
|
+
id: "tau3asi",
|
|
450
|
+
name: "Tau3asi",
|
|
451
|
+
description: "Rate 100 WNBA games.",
|
|
452
|
+
type: "league",
|
|
453
|
+
league: "wnba",
|
|
454
|
+
},
|
|
455
|
+
lobos_legacy: {
|
|
456
|
+
id: "lobos_legacy",
|
|
457
|
+
name: "Lobo's Legacy",
|
|
458
|
+
description: "Rate 50 WNBA games.",
|
|
459
|
+
type: "league",
|
|
460
|
+
league: "wnba",
|
|
461
|
+
},
|
|
441
462
|
};
|