@artsy/cohesion 4.348.0 → 4.349.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 +3 -3
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,15 @@
|
|
|
1
|
+
# v4.349.0 (Tue Mar 17 2026)
|
|
2
|
+
|
|
3
|
+
#### 🚀 Enhancement
|
|
4
|
+
|
|
5
|
+
- chore: update clickedAuctionResultItem example schema for empty state [#687](https://github.com/artsy/cohesion/pull/687) ([@xander-pero](https://github.com/xander-pero))
|
|
6
|
+
|
|
7
|
+
#### Authors: 1
|
|
8
|
+
|
|
9
|
+
- [@xander-pero](https://github.com/xander-pero)
|
|
10
|
+
|
|
11
|
+
---
|
|
12
|
+
|
|
1
13
|
# v4.348.0 (Wed Mar 11 2026)
|
|
2
14
|
|
|
3
15
|
#### 🚀 Enhancement
|
|
@@ -230,7 +230,7 @@ export interface ClickedAuctionGroup extends ClickedEntityGroup {
|
|
|
230
230
|
signal_bid_count?: number;
|
|
231
231
|
}
|
|
232
232
|
/**
|
|
233
|
-
* A user clicks an auction result on the artist or auction result page
|
|
233
|
+
* A user clicks an auction result on the artist or auction result page. Leads to price database for artist empty states.
|
|
234
234
|
*
|
|
235
235
|
* This schema describes events sent to Segment from [[clickedEntityGroup]]
|
|
236
236
|
*
|
|
@@ -242,8 +242,8 @@ export interface ClickedAuctionGroup extends ClickedEntityGroup {
|
|
|
242
242
|
* context_page_owner_type: "artist" | "auctionResult",
|
|
243
243
|
* context_page_owner_id: "4e9743d70307800001001236",
|
|
244
244
|
* context_page_owner_slug?: "paul-jenkins" | null,
|
|
245
|
-
* destination_page_owner_type: "auctionResult",
|
|
246
|
-
* destination_page_owner_id
|
|
245
|
+
* destination_page_owner_type: "auctionResult" | "priceDatabase",
|
|
246
|
+
* destination_page_owner_id?: "1220512",
|
|
247
247
|
* type: "thumbnail" | "viewAll" | "emptyState"
|
|
248
248
|
* expanded?: true | false | null
|
|
249
249
|
* }
|