@hawk.so/types 0.7.0 → 0.8.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.
|
@@ -50,6 +50,14 @@ export interface GroupedEventDBScheme {
|
|
|
50
50
|
* (created by the Collector)
|
|
51
51
|
*/
|
|
52
52
|
timestamp: number;
|
|
53
|
+
/**
|
|
54
|
+
* First release in which the event stopped occurring
|
|
55
|
+
*/
|
|
56
|
+
resolvedInRelease?: string;
|
|
57
|
+
/**
|
|
58
|
+
* First release in which the resolved event occurred again
|
|
59
|
+
*/
|
|
60
|
+
regressionInRelease?: string;
|
|
53
61
|
/**
|
|
54
62
|
* Event marks for tracking status
|
|
55
63
|
*/
|
|
@@ -13,6 +13,10 @@ export interface RepetitionDBScheme {
|
|
|
13
13
|
* Hash for grouping similar events
|
|
14
14
|
*/
|
|
15
15
|
groupHash: string;
|
|
16
|
+
/**
|
|
17
|
+
* Release in which the repetition occurred
|
|
18
|
+
*/
|
|
19
|
+
release?: string;
|
|
16
20
|
/**
|
|
17
21
|
* @deprecated use delta instead
|
|
18
22
|
* And any of EventData field with diff
|
package/package.json
CHANGED
|
@@ -60,6 +60,16 @@ export interface GroupedEventDBScheme {
|
|
|
60
60
|
*/
|
|
61
61
|
timestamp: number;
|
|
62
62
|
|
|
63
|
+
/**
|
|
64
|
+
* First release in which the event stopped occurring
|
|
65
|
+
*/
|
|
66
|
+
resolvedInRelease?: string;
|
|
67
|
+
|
|
68
|
+
/**
|
|
69
|
+
* First release in which the resolved event occurred again
|
|
70
|
+
*/
|
|
71
|
+
regressionInRelease?: string;
|
|
72
|
+
|
|
63
73
|
/**
|
|
64
74
|
* Event marks for tracking status
|
|
65
75
|
*/
|