@artsy/cohesion 4.287.0 → 4.288.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.288.0 (Wed Jul 23 2025)
2
+
3
+ #### 🚀 Enhancement
4
+
5
+ - feat(EMI-2488): update tappedContactGallery event [#622](https://github.com/artsy/cohesion/pull/622) ([@MrSltun](https://github.com/MrSltun))
6
+
7
+ #### Authors: 1
8
+
9
+ - Sultan Al-Maari ([@MrSltun](https://github.com/MrSltun))
10
+
11
+ ---
12
+
1
13
  # v4.287.0 (Tue Jul 22 2025)
2
14
 
3
15
  #### 🚀 Enhancement
@@ -944,7 +944,7 @@ export interface TappedBuyNow {
944
944
  signal_lot_watcher_count?: number;
945
945
  }
946
946
  /**
947
- * A user taps on 'Contact Gallery' on an artwork page
947
+ * A user taps on 'Contact Gallery' on an artwork page or in Order Details page
948
948
  *
949
949
  * This schema describes events sent to Segment from [[tappedContactGallery]]
950
950
  *
@@ -952,9 +952,9 @@ export interface TappedBuyNow {
952
952
  * ```
953
953
  * {
954
954
  * action: "tappedContactGallery",
955
- * context_owner_type: "Artwork",
955
+ * context_owner_type: "Artwork" | "orders-detail",
956
+ * context_owner_id: "6164889300d643000db86504" | "57e60c68-a198-431e-8a02-6ecb01e3a99b",
956
957
  * context_owner_slug: "radna-segal-pearl",
957
- * context_owner_id: "6164889300d643000db86504",
958
958
  * signal_label: "Limited-Time Offer",
959
959
  * }
960
960
  * ```
@@ -962,8 +962,8 @@ export interface TappedBuyNow {
962
962
  export interface TappedContactGallery {
963
963
  action: ActionType.tappedContactGallery;
964
964
  context_owner_type: OwnerType;
965
- context_owner_slug: string;
966
965
  context_owner_id: string;
966
+ context_owner_slug?: string;
967
967
  signal_label?: string;
968
968
  signal_lot_watcher_count?: number;
969
969
  signal_bid_count?: number;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@artsy/cohesion",
3
- "version": "4.287.0",
3
+ "version": "4.288.0",
4
4
  "description": "Analytics schema",
5
5
  "main": "dist/index.js",
6
6
  "publishConfig": {