@artsy/cohesion 4.322.0 → 4.324.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.324.0 (Thu Nov 13 2025)
|
|
2
|
+
|
|
3
|
+
#### 🚀 Enhancement
|
|
4
|
+
|
|
5
|
+
- fix: Adjust Completeness score artwork id field [#659](https://github.com/artsy/cohesion/pull/659) ([@olerichter00](https://github.com/olerichter00))
|
|
6
|
+
|
|
7
|
+
#### Authors: 1
|
|
8
|
+
|
|
9
|
+
- Ole ([@olerichter00](https://github.com/olerichter00))
|
|
10
|
+
|
|
11
|
+
---
|
|
12
|
+
|
|
13
|
+
# v4.323.0 (Thu Nov 13 2025)
|
|
14
|
+
|
|
15
|
+
#### 🚀 Enhancement
|
|
16
|
+
|
|
17
|
+
- fix: Adjust Completeness score click label [#658](https://github.com/artsy/cohesion/pull/658) ([@olerichter00](https://github.com/olerichter00))
|
|
18
|
+
|
|
19
|
+
#### Authors: 1
|
|
20
|
+
|
|
21
|
+
- Ole ([@olerichter00](https://github.com/olerichter00))
|
|
22
|
+
|
|
23
|
+
---
|
|
24
|
+
|
|
1
25
|
# v4.322.0 (Thu Nov 13 2025)
|
|
2
26
|
|
|
3
27
|
#### 🚀 Enhancement
|
|
@@ -2,8 +2,8 @@
|
|
|
2
2
|
* Schemas describing CMS BulkEditFlow events
|
|
3
3
|
* @packageDocumentation
|
|
4
4
|
*/
|
|
5
|
-
import { CmsActionType } from ".";
|
|
6
5
|
import { CmsContextModule } from "../Values/CmsContextModule";
|
|
6
|
+
import { CmsActionType } from ".";
|
|
7
7
|
/**
|
|
8
8
|
* Generic click event in the bulk edit flow.
|
|
9
9
|
*
|
|
@@ -11,17 +11,17 @@ import { CmsActionType } from ".";
|
|
|
11
11
|
* {
|
|
12
12
|
* action: "click",
|
|
13
13
|
* context_module: "Artworks - completeness score",
|
|
14
|
-
* label: "
|
|
15
|
-
*
|
|
14
|
+
* label: "completeness checklist link",
|
|
15
|
+
* artwork_id: "artwork1"
|
|
16
16
|
* }
|
|
17
17
|
*/
|
|
18
|
-
export type CmsCompletenessScoreClickLabel = "
|
|
18
|
+
export type CmsCompletenessScoreClickLabel = "completeness checklist link" | "edit artwork";
|
|
19
19
|
export interface CmsCompletenessScoreClickedEvent {
|
|
20
20
|
action: "click";
|
|
21
21
|
context_module: CmsContextModule.completenessScore;
|
|
22
22
|
label: CmsCompletenessScoreClickLabel;
|
|
23
23
|
value?: string | number;
|
|
24
|
-
|
|
24
|
+
artwork_id: string;
|
|
25
25
|
}
|
|
26
26
|
/**
|
|
27
27
|
* Completeness score modal has been shown to a partner.
|