@artsy/cohesion 4.350.0 → 4.351.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.351.0 (Tue Mar 24 2026)
|
|
2
|
+
|
|
3
|
+
#### 🚀 Enhancement
|
|
4
|
+
|
|
5
|
+
- chore: Update parameter to use snake_case instead of camelCase [#689](https://github.com/artsy/cohesion/pull/689) ([@MrSltun](https://github.com/MrSltun))
|
|
6
|
+
|
|
7
|
+
#### Authors: 1
|
|
8
|
+
|
|
9
|
+
- Sultan Al-Maari ([@MrSltun](https://github.com/MrSltun))
|
|
10
|
+
|
|
11
|
+
---
|
|
12
|
+
|
|
1
13
|
# v4.350.0 (Tue Mar 24 2026)
|
|
2
14
|
|
|
3
15
|
#### 🚀 Enhancement
|
|
@@ -52,7 +52,7 @@ export interface ArtworkTemplatesPageClickedUseTemplate {
|
|
|
52
52
|
* action: "clickedArtworkNavigationTab",
|
|
53
53
|
* context_module: "Artworks - templates",
|
|
54
54
|
* context_page_owner_type: "artwork",
|
|
55
|
-
*
|
|
55
|
+
* tab_name: "All" | "Templates",
|
|
56
56
|
* user_id: "some-user-id",
|
|
57
57
|
* }
|
|
58
58
|
* ```
|
|
@@ -61,7 +61,7 @@ export interface ArtworkTemplatesPageClickedArtworkNavigationTab {
|
|
|
61
61
|
action: CmsActionType.clickedArtworkNavigationTab;
|
|
62
62
|
context_module: CmsContextModule.artworkTemplates;
|
|
63
63
|
context_page_owner_type: CmsOwnerType.artwork;
|
|
64
|
-
|
|
64
|
+
tab_name: string;
|
|
65
65
|
user_id: string;
|
|
66
66
|
}
|
|
67
67
|
export type CmsArtworkTemplatesPage = ArtworkTemplatesPageDeleteArtworkTemplate | ArtworkTemplatesPageClickedUseTemplate | ArtworkTemplatesPageClickedArtworkNavigationTab;
|