@artsy/cohesion 4.197.0 → 4.198.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 +12 -0
- package/dist/Schema/Events/Click.d.ts +4 -4
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,15 @@
|
|
|
1
|
+
# v4.198.0 (Tue Aug 06 2024)
|
|
2
|
+
|
|
3
|
+
#### 🚀 Enhancement
|
|
4
|
+
|
|
5
|
+
- fix: updating the app upsell tracking events [#518](https://github.com/artsy/cohesion/pull/518) ([@leodmz](https://github.com/leodmz))
|
|
6
|
+
|
|
7
|
+
#### Authors: 1
|
|
8
|
+
|
|
9
|
+
- Leo Demazeau ([@leodmz](https://github.com/leodmz))
|
|
10
|
+
|
|
11
|
+
---
|
|
12
|
+
|
|
1
13
|
# v4.197.0 (Mon Aug 05 2024)
|
|
2
14
|
|
|
3
15
|
#### 🚀 Enhancement
|
|
@@ -2172,9 +2172,9 @@ export interface ClickedCompleteYourProfile {
|
|
|
2172
2172
|
export interface ClickedDownloadAppHeader {
|
|
2173
2173
|
action: ActionType.clickedDownloadAppHeader;
|
|
2174
2174
|
context_page_owner_type: PageOwnerType;
|
|
2175
|
-
context_page_owner_id
|
|
2175
|
+
context_page_owner_id?: string;
|
|
2176
2176
|
context_page_owner_slug?: string;
|
|
2177
|
-
user_id
|
|
2177
|
+
user_id?: string;
|
|
2178
2178
|
}
|
|
2179
2179
|
/**
|
|
2180
2180
|
* A user clicks on the footer taking them to the app store
|
|
@@ -2185,7 +2185,7 @@ export interface ClickedDownloadAppHeader {
|
|
|
2185
2185
|
export interface ClickedDownloadAppFooter {
|
|
2186
2186
|
action: ActionType.clickedDownloadAppFooter;
|
|
2187
2187
|
context_page_owner_type: PageOwnerType;
|
|
2188
|
-
context_page_owner_id
|
|
2188
|
+
context_page_owner_id?: string;
|
|
2189
2189
|
context_page_owner_slug?: string;
|
|
2190
|
-
user_id
|
|
2190
|
+
user_id?: string;
|
|
2191
2191
|
}
|