@artsy/cohesion 4.334.0 → 4.335.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 +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,15 @@
|
|
|
1
|
+
# v4.335.0 (Mon Dec 15 2025)
|
|
2
|
+
|
|
3
|
+
#### 🚀 Enhancement
|
|
4
|
+
|
|
5
|
+
- fix: add allArtistsSeries as a destination_page_owner_type of clickedArtistSeriesGroup events [#671](https://github.com/artsy/cohesion/pull/671) ([@iskounen](https://github.com/iskounen))
|
|
6
|
+
|
|
7
|
+
#### Authors: 1
|
|
8
|
+
|
|
9
|
+
- Adam Iskounen ([@iskounen](https://github.com/iskounen))
|
|
10
|
+
|
|
11
|
+
---
|
|
12
|
+
|
|
1
13
|
# v4.334.0 (Mon Dec 15 2025)
|
|
2
14
|
|
|
3
15
|
#### 🚀 Enhancement
|
|
@@ -150,7 +150,7 @@ export interface ClickedArtistGroup extends ClickedEntityGroup {
|
|
|
150
150
|
*/
|
|
151
151
|
export interface ClickedArtistSeriesGroup extends ClickedEntityGroup {
|
|
152
152
|
action: ActionType.clickedArtistSeriesGroup;
|
|
153
|
-
destination_page_owner_type: OwnerType.artistSeries;
|
|
153
|
+
destination_page_owner_type: OwnerType.artistSeries | OwnerType.allArtistSeries;
|
|
154
154
|
}
|
|
155
155
|
/**
|
|
156
156
|
* A user clicks a grouping of artworks on web. This includes all artwork groupings (i.e. artwork rails), except the main artwork grid on our core merchandising surfaces.
|