@artsy/cohesion 4.280.0 → 4.281.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.281.0 (Wed Jul 09 2025)
2
+
3
+ #### 🚀 Enhancement
4
+
5
+ - chore: EMI-2653 update clickedContactGallery schema [#614](https://github.com/artsy/cohesion/pull/614) ([@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.280.0 (Thu Jul 03 2025)
2
14
 
3
15
  #### 🚀 Enhancement
@@ -349,16 +349,16 @@ 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",
359
+ * context_owner_type: "Artwork" | "orders-detail"
360
+ * context_owner_id: "6164889300d643000db86504" | "57e60c68-a198-431e-8a02-6ecb01e3a99b",
360
361
  * context_owner_slug: "radna-segal-pearl",
361
- * context_owner_id: "6164889300d643000db86504",
362
362
  * signal_label: "Limited-Time Offer",
363
363
  * }
364
364
  * ```
@@ -366,8 +366,8 @@ export interface ClickedMakeOffer {
366
366
  export interface ClickedContactGallery {
367
367
  action: ActionType.clickedContactGallery;
368
368
  context_owner_type: OwnerType;
369
- context_owner_slug: string;
370
369
  context_owner_id: string;
370
+ context_owner_slug?: string;
371
371
  signal_label?: string;
372
372
  signal_lot_watcher_count?: number;
373
373
  signal_bid_count?: number;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@artsy/cohesion",
3
- "version": "4.280.0",
3
+ "version": "4.281.0",
4
4
  "description": "Analytics schema",
5
5
  "main": "dist/index.js",
6
6
  "publishConfig": {