@artsy/cohesion
Advanced tools
Comparing version 1.14.0 to 1.15.0
@@ -0,1 +1,13 @@ | ||
# v1.15.0 (Tue Jun 30 2020) | ||
#### 🚀 Enhancement | ||
- Add helpers for conversation events (PURCHASE-1896) [#70](https://github.com/artsy/cohesion/pull/70) ([@starsirius](https://github.com/starsirius)) | ||
#### Authors: 1 | ||
- Chung-Yi Chi ([@starsirius](https://github.com/starsirius)) | ||
--- | ||
# v1.14.0 (Fri Jun 26 2020) | ||
@@ -2,0 +14,0 @@ |
@@ -7,4 +7,6 @@ export * from "./Authentication/AuthImpression"; | ||
export * from "./Click/ClickedMainArtworkGrid"; | ||
export * from "./Conversations/FocusedOnConversationMessageInput"; | ||
export * from "./Conversations/SentConversationMessage"; | ||
export * from "./System/TimeOnPage"; | ||
export * from "./Tap/TappedConsign"; | ||
export * from "./Tap/TappedEntityGroup"; |
@@ -79,2 +79,26 @@ "use strict"; | ||
var _FocusedOnConversationMessageInput = require("./Conversations/FocusedOnConversationMessageInput"); | ||
Object.keys(_FocusedOnConversationMessageInput).forEach(function (key) { | ||
if (key === "default" || key === "__esModule") return; | ||
Object.defineProperty(exports, key, { | ||
enumerable: true, | ||
get: function () { | ||
return _FocusedOnConversationMessageInput[key]; | ||
} | ||
}); | ||
}); | ||
var _SentConversationMessage = require("./Conversations/SentConversationMessage"); | ||
Object.keys(_SentConversationMessage).forEach(function (key) { | ||
if (key === "default" || key === "__esModule") return; | ||
Object.defineProperty(exports, key, { | ||
enumerable: true, | ||
get: function () { | ||
return _SentConversationMessage[key]; | ||
} | ||
}); | ||
}); | ||
var _TimeOnPage = require("./System/TimeOnPage"); | ||
@@ -81,0 +105,0 @@ |
@@ -15,4 +15,3 @@ import { ActionType } from "."; | ||
* action: "focusedOnConversationMessageInput", | ||
* impulse_conversation_id: 198 | ||
* | ||
* impulse_conversation_id: "198" | ||
* } | ||
@@ -23,3 +22,3 @@ * ``` | ||
action: ActionType.focusedOnConversationMessageInput; | ||
impulse_conversation_id?: number; | ||
impulse_conversation_id: string; | ||
} | ||
@@ -35,5 +34,4 @@ /** | ||
* action: "sentConversationMessage", | ||
* impulse_conversation_id: 198, | ||
* impulse_message_id: 8765 | ||
* | ||
* impulse_conversation_id: "198", | ||
* impulse_message_id: "8765" | ||
* } | ||
@@ -44,4 +42,4 @@ * ``` | ||
action: ActionType.sentConversationMessage; | ||
impulse_conversation_id?: number; | ||
impulse_message_id?: number; | ||
impulse_conversation_id: string; | ||
impulse_message_id: string; | ||
} |
{ | ||
"name": "@artsy/cohesion", | ||
"version": "1.14.0", | ||
"version": "1.15.0", | ||
"description": "Analytics schema and library helpers", | ||
@@ -5,0 +5,0 @@ "main": "dist/index.js", |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
92903
65
2162