@artsy/cohesion 4.208.0 → 4.209.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.209.0 (Mon Oct 21 2024)
2
+
3
+ #### 🚀 Enhancement
4
+
5
+ - chore: Add more data to event when publishing matching work from demand AMBER-1090 [#531](https://github.com/artsy/cohesion/pull/531) ([@jonallured](https://github.com/jonallured))
6
+
7
+ #### Authors: 1
8
+
9
+ - Jon Allured ([@jonallured](https://github.com/jonallured))
10
+
11
+ ---
12
+
1
13
  # v4.208.0 (Fri Oct 18 2024)
2
14
 
3
15
  #### 🚀 Enhancement
@@ -1734,21 +1734,25 @@ export interface ClickedNavBar {
1734
1734
  * ```
1735
1735
  * {
1736
1736
  * action: "clickedUploadArtwork",
1737
- * context_module: "alerts-price"
1738
- * context_page_owner_type: "demand",
1739
- * context_page_owner_id: "",
1737
+ * alert_page_rank: 1,
1740
1738
  * artist_id: "4212691337420",
1741
- * search_criteria_id: "4212691337420"
1739
+ * context_module: "alerts-price",
1740
+ * context_page_owner_id: "",
1741
+ * context_page_owner_type: "demand",
1742
+ * partner_search_criteria_id: "123abc",
1743
+ * search_criteria_id: "4212691337420",
1742
1744
  * subject: "Upload Artworks"
1743
1745
  * }
1744
1746
  * ```
1745
1747
  */
1746
1748
  export interface ClickedUploadArtwork {
1747
1749
  action: ActionType.clickedUploadArtwork;
1750
+ alert_page_rank?: number;
1751
+ artist_id?: string;
1748
1752
  context_module: ContextModule;
1749
- context_page_owner_type: PageOwnerType;
1750
1753
  context_page_owner_id?: string;
1751
- artist_id?: string;
1754
+ context_page_owner_type: PageOwnerType;
1755
+ partner_search_criteria_id?: string;
1752
1756
  search_criteria_id?: string;
1753
1757
  subject: string;
1754
1758
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@artsy/cohesion",
3
- "version": "4.208.0",
3
+ "version": "4.209.0",
4
4
  "description": "Analytics schema",
5
5
  "main": "dist/index.js",
6
6
  "publishConfig": {