@artsy/cohesion 4.251.0 → 4.252.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,15 @@
|
|
|
1
|
+
# v4.252.0 (Wed Apr 09 2025)
|
|
2
|
+
|
|
3
|
+
#### 🚀 Enhancement
|
|
4
|
+
|
|
5
|
+
- chore: adjust types for the favorites tab tracking [#578](https://github.com/artsy/cohesion/pull/578) ([@dariakoko](https://github.com/dariakoko))
|
|
6
|
+
|
|
7
|
+
#### Authors: 1
|
|
8
|
+
|
|
9
|
+
- Daria Kozlova ([@dariakoko](https://github.com/dariakoko))
|
|
10
|
+
|
|
11
|
+
---
|
|
12
|
+
|
|
1
13
|
# v4.251.0 (Tue Apr 08 2025)
|
|
2
14
|
|
|
3
15
|
#### 🚀 Enhancement
|
|
@@ -94,8 +94,6 @@ export interface TappedFollowsGroup extends TappedEntityGroup {
|
|
|
94
94
|
action: ActionType.tappedFollowsGroup;
|
|
95
95
|
context_screen: OwnerType.favoritesFollows;
|
|
96
96
|
destination_screen_owner_type: OwnerType.artist | OwnerType.gallery | OwnerType.category | OwnerType.show;
|
|
97
|
-
destination_screen_owner_slug: string;
|
|
98
|
-
destination_screen_owner_id: string;
|
|
99
97
|
}
|
|
100
98
|
/**
|
|
101
99
|
* A user taps a grouping of Alerts
|
|
@@ -113,6 +113,8 @@ export declare enum ContextModule {
|
|
|
113
113
|
filterScreen = "filterScreen",
|
|
114
114
|
findTheArtYouWant = "findTheArtYouWant",
|
|
115
115
|
follows = "follows",
|
|
116
|
+
followedArtistListItem = "followedArtistListItem",
|
|
117
|
+
followedGalleryListItem = "followedGalleryListItem",
|
|
116
118
|
footer = "footer",
|
|
117
119
|
frequentlyAskedQuestions = "frequentlyAskedQuestions",
|
|
118
120
|
galleriesForYouBanner = "galleriesForYouBanner",
|
|
@@ -127,6 +127,8 @@ exports.ContextModule = ContextModule;
|
|
|
127
127
|
ContextModule["filterScreen"] = "filterScreen";
|
|
128
128
|
ContextModule["findTheArtYouWant"] = "findTheArtYouWant";
|
|
129
129
|
ContextModule["follows"] = "follows";
|
|
130
|
+
ContextModule["followedArtistListItem"] = "followedArtistListItem";
|
|
131
|
+
ContextModule["followedGalleryListItem"] = "followedGalleryListItem";
|
|
130
132
|
ContextModule["footer"] = "footer";
|
|
131
133
|
ContextModule["frequentlyAskedQuestions"] = "frequentlyAskedQuestions";
|
|
132
134
|
ContextModule["galleriesForYouBanner"] = "galleriesForYouBanner";
|