@artsy/cohesion 4.62.0 → 4.62.1

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.62.1 (Thu Sep 08 2022)
2
+
3
+ #### 🐛 Bug Fix
4
+
5
+ - chore(FX-4209): reexport reverse image search events [#349](https://github.com/artsy/cohesion/pull/349) ([@dimatretyak](https://github.com/dimatretyak))
6
+
7
+ #### Authors: 1
8
+
9
+ - Dima Tretyak (Dzmitry Tratsiak) ([@dimatretyak](https://github.com/dimatretyak))
10
+
11
+ ---
12
+
1
13
  # v4.62.0 (Thu Sep 08 2022)
2
14
 
3
15
  #### 🚀 Enhancement
@@ -8,6 +8,7 @@ export * from "./Events/FilterAndSort";
8
8
  export * from "./Events/Impression";
9
9
  export * from "./Events/Inquiries";
10
10
  export * from "./Events/MyCollection";
11
+ export * from "./Events/ReverseImageSearch";
11
12
  export * from "./Events/SavedSearch";
12
13
  export * from "./Events/SavesAndFollows";
13
14
  export * from "./Events/Search";
@@ -124,6 +124,18 @@ Object.keys(_MyCollection).forEach(function (key) {
124
124
  });
125
125
  });
126
126
 
127
+ var _ReverseImageSearch = require("./Events/ReverseImageSearch");
128
+
129
+ Object.keys(_ReverseImageSearch).forEach(function (key) {
130
+ if (key === "default" || key === "__esModule") return;
131
+ Object.defineProperty(exports, key, {
132
+ enumerable: true,
133
+ get: function get() {
134
+ return _ReverseImageSearch[key];
135
+ }
136
+ });
137
+ });
138
+
127
139
  var _SavedSearch = require("./Events/SavedSearch");
128
140
 
129
141
  Object.keys(_SavedSearch).forEach(function (key) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@artsy/cohesion",
3
- "version": "4.62.0",
3
+ "version": "4.62.1",
4
4
  "description": "Analytics schema",
5
5
  "main": "dist/index.js",
6
6
  "publishConfig": {