@akiver/cs-demo-analyzer 1.0.4 → 1.0.6

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.
Binary file
Binary file
Binary file
Binary file
Binary file
@@ -17,6 +17,7 @@ export declare const DemoSource: {
17
17
  readonly Esportal: "esportal";
18
18
  readonly Fastcup: "fastcup";
19
19
  readonly Gamersclub: "gamersclub";
20
+ readonly PerfectWorld: "perfectworld";
20
21
  };
21
22
  export type DemoSource = (typeof DemoSource)[keyof typeof DemoSource];
22
23
  export declare const SupportedDemoSources: DemoSource[];
@@ -301,5 +302,13 @@ export declare const GameMode: {
301
302
  readonly Competitive: "competitive";
302
303
  readonly Scrimmage2V2: "scrimcomp2v2";
303
304
  readonly Scrimmage5V5: "scrimcomp5v5";
305
+ readonly Deathmatch: "deathmatch";
306
+ readonly GunGameProgressive: "gungameprogressive";
307
+ readonly GunGameBomb: "gungametrbomb";
308
+ readonly Custom: "custom";
309
+ readonly CoOperative: "cooperative";
310
+ readonly CoOperativeMission: "coopmission";
311
+ readonly Skirmish: "skirmish";
312
+ readonly Survival: "survival";
304
313
  };
305
314
  export type GameMode = (typeof GameMode)[keyof typeof GameMode];
package/dist/constants.js CHANGED
@@ -19,6 +19,7 @@ exports.DemoSource = {
19
19
  Esportal: 'esportal',
20
20
  Fastcup: 'fastcup',
21
21
  Gamersclub: 'gamersclub',
22
+ PerfectWorld: 'perfectworld',
22
23
  };
23
24
  exports.SupportedDemoSources = [
24
25
  exports.DemoSource.Valve,
@@ -285,4 +286,12 @@ exports.GameMode = {
285
286
  Competitive: 'competitive',
286
287
  Scrimmage2V2: 'scrimcomp2v2',
287
288
  Scrimmage5V5: 'scrimcomp5v5',
289
+ Deathmatch: 'deathmatch',
290
+ GunGameProgressive: 'gungameprogressive',
291
+ GunGameBomb: 'gungametrbomb',
292
+ Custom: 'custom',
293
+ CoOperative: 'cooperative',
294
+ CoOperativeMission: 'coopmission',
295
+ Skirmish: 'skirmish',
296
+ Survival: 'survival',
288
297
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@akiver/cs-demo-analyzer",
3
- "version": "1.0.4",
3
+ "version": "1.0.6",
4
4
  "description": "Analyze and extract data from Counter-Strike demos.",
5
5
  "repository": "https://github.com/akiver/cs-demo-analyzer",
6
6
  "main": "./dist/index.js",