@artsy/cohesion 4.205.0 → 4.206.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.206.0 (Fri Sep 20 2024)
2
+
3
+ #### 🚀 Enhancement
4
+
5
+ - chore: export Events/ActivityPanel [#529](https://github.com/artsy/cohesion/pull/529) ([@dblandin](https://github.com/dblandin))
6
+
7
+ #### Authors: 1
8
+
9
+ - devon blandin ([@dblandin](https://github.com/dblandin))
10
+
11
+ ---
12
+
1
13
  # v4.205.0 (Thu Sep 19 2024)
2
14
 
3
15
  #### 🚀 Enhancement
@@ -1,4 +1,5 @@
1
1
  export * from "./Events";
2
+ export * from "./Events/ActivityPanel";
2
3
  export * from "./Events/AddToCalendar";
3
4
  export * from "./Events/ArtworkLists";
4
5
  export * from "./Events/Authentication";
@@ -16,6 +16,18 @@ Object.keys(_Events).forEach(function (key) {
16
16
  });
17
17
  });
18
18
 
19
+ var _ActivityPanel = require("./Events/ActivityPanel");
20
+
21
+ Object.keys(_ActivityPanel).forEach(function (key) {
22
+ if (key === "default" || key === "__esModule") return;
23
+ Object.defineProperty(exports, key, {
24
+ enumerable: true,
25
+ get: function get() {
26
+ return _ActivityPanel[key];
27
+ }
28
+ });
29
+ });
30
+
19
31
  var _AddToCalendar = require("./Events/AddToCalendar");
20
32
 
21
33
  Object.keys(_AddToCalendar).forEach(function (key) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@artsy/cohesion",
3
- "version": "4.205.0",
3
+ "version": "4.206.0",
4
4
  "description": "Analytics schema",
5
5
  "main": "dist/index.js",
6
6
  "publishConfig": {