@artsy/cohesion 4.93.0 → 4.95.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/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,27 @@
|
|
|
1
|
+
# v4.95.0 (Tue Jan 17 2023)
|
|
2
|
+
|
|
3
|
+
#### 🚀 Enhancement
|
|
4
|
+
|
|
5
|
+
- chore: add context owner screen to ExperimentViewed [#392](https://github.com/artsy/cohesion/pull/392) ([@MounirDhahri](https://github.com/MounirDhahri))
|
|
6
|
+
|
|
7
|
+
#### Authors: 1
|
|
8
|
+
|
|
9
|
+
- Mounir Dhahri ([@MounirDhahri](https://github.com/MounirDhahri))
|
|
10
|
+
|
|
11
|
+
---
|
|
12
|
+
|
|
13
|
+
# v4.94.0 (Tue Jan 17 2023)
|
|
14
|
+
|
|
15
|
+
#### 🚀 Enhancement
|
|
16
|
+
|
|
17
|
+
- chore: add context module to ExperimentViewed [#391](https://github.com/artsy/cohesion/pull/391) ([@MounirDhahri](https://github.com/MounirDhahri))
|
|
18
|
+
|
|
19
|
+
#### Authors: 1
|
|
20
|
+
|
|
21
|
+
- Mounir Dhahri ([@MounirDhahri](https://github.com/MounirDhahri))
|
|
22
|
+
|
|
23
|
+
---
|
|
24
|
+
|
|
1
25
|
# v4.93.0 (Tue Jan 17 2023)
|
|
2
26
|
|
|
3
27
|
#### 🚀 Enhancement
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { ContextModule } from "../Values/ContextModule";
|
|
1
2
|
import { OwnerType } from "../Values/OwnerType";
|
|
2
3
|
import { ActionType } from ".";
|
|
3
4
|
/**
|
|
@@ -31,7 +32,9 @@ export interface ExperimentViewed {
|
|
|
31
32
|
experiment_name: string;
|
|
32
33
|
variant_name: string;
|
|
33
34
|
payload?: string;
|
|
35
|
+
context_module?: ContextModule;
|
|
34
36
|
context_owner_type: OwnerType;
|
|
37
|
+
context_owner_screen: OwnerType;
|
|
35
38
|
context_owner_id?: string;
|
|
36
39
|
context_owner_slug?: string;
|
|
37
40
|
}
|