@artsy/cohesion 4.338.0 → 4.339.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/dist/Schema/Events/Tap.d.ts +3 -3
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,15 @@
|
|
|
1
|
+
# v4.339.0 (Mon Jan 26 2026)
|
|
2
|
+
|
|
3
|
+
#### 🚀 Enhancement
|
|
4
|
+
|
|
5
|
+
- fix: Revert "fix examples" [#676](https://github.com/artsy/cohesion/pull/676) ([@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.338.0 (Fri Jan 23 2026)
|
|
2
14
|
|
|
3
15
|
#### 🚀 Enhancement
|
|
@@ -349,15 +349,15 @@ export interface ClickedMakeOffer {
|
|
|
349
349
|
signal_label?: string;
|
|
350
350
|
}
|
|
351
351
|
/**
|
|
352
|
-
* User clicks "Contact Gallery" on an artwork page (BNMO)
|
|
352
|
+
* User clicks "Contact Gallery" on an artwork page (BNMO) or Order Details page
|
|
353
353
|
*
|
|
354
354
|
* This schema describes events sent to Segment from [[clickedContactGallery]]
|
|
355
355
|
* @example
|
|
356
356
|
* ```
|
|
357
357
|
* {
|
|
358
358
|
* action: "clickedContactGallery",
|
|
359
|
-
* context_owner_type: "Artwork"
|
|
360
|
-
* context_owner_id: "6164889300d643000db86504",
|
|
359
|
+
* context_owner_type: "Artwork" | "orders-detail"
|
|
360
|
+
* context_owner_id: "6164889300d643000db86504" | "57e60c68-a198-431e-8a02-6ecb01e3a99b",
|
|
361
361
|
* context_owner_slug: "radna-segal-pearl",
|
|
362
362
|
* signal_label: "Limited-Time Offer",
|
|
363
363
|
* }
|
|
@@ -1019,7 +1019,7 @@ export interface TappedBuyNow {
|
|
|
1019
1019
|
signal_lot_watcher_count?: number;
|
|
1020
1020
|
}
|
|
1021
1021
|
/**
|
|
1022
|
-
* A user taps on 'Contact Gallery' on an artwork page
|
|
1022
|
+
* A user taps on 'Contact Gallery' on an artwork page or in Order Details page
|
|
1023
1023
|
*
|
|
1024
1024
|
* This schema describes events sent to Segment from [[tappedContactGallery]]
|
|
1025
1025
|
*
|
|
@@ -1027,8 +1027,8 @@ export interface TappedBuyNow {
|
|
|
1027
1027
|
* ```
|
|
1028
1028
|
* {
|
|
1029
1029
|
* action: "tappedContactGallery",
|
|
1030
|
-
* context_owner_type: "Artwork",
|
|
1031
|
-
* context_owner_id: "6164889300d643000db86504",
|
|
1030
|
+
* context_owner_type: "Artwork" | "orders-detail",
|
|
1031
|
+
* context_owner_id: "6164889300d643000db86504" | "57e60c68-a198-431e-8a02-6ecb01e3a99b",
|
|
1032
1032
|
* context_owner_slug: "radna-segal-pearl",
|
|
1033
1033
|
* signal_label: "Limited-Time Offer",
|
|
1034
1034
|
* }
|