@artsy/cohesion 4.262.0 → 4.263.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.263.0 (Wed May 07 2025)
|
|
2
|
+
|
|
3
|
+
#### 🚀 Enhancement
|
|
4
|
+
|
|
5
|
+
- fix(upload): missed user_id [#592](https://github.com/artsy/cohesion/pull/592) ([@damassi](https://github.com/damassi))
|
|
6
|
+
|
|
7
|
+
#### Authors: 1
|
|
8
|
+
|
|
9
|
+
- Christopher Pappas ([@damassi](https://github.com/damassi))
|
|
10
|
+
|
|
11
|
+
---
|
|
12
|
+
|
|
1
13
|
# v4.262.0 (Wed May 07 2025)
|
|
2
14
|
|
|
3
15
|
#### 🚀 Enhancement
|
|
@@ -63,15 +63,15 @@ export interface UploadArtworkFlowClickViewMyArtworks {
|
|
|
63
63
|
* {
|
|
64
64
|
* action: "created artwork",
|
|
65
65
|
* context_module: "Uploads",
|
|
66
|
-
* user_id: "some-user-id",
|
|
67
66
|
* artwork_ids: ['some-artwork-id'],
|
|
67
|
+
* user_id: "some-user-id",
|
|
68
68
|
* }
|
|
69
69
|
* ```
|
|
70
70
|
*/
|
|
71
71
|
export interface UploadArtworkFlowCreateArtworks {
|
|
72
72
|
action: CmsActionType.createdArtwork;
|
|
73
73
|
context_module: CmsContextModule.uploads;
|
|
74
|
-
label: "View my artworks";
|
|
75
74
|
artwork_ids: string[];
|
|
75
|
+
user_id: string;
|
|
76
76
|
}
|
|
77
77
|
export type CmsUploadArtworkFlow = UploadArtworkFlowClickSelectExistingArtist | UploadArtworkFlowClickFinishUploadingImages | UploadArtworkFlowClickViewMyArtworks | UploadArtworkFlowCreateArtworks;
|