@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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@hawk.so/types",
3
- "version": "0.7.0",
3
+ "version": "0.8.0",
4
4
  "description": "TypeScript definitions for Hawk",
5
5
  "types": "build/index.d.ts",
6
6
  "main": "build/index.js",
@@ -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
  */
@@ -16,6 +16,11 @@ export interface RepetitionDBScheme {
16
16
  */
17
17
  groupHash: string;
18
18
 
19
+ /**
20
+ * Release in which the repetition occurred
21
+ */
22
+ release?: string;
23
+
19
24
  /**
20
25
  * @deprecated use delta instead
21
26
  * And any of EventData field with diff