@artsy/cohesion 4.386.1 → 4.388.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,27 @@
|
|
|
1
|
+
# v4.388.0 (Wed Jul 29 2026)
|
|
2
|
+
|
|
3
|
+
#### 🚀 Enhancement
|
|
4
|
+
|
|
5
|
+
- chore: Support the new fields tracking in OS Inventory [#735](https://github.com/artsy/cohesion/pull/735) ([@lidimayra](https://github.com/lidimayra))
|
|
6
|
+
|
|
7
|
+
#### Authors: 1
|
|
8
|
+
|
|
9
|
+
- Lidiane T ([@lidimayra](https://github.com/lidimayra))
|
|
10
|
+
|
|
11
|
+
---
|
|
12
|
+
|
|
13
|
+
# v4.387.0 (Mon Jul 27 2026)
|
|
14
|
+
|
|
15
|
+
#### 🚀 Enhancement
|
|
16
|
+
|
|
17
|
+
- feat: add searchPageResults context module [#734](https://github.com/artsy/cohesion/pull/734) ([@nickskalkin](https://github.com/nickskalkin))
|
|
18
|
+
|
|
19
|
+
#### Authors: 1
|
|
20
|
+
|
|
21
|
+
- Nikita Skalkin ([@nickskalkin](https://github.com/nickskalkin))
|
|
22
|
+
|
|
23
|
+
---
|
|
24
|
+
|
|
1
25
|
# v4.386.1 (Tue Jul 14 2026)
|
|
2
26
|
|
|
3
27
|
#### 🐛 Bug Fix
|
|
@@ -242,6 +242,7 @@ export declare enum ContextModule {
|
|
|
242
242
|
relatedWorksRail = "relatedWorksRail",
|
|
243
243
|
saves = "saves",
|
|
244
244
|
saveWorksCTA = "saveWorksCTA",
|
|
245
|
+
searchPageResults = "searchPageResults",
|
|
245
246
|
sell = "sell",
|
|
246
247
|
sellFooter = "sellFooter",
|
|
247
248
|
sellHeader = "sellHeader",
|
|
@@ -256,6 +256,7 @@ exports.ContextModule = ContextModule;
|
|
|
256
256
|
ContextModule["relatedWorksRail"] = "relatedWorksRail";
|
|
257
257
|
ContextModule["saves"] = "saves";
|
|
258
258
|
ContextModule["saveWorksCTA"] = "saveWorksCTA";
|
|
259
|
+
ContextModule["searchPageResults"] = "searchPageResults";
|
|
259
260
|
ContextModule["sell"] = "sell";
|
|
260
261
|
ContextModule["sellFooter"] = "sellFooter";
|
|
261
262
|
ContextModule["sellHeader"] = "sellHeader";
|
|
@@ -104,7 +104,7 @@ export interface OsEditedArtworkField {
|
|
|
104
104
|
artwork_id: string;
|
|
105
105
|
/** Present only for edition-set variant rows in the Artsy CMS sub-row */
|
|
106
106
|
edition_set_id?: string;
|
|
107
|
-
field: "artist" | "availability" | "certificateOfAuthenticity" | "dimensions" | "location" | "medium" | "price" | "priceCurrency" | "privateNotes" | "title" | "year";
|
|
107
|
+
field: "artist" | "availability" | "certificateOfAuthenticity" | "description" | "dimensions" | "inventoryId" | "location" | "medium" | "price" | "priceCurrency" | "privateNotes" | "provenance" | "title" | "year";
|
|
108
108
|
/** Omit for privateNotes (free text — don't log contents) */
|
|
109
109
|
old_value?: string;
|
|
110
110
|
/** Omit for privateNotes (free text — don't log contents) */
|