@artsy/cohesion 4.300.0 → 4.302.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.302.0 (Tue Sep 16 2025)
|
|
2
|
+
|
|
3
|
+
#### 🚀 Enhancement
|
|
4
|
+
|
|
5
|
+
- feat: Adds failed updates page edit click type [#637](https://github.com/artsy/cohesion/pull/637) ([@jpotts244](https://github.com/jpotts244))
|
|
6
|
+
|
|
7
|
+
#### Authors: 1
|
|
8
|
+
|
|
9
|
+
- Jacqueline Potts ([@jpotts244](https://github.com/jpotts244))
|
|
10
|
+
|
|
11
|
+
---
|
|
12
|
+
|
|
13
|
+
# v4.301.0 (Mon Sep 15 2025)
|
|
14
|
+
|
|
15
|
+
#### 🚀 Enhancement
|
|
16
|
+
|
|
17
|
+
- feat(batch-edits-v3): Adds shownFailedUpdatesPage to bulk edit tracking schema [#636](https://github.com/artsy/cohesion/pull/636) ([@jpotts244](https://github.com/jpotts244))
|
|
18
|
+
|
|
19
|
+
#### Authors: 1
|
|
20
|
+
|
|
21
|
+
- Jacqueline Potts ([@jpotts244](https://github.com/jpotts244))
|
|
22
|
+
|
|
23
|
+
---
|
|
24
|
+
|
|
1
25
|
# v4.300.0 (Mon Sep 15 2025)
|
|
2
26
|
|
|
3
27
|
#### 🚀 Enhancement
|
|
@@ -16,7 +16,7 @@ import { CmsActionType } from ".";
|
|
|
16
16
|
* artwork_ids: ["artwork1", "artwork2", "artwork3"]
|
|
17
17
|
* }
|
|
18
18
|
*/
|
|
19
|
-
export type CmsBulkEditClickLabel = "add to show" | "bulk edit" | "cancel" | "change availability" | "confirm edit" | "publish" | "resolve all conflicts" | "shortlist";
|
|
19
|
+
export type CmsBulkEditClickLabel = "add to show" | "bulk edit" | "cancel" | "change availability" | "confirm edit" | "failed updates page edit" | "publish" | "resolve all conflicts" | "shortlist";
|
|
20
20
|
export interface CmsBulkEditClickedEvent {
|
|
21
21
|
action: "click";
|
|
22
22
|
context_module: CmsContextModule.bulkEditFlow;
|
|
@@ -24,6 +24,20 @@ export interface CmsBulkEditClickedEvent {
|
|
|
24
24
|
value?: string | number;
|
|
25
25
|
artwork_ids?: string[];
|
|
26
26
|
}
|
|
27
|
+
/**
|
|
28
|
+
* A partner has seen the failed updates screen.
|
|
29
|
+
*
|
|
30
|
+
* @example
|
|
31
|
+
* ```
|
|
32
|
+
* {
|
|
33
|
+
* action: "shownFailedUpdatesPage",
|
|
34
|
+
* context_module: "Artworks - bulk edit",
|
|
35
|
+
* }
|
|
36
|
+
*/
|
|
37
|
+
export interface CmsBulkEditFailedUpdatesPageShown {
|
|
38
|
+
action: CmsActionType.shownFailedUpdatesPage;
|
|
39
|
+
context_module: CmsContextModule.bulkEditFlow;
|
|
40
|
+
}
|
|
27
41
|
/**
|
|
28
42
|
* A partner has seen the max edit limit reached tool tip.
|
|
29
43
|
*
|
|
@@ -119,4 +133,4 @@ export interface CmsBulkEditFailed {
|
|
|
119
133
|
value: string[];
|
|
120
134
|
artwork_ids: string[];
|
|
121
135
|
}
|
|
122
|
-
export type CmsBulkEditFlow = CmsBulkEditClickedEvent | CmsBulkEditMaxEditLimitReachedShown | CmsBulkEditConflictsShown | CmsBulkEditResolvedAllConflictsShown | CmsBulkEditProcessingStarted | CmsBulkEditProcessingCompleted | CmsBulkEditFailed;
|
|
136
|
+
export type CmsBulkEditFlow = CmsBulkEditClickedEvent | CmsBulkEditFailedUpdatesPageShown | CmsBulkEditMaxEditLimitReachedShown | CmsBulkEditConflictsShown | CmsBulkEditResolvedAllConflictsShown | CmsBulkEditProcessingStarted | CmsBulkEditProcessingCompleted | CmsBulkEditFailed;
|
|
@@ -81,6 +81,10 @@ export declare enum CmsActionType {
|
|
|
81
81
|
* Corresponds to {@link CmsBulkEditFlow}
|
|
82
82
|
*/
|
|
83
83
|
shownConflicts = "shownConflicts",
|
|
84
|
+
/**
|
|
85
|
+
* Corresponds to {@link CmsBulkEditFlow}
|
|
86
|
+
*/
|
|
87
|
+
shownFailedUpdatesPage = "shownFailedUpdatesPage",
|
|
84
88
|
/**
|
|
85
89
|
* Corresponds to {@link CmsBulkEditFlow}
|
|
86
90
|
*/
|
|
@@ -36,6 +36,7 @@ exports.CmsActionType = CmsActionType;
|
|
|
36
36
|
CmsActionType["processingCompleted"] = "processingCompleted";
|
|
37
37
|
CmsActionType["searchedArtwork"] = "searched artwork";
|
|
38
38
|
CmsActionType["shownConflicts"] = "shownConflicts";
|
|
39
|
+
CmsActionType["shownFailedUpdatesPage"] = "shownFailedUpdatesPage";
|
|
39
40
|
CmsActionType["shownMaxEditLimitReached"] = "shownMaxEditLimitReached";
|
|
40
41
|
CmsActionType["shownResolvedAllConflicts"] = "shownResolvedAllConflicts";
|
|
41
42
|
CmsActionType["shownMissingInformation"] = "shownMissingInformation";
|