@artsy/cohesion 4.107.0 → 4.108.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 +12 -0
- package/dist/Schema/index.d.ts +1 -0
- package/dist/Schema/index.js +12 -0
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,15 @@
|
|
|
1
|
+
# v4.108.0 (Mon Feb 27 2023)
|
|
2
|
+
|
|
3
|
+
#### 🚀 Enhancement
|
|
4
|
+
|
|
5
|
+
- chore: add missing ImpressionTracking export to cohesion [#406](https://github.com/artsy/cohesion/pull/406) ([@MounirDhahri](https://github.com/MounirDhahri))
|
|
6
|
+
|
|
7
|
+
#### Authors: 1
|
|
8
|
+
|
|
9
|
+
- Mounir Dhahri ([@MounirDhahri](https://github.com/MounirDhahri))
|
|
10
|
+
|
|
11
|
+
---
|
|
12
|
+
|
|
1
13
|
# v4.107.0 (Mon Feb 27 2023)
|
|
2
14
|
|
|
3
15
|
#### 🚀 Enhancement
|
package/dist/Schema/index.d.ts
CHANGED
|
@@ -7,6 +7,7 @@ export * from "./Events/Conversations";
|
|
|
7
7
|
export * from "./Events/ExperimentViewed";
|
|
8
8
|
export * from "./Events/FilterAndSort";
|
|
9
9
|
export * from "./Events/Impression";
|
|
10
|
+
export * from "./Events/ImpressionTracking";
|
|
10
11
|
export * from "./Events/Inquiries";
|
|
11
12
|
export * from "./Events/MyCollection";
|
|
12
13
|
export * from "./Events/MyCollectionInsights";
|
package/dist/Schema/index.js
CHANGED
|
@@ -112,6 +112,18 @@ Object.keys(_Impression).forEach(function (key) {
|
|
|
112
112
|
});
|
|
113
113
|
});
|
|
114
114
|
|
|
115
|
+
var _ImpressionTracking = require("./Events/ImpressionTracking");
|
|
116
|
+
|
|
117
|
+
Object.keys(_ImpressionTracking).forEach(function (key) {
|
|
118
|
+
if (key === "default" || key === "__esModule") return;
|
|
119
|
+
Object.defineProperty(exports, key, {
|
|
120
|
+
enumerable: true,
|
|
121
|
+
get: function get() {
|
|
122
|
+
return _ImpressionTracking[key];
|
|
123
|
+
}
|
|
124
|
+
});
|
|
125
|
+
});
|
|
126
|
+
|
|
115
127
|
var _Inquiries = require("./Events/Inquiries");
|
|
116
128
|
|
|
117
129
|
Object.keys(_Inquiries).forEach(function (key) {
|