@artsy/cohesion 4.272.1 → 4.272.2
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.272.2 (Fri Jun 13 2025)
|
|
2
|
+
|
|
3
|
+
#### 🐛 Bug Fix
|
|
4
|
+
|
|
5
|
+
- fix: Adjust bulkEditFailed type to more match error structure [#605](https://github.com/artsy/cohesion/pull/605) ([@jpotts244](https://github.com/jpotts244))
|
|
6
|
+
|
|
7
|
+
#### Authors: 1
|
|
8
|
+
|
|
9
|
+
- Jacqueline Potts ([@jpotts244](https://github.com/jpotts244))
|
|
10
|
+
|
|
11
|
+
---
|
|
12
|
+
|
|
1
13
|
# v4.272.1 (Fri Jun 13 2025)
|
|
2
14
|
|
|
3
15
|
#### 🐛 Bug Fix
|
|
@@ -196,12 +196,12 @@ export interface CmsBulkEditProcessingCompleted {
|
|
|
196
196
|
* {
|
|
197
197
|
* action: "bulkEditFailed",
|
|
198
198
|
* context_module: "Artworks - bulk edit",
|
|
199
|
-
* value: "
|
|
199
|
+
* value: [ 'availability: must be "for sale", "sold" or "not for sale" for works available for purchase', "error2" ]
|
|
200
200
|
* }
|
|
201
201
|
*/
|
|
202
202
|
export interface CmsBulkEditFailed {
|
|
203
203
|
action: CmsActionType.bulkEditFailed;
|
|
204
204
|
context_module: CmsContextModule.bulkEditFlow;
|
|
205
|
-
value: string;
|
|
205
|
+
value: string[];
|
|
206
206
|
}
|
|
207
207
|
export type CmsBulkEditFlow = CmsBulkEditClickedCancelEdits | CmsBulkEditClickedChangeAvailability | CmsBulkEditClickedConfirmEdits | CmsBulkEditClickedEditPill | CmsBulkEditClickedResolveAllConflicts | CmsBulkEditClickedShortlistPill | CmsBulkEditConflictsShown | CmsBulkEditFailed | CmsBulkEditMaxEditLimitReachedShown | CmsBulkEditProcessingCompleted | CmsBulkEditProcessingStarted | CmsBulkEditResolvedAllConflictsShown;
|