@akiver/cs-demo-analyzer 1.1.1 → 1.2.0
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
|
@@ -5,19 +5,20 @@ export declare const Game: {
|
|
|
5
5
|
};
|
|
6
6
|
export type Game = (typeof Game)[keyof typeof Game];
|
|
7
7
|
export declare const DemoSource: {
|
|
8
|
-
readonly Unknown: "unknown";
|
|
9
|
-
readonly Valve: "valve";
|
|
10
|
-
readonly Ebot: "ebot";
|
|
11
|
-
readonly Popflash: "popflash";
|
|
12
|
-
readonly FaceIt: "faceit";
|
|
13
8
|
readonly Cevo: "cevo";
|
|
14
9
|
readonly Challengermode: "challengermode";
|
|
15
|
-
readonly
|
|
10
|
+
readonly Ebot: "ebot";
|
|
16
11
|
readonly Esea: "esea";
|
|
12
|
+
readonly Esl: "esl";
|
|
17
13
|
readonly Esportal: "esportal";
|
|
14
|
+
readonly FaceIt: "faceit";
|
|
18
15
|
readonly Fastcup: "fastcup";
|
|
16
|
+
readonly FiveEPlay: "5eplay";
|
|
19
17
|
readonly Gamersclub: "gamersclub";
|
|
20
18
|
readonly PerfectWorld: "perfectworld";
|
|
19
|
+
readonly Popflash: "popflash";
|
|
20
|
+
readonly Unknown: "unknown";
|
|
21
|
+
readonly Valve: "valve";
|
|
21
22
|
};
|
|
22
23
|
export type DemoSource = (typeof DemoSource)[keyof typeof DemoSource];
|
|
23
24
|
export declare const SupportedDemoSources: DemoSource[];
|
package/dist/constants.js
CHANGED
|
@@ -7,30 +7,32 @@ exports.Game = {
|
|
|
7
7
|
CS2LT: 'CS2 LT',
|
|
8
8
|
};
|
|
9
9
|
exports.DemoSource = {
|
|
10
|
-
Unknown: 'unknown',
|
|
11
|
-
Valve: 'valve',
|
|
12
|
-
Ebot: 'ebot',
|
|
13
|
-
Popflash: 'popflash',
|
|
14
|
-
FaceIt: 'faceit',
|
|
15
10
|
Cevo: 'cevo',
|
|
16
11
|
Challengermode: 'challengermode',
|
|
17
|
-
|
|
12
|
+
Ebot: 'ebot',
|
|
18
13
|
Esea: 'esea',
|
|
14
|
+
Esl: 'esl',
|
|
19
15
|
Esportal: 'esportal',
|
|
16
|
+
FaceIt: 'faceit',
|
|
20
17
|
Fastcup: 'fastcup',
|
|
18
|
+
FiveEPlay: '5eplay',
|
|
21
19
|
Gamersclub: 'gamersclub',
|
|
22
20
|
PerfectWorld: 'perfectworld',
|
|
21
|
+
Popflash: 'popflash',
|
|
22
|
+
Unknown: 'unknown',
|
|
23
|
+
Valve: 'valve',
|
|
23
24
|
};
|
|
24
25
|
exports.SupportedDemoSources = [
|
|
25
|
-
exports.DemoSource.
|
|
26
|
-
exports.DemoSource.Esea,
|
|
27
|
-
exports.DemoSource.FaceIt,
|
|
26
|
+
exports.DemoSource.Challengermode,
|
|
28
27
|
exports.DemoSource.Ebot,
|
|
28
|
+
exports.DemoSource.Esea,
|
|
29
29
|
exports.DemoSource.Esl,
|
|
30
|
-
exports.DemoSource.
|
|
31
|
-
exports.DemoSource.
|
|
32
|
-
exports.DemoSource.PerfectWorld,
|
|
30
|
+
exports.DemoSource.FaceIt,
|
|
31
|
+
exports.DemoSource.FiveEPlay,
|
|
33
32
|
exports.DemoSource.Fastcup,
|
|
33
|
+
exports.DemoSource.PerfectWorld,
|
|
34
|
+
exports.DemoSource.Popflash,
|
|
35
|
+
exports.DemoSource.Valve,
|
|
34
36
|
];
|
|
35
37
|
exports.DemoType = {
|
|
36
38
|
POV: 'POV',
|
package/package.json
CHANGED