@bugsplat/js-api-client 6.1.0 → 7.0.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.
- package/dist/cjs/crashes/crashes-api-row/crashes-api-row.d.ts +28 -0
- package/dist/cjs/crashes/crashes-api-row/crashes-api-row.js +29 -1
- package/dist/cjs/crashes/crashes-api-row/crashes-api-row.js.map +1 -1
- package/dist/cjs/crashes/key-crash-api-client/key-crash-page-data.d.ts +0 -4
- package/dist/cjs/crashes/key-crash-api-client/key-crash-page-data.js.map +1 -1
- package/dist/esm/crashes/crashes-api-row/crashes-api-row.d.ts +28 -0
- package/dist/esm/crashes/crashes-api-row/crashes-api-row.js +29 -0
- package/dist/esm/crashes/crashes-api-row/crashes-api-row.js.map +1 -1
- package/dist/esm/crashes/key-crash-api-client/key-crash-page-data.d.ts +0 -4
- package/dist/esm/crashes/key-crash-api-client/key-crash-page-data.js.map +1 -1
- package/package.json +1 -1
|
@@ -3,6 +3,7 @@ interface CrashData {
|
|
|
3
3
|
stackKey: string;
|
|
4
4
|
appName: string;
|
|
5
5
|
appVersion: string;
|
|
6
|
+
crashTypeId: CrashTypeId;
|
|
6
7
|
appDescription: string;
|
|
7
8
|
userDescription: string;
|
|
8
9
|
user: string;
|
|
@@ -32,6 +33,32 @@ export interface CrashesApiResponseRow extends CrashData {
|
|
|
32
33
|
Comments: string;
|
|
33
34
|
IpAddress: string;
|
|
34
35
|
}
|
|
36
|
+
export declare enum CrashTypeId {
|
|
37
|
+
unknown = 0,
|
|
38
|
+
windowsNative = 1,
|
|
39
|
+
java = 4,
|
|
40
|
+
crashpad = 6,
|
|
41
|
+
dotnet = 8,
|
|
42
|
+
unity = 12,
|
|
43
|
+
macOS = 13,
|
|
44
|
+
javascript = 14,
|
|
45
|
+
unityNative = 15,
|
|
46
|
+
unrealLinuxServer = 16,
|
|
47
|
+
unreal = 17,
|
|
48
|
+
dotnetStandard = 18,
|
|
49
|
+
angular = 19,
|
|
50
|
+
node = 20,
|
|
51
|
+
xml = 21,
|
|
52
|
+
electron = 22,
|
|
53
|
+
python = 23,
|
|
54
|
+
unityDotNetStandard = 24,
|
|
55
|
+
asan = 25,
|
|
56
|
+
iOS = 26,
|
|
57
|
+
xbox = 27,
|
|
58
|
+
ps4 = 28,
|
|
59
|
+
ps5 = 29,
|
|
60
|
+
playStationRecap = 30
|
|
61
|
+
}
|
|
35
62
|
export declare class CrashesApiRow implements CrashDataWithMappedProperties {
|
|
36
63
|
id: number;
|
|
37
64
|
groupByCount: number;
|
|
@@ -40,6 +67,7 @@ export declare class CrashesApiRow implements CrashDataWithMappedProperties {
|
|
|
40
67
|
stackKeyId: number;
|
|
41
68
|
appName: string;
|
|
42
69
|
appVersion: string;
|
|
70
|
+
crashTypeId: CrashTypeId;
|
|
43
71
|
appDescription: string;
|
|
44
72
|
userDescription: string;
|
|
45
73
|
user: string;
|
|
@@ -1,6 +1,33 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.CrashesApiRow = void 0;
|
|
3
|
+
exports.CrashesApiRow = exports.CrashTypeId = void 0;
|
|
4
|
+
var CrashTypeId;
|
|
5
|
+
(function (CrashTypeId) {
|
|
6
|
+
CrashTypeId[CrashTypeId["unknown"] = 0] = "unknown";
|
|
7
|
+
CrashTypeId[CrashTypeId["windowsNative"] = 1] = "windowsNative";
|
|
8
|
+
CrashTypeId[CrashTypeId["java"] = 4] = "java";
|
|
9
|
+
CrashTypeId[CrashTypeId["crashpad"] = 6] = "crashpad";
|
|
10
|
+
CrashTypeId[CrashTypeId["dotnet"] = 8] = "dotnet";
|
|
11
|
+
CrashTypeId[CrashTypeId["unity"] = 12] = "unity";
|
|
12
|
+
CrashTypeId[CrashTypeId["macOS"] = 13] = "macOS";
|
|
13
|
+
CrashTypeId[CrashTypeId["javascript"] = 14] = "javascript";
|
|
14
|
+
CrashTypeId[CrashTypeId["unityNative"] = 15] = "unityNative";
|
|
15
|
+
CrashTypeId[CrashTypeId["unrealLinuxServer"] = 16] = "unrealLinuxServer";
|
|
16
|
+
CrashTypeId[CrashTypeId["unreal"] = 17] = "unreal";
|
|
17
|
+
CrashTypeId[CrashTypeId["dotnetStandard"] = 18] = "dotnetStandard";
|
|
18
|
+
CrashTypeId[CrashTypeId["angular"] = 19] = "angular";
|
|
19
|
+
CrashTypeId[CrashTypeId["node"] = 20] = "node";
|
|
20
|
+
CrashTypeId[CrashTypeId["xml"] = 21] = "xml";
|
|
21
|
+
CrashTypeId[CrashTypeId["electron"] = 22] = "electron";
|
|
22
|
+
CrashTypeId[CrashTypeId["python"] = 23] = "python";
|
|
23
|
+
CrashTypeId[CrashTypeId["unityDotNetStandard"] = 24] = "unityDotNetStandard";
|
|
24
|
+
CrashTypeId[CrashTypeId["asan"] = 25] = "asan";
|
|
25
|
+
CrashTypeId[CrashTypeId["iOS"] = 26] = "iOS";
|
|
26
|
+
CrashTypeId[CrashTypeId["xbox"] = 27] = "xbox";
|
|
27
|
+
CrashTypeId[CrashTypeId["ps4"] = 28] = "ps4";
|
|
28
|
+
CrashTypeId[CrashTypeId["ps5"] = 29] = "ps5";
|
|
29
|
+
CrashTypeId[CrashTypeId["playStationRecap"] = 30] = "playStationRecap";
|
|
30
|
+
})(CrashTypeId = exports.CrashTypeId || (exports.CrashTypeId = {}));
|
|
4
31
|
var CrashesApiRow = (function () {
|
|
5
32
|
function CrashesApiRow(rawApiRow) {
|
|
6
33
|
this.id = Number(rawApiRow.id);
|
|
@@ -10,6 +37,7 @@ var CrashesApiRow = (function () {
|
|
|
10
37
|
this.stackId = Number(rawApiRow.stackId);
|
|
11
38
|
this.appName = rawApiRow.appName;
|
|
12
39
|
this.appVersion = rawApiRow.appVersion;
|
|
40
|
+
this.crashTypeId = rawApiRow.crashTypeId;
|
|
13
41
|
this.appDescription = rawApiRow.appDescription;
|
|
14
42
|
this.userDescription = rawApiRow.userDescription;
|
|
15
43
|
this.user = rawApiRow.user;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"crashes-api-row.js","sourceRoot":"","sources":["../../../../src/crashes/crashes-api-row/crashes-api-row.ts"],"names":[],"mappings":";;;
|
|
1
|
+
{"version":3,"file":"crashes-api-row.js","sourceRoot":"","sources":["../../../../src/crashes/crashes-api-row/crashes-api-row.ts"],"names":[],"mappings":";;;AAsCA,IAAY,WAyBX;AAzBD,WAAY,WAAW;IACrB,mDAAW,CAAA;IACX,+DAAiB,CAAA;IACjB,6CAAQ,CAAA;IACR,qDAAY,CAAA;IACZ,iDAAU,CAAA;IACV,gDAAU,CAAA;IACV,gDAAU,CAAA;IACV,0DAAe,CAAA;IACf,4DAAgB,CAAA;IAChB,wEAAsB,CAAA;IACtB,kDAAW,CAAA;IACX,kEAAmB,CAAA;IACnB,oDAAY,CAAA;IACZ,8CAAS,CAAA;IACT,4CAAQ,CAAA;IACR,sDAAa,CAAA;IACb,kDAAW,CAAA;IACX,4EAAwB,CAAA;IACxB,8CAAS,CAAA;IACT,4CAAQ,CAAA;IACR,8CAAS,CAAA;IACT,4CAAQ,CAAA;IACR,4CAAQ,CAAA;IACR,sEAAqB,CAAA;AACvB,CAAC,EAzBW,WAAW,GAAX,mBAAW,KAAX,mBAAW,QAyBtB;AAED;IA0BE,uBAAY,SAAgC;QAC1C,IAAI,CAAC,EAAE,GAAG,MAAM,CAAC,SAAS,CAAC,EAAE,CAAC,CAAC;QAC/B,IAAI,CAAC,YAAY,GAAG,MAAM,CAAC,SAAS,CAAC,YAAY,IAAI,CAAC,CAAC,CAAC;QACxD,IAAI,CAAC,QAAQ,GAAG,SAAS,CAAC,QAAQ,CAAC;QACnC,IAAI,CAAC,UAAU,GAAG,MAAM,CAAC,SAAS,CAAC,UAAU,CAAC,CAAC;QAC/C,IAAI,CAAC,OAAO,GAAG,MAAM,CAAC,SAAS,CAAC,OAAO,CAAC,CAAC;QACzC,IAAI,CAAC,OAAO,GAAG,SAAS,CAAC,OAAO,CAAC;QACjC,IAAI,CAAC,UAAU,GAAG,SAAS,CAAC,UAAU,CAAC;QACvC,IAAI,CAAC,WAAW,GAAG,SAAS,CAAC,WAAW,CAAC;QACzC,IAAI,CAAC,cAAc,GAAG,SAAS,CAAC,cAAc,CAAC;QAC/C,IAAI,CAAC,eAAe,GAAG,SAAS,CAAC,eAAe,CAAC;QACjD,IAAI,CAAC,IAAI,GAAG,SAAS,CAAC,IAAI,CAAC;QAC3B,IAAI,CAAC,KAAK,GAAG,SAAS,CAAC,KAAK,CAAC;QAC7B,IAAI,CAAC,SAAS,GAAG,SAAS,CAAC,SAAS,CAAC;QACrC,IAAI,CAAC,SAAS,GAAG,SAAS,CAAC,SAAS,CAAC;QACrC,IAAI,CAAC,QAAQ,GAAG,SAAS,CAAC,QAAQ,CAAC;QACnC,IAAI,CAAC,SAAS,GAAG,SAAS,CAAC,SAAS,CAAC;QACrC,IAAI,CAAC,WAAW,GAAG,SAAS,CAAC,WAAW,CAAC;QACzC,IAAI,CAAC,UAAU,GAAG,SAAS,CAAC,UAAU,CAAC;QACvC,IAAI,CAAC,WAAW,GAAG,SAAS,CAAC,WAAW,CAAC;QACzC,IAAI,CAAC,aAAa,GAAG,SAAS,CAAC,aAAa,CAAC;QAC7C,IAAI,CAAC,QAAQ,GAAG,SAAS,CAAC,QAAQ,CAAC;QACnC,IAAI,CAAC,UAAU,GAAG,SAAS,CAAC,UAAU,CAAC;QACvC,IAAI,CAAC,aAAa,GAAG,SAAS,CAAC,aAAa,CAAC;QAC7C,IAAI,CAAC,gBAAgB,GAAG,SAAS,CAAC,gBAAgB,CAAC;QAEnD,MAAM,CAAC,MAAM,CAAC,IAAI,CAAC,CAAC;IACtB,CAAC;IACH,oBAAC;AAAD,CAAC,AAtDD,IAsDC;AAtDY,sCAAa"}
|
|
@@ -3,10 +3,6 @@ import { DefectTrackerType } from '../../crash/crash-details/crash-details';
|
|
|
3
3
|
import { EventResponseObject } from '../../events/events-api-client/event';
|
|
4
4
|
export interface KeyCrashPageData {
|
|
5
5
|
stackKeyId: number;
|
|
6
|
-
isSubBucket: boolean;
|
|
7
|
-
isSubKeyedStack: boolean;
|
|
8
|
-
primaryStackKeyId: number;
|
|
9
|
-
subKeyDepth: number;
|
|
10
6
|
stackKey: string;
|
|
11
7
|
defectTracker: boolean;
|
|
12
8
|
defectTrackerType: DefectTrackerType;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"key-crash-page-data.js","sourceRoot":"","sources":["../../../../src/crashes/key-crash-api-client/key-crash-page-data.ts"],"names":[],"mappings":";;;;;;;;;;;;;;AAEA,8DAAyF;
|
|
1
|
+
{"version":3,"file":"key-crash-page-data.js","sourceRoot":"","sources":["../../../../src/crashes/key-crash-api-client/key-crash-page-data.ts"],"names":[],"mappings":";;;;;;;;;;;;;;AAEA,8DAAyF;AAgBzF,SAAgB,sBAAsB,CAAC,QAAqC;IACxE,IAAM,MAAM,GAAG,IAAA,oBAAY,EAAC,QAAQ,CAAC,MAAM,CAAC,CAAC;IAC7C,6BACO,QAAQ,KACX,MAAM,QAAA,IACR;AACN,CAAC;AAND,wDAMC"}
|
|
@@ -3,6 +3,7 @@ interface CrashData {
|
|
|
3
3
|
stackKey: string;
|
|
4
4
|
appName: string;
|
|
5
5
|
appVersion: string;
|
|
6
|
+
crashTypeId: CrashTypeId;
|
|
6
7
|
appDescription: string;
|
|
7
8
|
userDescription: string;
|
|
8
9
|
user: string;
|
|
@@ -32,6 +33,32 @@ export interface CrashesApiResponseRow extends CrashData {
|
|
|
32
33
|
Comments: string;
|
|
33
34
|
IpAddress: string;
|
|
34
35
|
}
|
|
36
|
+
export declare enum CrashTypeId {
|
|
37
|
+
unknown = 0,
|
|
38
|
+
windowsNative = 1,
|
|
39
|
+
java = 4,
|
|
40
|
+
crashpad = 6,
|
|
41
|
+
dotnet = 8,
|
|
42
|
+
unity = 12,
|
|
43
|
+
macOS = 13,
|
|
44
|
+
javascript = 14,
|
|
45
|
+
unityNative = 15,
|
|
46
|
+
unrealLinuxServer = 16,
|
|
47
|
+
unreal = 17,
|
|
48
|
+
dotnetStandard = 18,
|
|
49
|
+
angular = 19,
|
|
50
|
+
node = 20,
|
|
51
|
+
xml = 21,
|
|
52
|
+
electron = 22,
|
|
53
|
+
python = 23,
|
|
54
|
+
unityDotNetStandard = 24,
|
|
55
|
+
asan = 25,
|
|
56
|
+
iOS = 26,
|
|
57
|
+
xbox = 27,
|
|
58
|
+
ps4 = 28,
|
|
59
|
+
ps5 = 29,
|
|
60
|
+
playStationRecap = 30
|
|
61
|
+
}
|
|
35
62
|
export declare class CrashesApiRow implements CrashDataWithMappedProperties {
|
|
36
63
|
id: number;
|
|
37
64
|
groupByCount: number;
|
|
@@ -40,6 +67,7 @@ export declare class CrashesApiRow implements CrashDataWithMappedProperties {
|
|
|
40
67
|
stackKeyId: number;
|
|
41
68
|
appName: string;
|
|
42
69
|
appVersion: string;
|
|
70
|
+
crashTypeId: CrashTypeId;
|
|
43
71
|
appDescription: string;
|
|
44
72
|
userDescription: string;
|
|
45
73
|
user: string;
|
|
@@ -1,3 +1,30 @@
|
|
|
1
|
+
export var CrashTypeId;
|
|
2
|
+
(function (CrashTypeId) {
|
|
3
|
+
CrashTypeId[CrashTypeId["unknown"] = 0] = "unknown";
|
|
4
|
+
CrashTypeId[CrashTypeId["windowsNative"] = 1] = "windowsNative";
|
|
5
|
+
CrashTypeId[CrashTypeId["java"] = 4] = "java";
|
|
6
|
+
CrashTypeId[CrashTypeId["crashpad"] = 6] = "crashpad";
|
|
7
|
+
CrashTypeId[CrashTypeId["dotnet"] = 8] = "dotnet";
|
|
8
|
+
CrashTypeId[CrashTypeId["unity"] = 12] = "unity";
|
|
9
|
+
CrashTypeId[CrashTypeId["macOS"] = 13] = "macOS";
|
|
10
|
+
CrashTypeId[CrashTypeId["javascript"] = 14] = "javascript";
|
|
11
|
+
CrashTypeId[CrashTypeId["unityNative"] = 15] = "unityNative";
|
|
12
|
+
CrashTypeId[CrashTypeId["unrealLinuxServer"] = 16] = "unrealLinuxServer";
|
|
13
|
+
CrashTypeId[CrashTypeId["unreal"] = 17] = "unreal";
|
|
14
|
+
CrashTypeId[CrashTypeId["dotnetStandard"] = 18] = "dotnetStandard";
|
|
15
|
+
CrashTypeId[CrashTypeId["angular"] = 19] = "angular";
|
|
16
|
+
CrashTypeId[CrashTypeId["node"] = 20] = "node";
|
|
17
|
+
CrashTypeId[CrashTypeId["xml"] = 21] = "xml";
|
|
18
|
+
CrashTypeId[CrashTypeId["electron"] = 22] = "electron";
|
|
19
|
+
CrashTypeId[CrashTypeId["python"] = 23] = "python";
|
|
20
|
+
CrashTypeId[CrashTypeId["unityDotNetStandard"] = 24] = "unityDotNetStandard";
|
|
21
|
+
CrashTypeId[CrashTypeId["asan"] = 25] = "asan";
|
|
22
|
+
CrashTypeId[CrashTypeId["iOS"] = 26] = "iOS";
|
|
23
|
+
CrashTypeId[CrashTypeId["xbox"] = 27] = "xbox";
|
|
24
|
+
CrashTypeId[CrashTypeId["ps4"] = 28] = "ps4";
|
|
25
|
+
CrashTypeId[CrashTypeId["ps5"] = 29] = "ps5";
|
|
26
|
+
CrashTypeId[CrashTypeId["playStationRecap"] = 30] = "playStationRecap";
|
|
27
|
+
})(CrashTypeId || (CrashTypeId = {}));
|
|
1
28
|
export class CrashesApiRow {
|
|
2
29
|
id;
|
|
3
30
|
groupByCount;
|
|
@@ -6,6 +33,7 @@ export class CrashesApiRow {
|
|
|
6
33
|
stackKeyId;
|
|
7
34
|
appName;
|
|
8
35
|
appVersion;
|
|
36
|
+
crashTypeId;
|
|
9
37
|
appDescription;
|
|
10
38
|
userDescription;
|
|
11
39
|
user;
|
|
@@ -30,6 +58,7 @@ export class CrashesApiRow {
|
|
|
30
58
|
this.stackId = Number(rawApiRow.stackId);
|
|
31
59
|
this.appName = rawApiRow.appName;
|
|
32
60
|
this.appVersion = rawApiRow.appVersion;
|
|
61
|
+
this.crashTypeId = rawApiRow.crashTypeId;
|
|
33
62
|
this.appDescription = rawApiRow.appDescription;
|
|
34
63
|
this.userDescription = rawApiRow.userDescription;
|
|
35
64
|
this.user = rawApiRow.user;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"crashes-api-row.js","sourceRoot":"","sources":["../../../../src/crashes/crashes-api-row/crashes-api-row.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"crashes-api-row.js","sourceRoot":"","sources":["../../../../src/crashes/crashes-api-row/crashes-api-row.ts"],"names":[],"mappings":"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"}
|
|
@@ -3,10 +3,6 @@ import { DefectTrackerType } from '../../crash/crash-details/crash-details';
|
|
|
3
3
|
import { EventResponseObject } from '../../events/events-api-client/event';
|
|
4
4
|
export interface KeyCrashPageData {
|
|
5
5
|
stackKeyId: number;
|
|
6
|
-
isSubBucket: boolean;
|
|
7
|
-
isSubKeyedStack: boolean;
|
|
8
|
-
primaryStackKeyId: number;
|
|
9
|
-
subKeyDepth: number;
|
|
10
6
|
stackKey: string;
|
|
11
7
|
defectTracker: boolean;
|
|
12
8
|
defectTrackerType: DefectTrackerType;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"key-crash-page-data.js","sourceRoot":"","sources":["../../../../src/crashes/key-crash-api-client/key-crash-page-data.ts"],"names":[],"mappings":"AAEA,OAAO,EAAE,YAAY,EAAuB,MAAM,sCAAsC,CAAC;
|
|
1
|
+
{"version":3,"file":"key-crash-page-data.js","sourceRoot":"","sources":["../../../../src/crashes/key-crash-api-client/key-crash-page-data.ts"],"names":[],"mappings":"AAEA,OAAO,EAAE,YAAY,EAAuB,MAAM,sCAAsC,CAAC;AAgBzF,MAAM,UAAU,sBAAsB,CAAC,QAAqC;IACxE,MAAM,MAAM,GAAG,YAAY,CAAC,QAAQ,CAAC,MAAM,CAAC,CAAC;IAC7C,OAAO;QACH,GAAG,QAAQ;QACX,MAAM;KACT,CAAC;AACN,CAAC"}
|