@artsy/cohesion 4.293.0 → 4.294.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.294.0 (Wed Aug 06 2025)
2
+
3
+ #### 🚀 Enhancement
4
+
5
+ - chore: Add horizontal_bar to graph types [#630](https://github.com/artsy/cohesion/pull/630) ([@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.293.0 (Mon Aug 04 2025)
2
14
 
3
15
  #### 🚀 Enhancement
@@ -52,7 +52,7 @@ export interface CmsAnalyticsPageClickedGraphCTA {
52
52
  * ```
53
53
  * {
54
54
  * action: "clickedMostViewed",
55
- * context_module: "analyticsMostViewed"
55
+ * context_module: "analyticsMostViewed",
56
56
  * context_page_owner_type: "analytics",
57
57
  * destination_page_owner_type: "artworks" | "show" | "artist" | "viewing-room",
58
58
  * position: 0 | 1 | ... | 9
@@ -75,7 +75,7 @@ export interface CmsAnalyticsPageClickedMostViewed {
75
75
  * action: "viewedGraph",
76
76
  * context_module: "analyticsMostViewed" | "analyticsPublishedArtworks" | "analyticsViews" | "analyticsInquiries" | "analyticsSales" | "analyticsAudience",
77
77
  * context_page_owner_type: "analytics",
78
- * graph_type: "cumulative_line" | "donut"
78
+ * graph_type: "cumulative_line" | "donut" | "horizontal_bar"
79
79
  * }
80
80
  * ```
81
81
  */
@@ -94,8 +94,8 @@ export interface CmsAnalyticsPageViewedGraph {
94
94
  * action: "viewedGraphDatapoint",
95
95
  * context_module: "analyticsMostViewed" | "analyticsPublishedArtworks" | "analyticsViews" | "analyticsInquiries" | "analyticsSales" | "analyticsAudience",
96
96
  * context_page_owner_type: "analytics",
97
- * graph_type: "cumulative_line" | "donut"
98
- * datapoint_bucket_size?: "daily" | "weekly" | "monthly" | null
97
+ * graph_type: "cumulative_line" | "donut" | "horizontal_bar",
98
+ * datapoint_bucket_size?: "daily" | "weekly" | "monthly" | null,
99
99
  * datapoint_is_other?: true | false | null
100
100
  * }
101
101
  * ```
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@artsy/cohesion",
3
- "version": "4.293.0",
3
+ "version": "4.294.0",
4
4
  "description": "Analytics schema",
5
5
  "main": "dist/index.js",
6
6
  "publishConfig": {