@artsy/cohesion 4.90.0 → 4.91.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 +4 -4
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,15 @@
|
|
|
1
|
+
# v4.91.0 (Fri Jan 06 2023)
|
|
2
|
+
|
|
3
|
+
#### 🚀 Enhancement
|
|
4
|
+
|
|
5
|
+
- fix: Adjsut new My Collection event owner type [#388](https://github.com/artsy/cohesion/pull/388) ([@olerichter00](https://github.com/olerichter00))
|
|
6
|
+
|
|
7
|
+
#### Authors: 1
|
|
8
|
+
|
|
9
|
+
- Ole ([@olerichter00](https://github.com/olerichter00))
|
|
10
|
+
|
|
11
|
+
---
|
|
12
|
+
|
|
1
13
|
# v4.90.0 (Fri Jan 06 2023)
|
|
2
14
|
|
|
3
15
|
#### 🚀 Enhancement
|
|
@@ -198,7 +198,7 @@ export interface TappedMyCollectionAddArtworkArtist {
|
|
|
198
198
|
*/
|
|
199
199
|
export interface MyColectionAddNewArtistName {
|
|
200
200
|
action: ActionType.addNewArtistName;
|
|
201
|
-
|
|
201
|
+
context_module: ContextModule.myCollection;
|
|
202
202
|
context_screen_owner_type: OwnerType.myCollectionUploadingFlow;
|
|
203
203
|
platform: Platform;
|
|
204
204
|
}
|
|
@@ -219,7 +219,7 @@ export interface MyColectionAddNewArtistName {
|
|
|
219
219
|
*/
|
|
220
220
|
export interface MyCollectionSelectArtistFromSearch {
|
|
221
221
|
action: ActionType.selectArtistFromSearch;
|
|
222
|
-
|
|
222
|
+
context_mudule: ContextModule.myCollection;
|
|
223
223
|
context_screen_owner_type: OwnerType.myCollectionUploadingFlow;
|
|
224
224
|
platform: Platform;
|
|
225
225
|
}
|
|
@@ -240,7 +240,7 @@ export interface MyCollectionSelectArtistFromSearch {
|
|
|
240
240
|
*/
|
|
241
241
|
export interface MyCollectionAddArtworkDetails {
|
|
242
242
|
action: ActionType.addArtworkDetails;
|
|
243
|
-
|
|
243
|
+
context_module: ContextModule.myCollection;
|
|
244
244
|
context_screen_owner_type: OwnerType.myCollectionUploadingFlow;
|
|
245
245
|
platform: Platform;
|
|
246
246
|
}
|
|
@@ -261,7 +261,7 @@ export interface MyCollectionAddArtworkDetails {
|
|
|
261
261
|
*/
|
|
262
262
|
export interface MyCollectionSelectArtworkFromGrid {
|
|
263
263
|
action: ActionType.selectArtworkFromGrid;
|
|
264
|
-
|
|
264
|
+
context_module: ContextModule.myCollection;
|
|
265
265
|
context_screen_owner_type: OwnerType.myCollectionUploadingFlow;
|
|
266
266
|
platform: Platform;
|
|
267
267
|
}
|