@artsy/cohesion 4.120.0 → 4.121.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 +12 -0
- package/dist/Schema/Events/MyCollection.d.ts +2 -0
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,15 @@
|
|
|
1
|
+
# v4.121.0 (Tue Apr 11 2023)
|
|
2
|
+
|
|
3
|
+
#### 🚀 Enhancement
|
|
4
|
+
|
|
5
|
+
- chore: Add artist ID to SaveCollectedArtwork event [#426](https://github.com/artsy/cohesion/pull/426) ([@olerichter00](https://github.com/olerichter00))
|
|
6
|
+
|
|
7
|
+
#### Authors: 1
|
|
8
|
+
|
|
9
|
+
- Ole ([@olerichter00](https://github.com/olerichter00))
|
|
10
|
+
|
|
11
|
+
---
|
|
12
|
+
|
|
1
13
|
# v4.120.0 (Fri Mar 31 2023)
|
|
2
14
|
|
|
3
15
|
#### 🚀 Enhancement
|
|
@@ -42,6 +42,7 @@ export interface AddCollectedArtwork {
|
|
|
42
42
|
* action: "saveCollectedArtwork",
|
|
43
43
|
* context_module: "myCollectionHome",
|
|
44
44
|
* context_owner_type: "myCollection",
|
|
45
|
+
* artist_id: "andy-warhol",
|
|
45
46
|
* platform: "mobile"
|
|
46
47
|
* }
|
|
47
48
|
* ```
|
|
@@ -50,6 +51,7 @@ export interface SaveCollectedArtwork {
|
|
|
50
51
|
action: ActionType.saveCollectedArtwork;
|
|
51
52
|
context_module: ContextModule.myCollectionHome;
|
|
52
53
|
context_owner_type: OwnerType.myCollection;
|
|
54
|
+
artist_id: string;
|
|
53
55
|
platform: Platform;
|
|
54
56
|
}
|
|
55
57
|
/**
|