@artsy/cohesion 4.186.0 → 4.187.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.187.0 (Fri Jun 07 2024)
|
|
2
|
+
|
|
3
|
+
#### 🚀 Enhancement
|
|
4
|
+
|
|
5
|
+
- feat: adds events for conversation history [#505](https://github.com/artsy/cohesion/pull/505) ([@dzucconi](https://github.com/dzucconi))
|
|
6
|
+
|
|
7
|
+
#### Authors: 1
|
|
8
|
+
|
|
9
|
+
- Damon ([@dzucconi](https://github.com/dzucconi))
|
|
10
|
+
|
|
11
|
+
---
|
|
12
|
+
|
|
1
13
|
# v4.186.0 (Thu Jun 06 2024)
|
|
2
14
|
|
|
3
15
|
#### 🚀 Enhancement
|
|
@@ -2068,3 +2068,19 @@ export interface ClickedViewWork {
|
|
|
2068
2068
|
artwork_id: string;
|
|
2069
2069
|
notification_type: string;
|
|
2070
2070
|
}
|
|
2071
|
+
export interface ClickedConversationHistoryItem {
|
|
2072
|
+
action: ActionType.clickedConversationHistoryItem;
|
|
2073
|
+
context_page_module: string;
|
|
2074
|
+
context_page_owner_id: string;
|
|
2075
|
+
destination_page_owner_type: PageOwnerType;
|
|
2076
|
+
destination_page_owner_id: string;
|
|
2077
|
+
partner_id: string;
|
|
2078
|
+
inquiry_id: string;
|
|
2079
|
+
}
|
|
2080
|
+
export interface ClickedViewFullConversationHistory {
|
|
2081
|
+
action: ActionType.clickedViewFullConversationHistory;
|
|
2082
|
+
context_page_module: string;
|
|
2083
|
+
context_page_owner_id: string;
|
|
2084
|
+
partner_id: string;
|
|
2085
|
+
inquiry_id: string;
|
|
2086
|
+
}
|
|
@@ -428,6 +428,14 @@ export declare enum ActionType {
|
|
|
428
428
|
* Corresponds to {@link ClickedGene}
|
|
429
429
|
*/
|
|
430
430
|
clickedGene = "clickedGene",
|
|
431
|
+
/**
|
|
432
|
+
* Corresponds to {@link ClickedConversationHistoryItem}
|
|
433
|
+
*/
|
|
434
|
+
clickedConversationHistoryItem = "clickedConversationHistoryItem",
|
|
435
|
+
/**
|
|
436
|
+
* Corresponds to {@link ClickedViewFullConversationHistory}
|
|
437
|
+
*/
|
|
438
|
+
clickedViewFullConversationHistory = "clickedViewFullConversationHistory",
|
|
431
439
|
/**
|
|
432
440
|
* Corresponds to {@link ClickedHighlightAchievement}
|
|
433
441
|
*/
|
|
@@ -117,6 +117,8 @@ exports.ActionType = ActionType;
|
|
|
117
117
|
ActionType["clickedCloseValidationAddressModal"] = "clickedCloseValidationAddressModal";
|
|
118
118
|
ActionType["clickedVerifiedRepresentative"] = "clickedVerifiedRepresentative";
|
|
119
119
|
ActionType["clickedGene"] = "clickedGene";
|
|
120
|
+
ActionType["clickedConversationHistoryItem"] = "clickedConversationHistoryItem";
|
|
121
|
+
ActionType["clickedViewFullConversationHistory"] = "clickedViewFullConversationHistory";
|
|
120
122
|
ActionType["clickedHighlightAchievement"] = "clickedHighlightAchievement";
|
|
121
123
|
ActionType["commercialFilterParamsChanged"] = "commercialFilterParamsChanged";
|
|
122
124
|
ActionType["completedOfflineSync"] = "completedOfflineSync";
|