@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
|
package/dist/bin/darwin-x64/csda
CHANGED
|
Binary file
|
|
Binary file
|
package/dist/bin/linux-x64/csda
CHANGED
|
Binary file
|
|
Binary file
|
package/dist/constants.d.ts
CHANGED
|
@@ -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