@artsy/cohesion 4.382.0 → 4.383.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.383.0 (Thu Jul 02 2026)
|
|
2
|
+
|
|
3
|
+
#### 🚀 Enhancement
|
|
4
|
+
|
|
5
|
+
- chore: remove viewedDivergenceMarker event [#727](https://github.com/artsy/cohesion/pull/727) ([@chr-tatu](https://github.com/chr-tatu))
|
|
6
|
+
|
|
7
|
+
#### Authors: 1
|
|
8
|
+
|
|
9
|
+
- Christian Tatu ([@chr-tatu](https://github.com/chr-tatu))
|
|
10
|
+
|
|
11
|
+
---
|
|
12
|
+
|
|
1
13
|
# v4.382.0 (Thu Jul 02 2026)
|
|
2
14
|
|
|
3
15
|
#### 🚀 Enhancement
|
|
@@ -85,29 +85,6 @@ export interface ClickedCancelBulkEdit {
|
|
|
85
85
|
context_page_owner_type: OsOwnerType;
|
|
86
86
|
artwork_ids: string[];
|
|
87
87
|
}
|
|
88
|
-
/**
|
|
89
|
-
* The divergence marker appears in a syncable cell when the OS value
|
|
90
|
-
* diverges from the downstream destination value (e.g. Artsy CMS). Fires as an
|
|
91
|
-
* impression when the marker first renders for a given artwork/field combination.
|
|
92
|
-
*
|
|
93
|
-
* @example
|
|
94
|
-
* ```
|
|
95
|
-
* {
|
|
96
|
-
* action: "viewedDivergenceMarker",
|
|
97
|
-
* context_module: "artworkTable",
|
|
98
|
-
* context_page_owner_type: "inventory",
|
|
99
|
-
* artwork_id: "abc123",
|
|
100
|
-
* field: "availability"
|
|
101
|
-
* }
|
|
102
|
-
* ```
|
|
103
|
-
*/
|
|
104
|
-
export interface ViewedDivergenceMarker {
|
|
105
|
-
action: OsActionType.viewedDivergenceMarker;
|
|
106
|
-
context_module: OsContextModule.artworkTable;
|
|
107
|
-
context_page_owner_type: OsOwnerType;
|
|
108
|
-
artwork_id: string;
|
|
109
|
-
field: "availability" | "medium" | "price";
|
|
110
|
-
}
|
|
111
88
|
/**
|
|
112
89
|
* A partner opens a list, either from the Lists surface (a `ListCard`) or from
|
|
113
90
|
* the recent-lists shortcut on the Inventory surface. `source` distinguishes the
|
|
@@ -133,4 +110,4 @@ export interface ClickedOpenList {
|
|
|
133
110
|
list_type: string;
|
|
134
111
|
source: string;
|
|
135
112
|
}
|
|
136
|
-
export type OsClickEvent = ClickedActionsDropdown | ClickedAddUniqueWork | ClickedAddEditionSet | ClickedCancelBulkEdit |
|
|
113
|
+
export type OsClickEvent = ClickedActionsDropdown | ClickedAddUniqueWork | ClickedAddEditionSet | ClickedCancelBulkEdit | ClickedOpenList;
|
|
@@ -251,9 +251,5 @@ export declare enum OsActionType {
|
|
|
251
251
|
/**
|
|
252
252
|
* Corresponds to {@link UpdatedList}
|
|
253
253
|
*/
|
|
254
|
-
updatedList = "updatedList"
|
|
255
|
-
/**
|
|
256
|
-
* Corresponds to {@link ViewedDivergenceMarker}
|
|
257
|
-
*/
|
|
258
|
-
viewedDivergenceMarker = "viewedDivergenceMarker"
|
|
254
|
+
updatedList = "updatedList"
|
|
259
255
|
}
|
|
@@ -78,5 +78,4 @@ exports.OsActionType = OsActionType;
|
|
|
78
78
|
OsActionType["toggledDistributionSync"] = "toggledDistributionSync";
|
|
79
79
|
OsActionType["updatedEditionSet"] = "updatedEditionSet";
|
|
80
80
|
OsActionType["updatedList"] = "updatedList";
|
|
81
|
-
OsActionType["viewedDivergenceMarker"] = "viewedDivergenceMarker";
|
|
82
81
|
})(OsActionType || (exports.OsActionType = OsActionType = {}));
|