@artsy/cohesion 4.91.0 → 4.92.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 +8 -8
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,15 @@
|
|
|
1
|
+
# v4.92.0 (Fri Jan 06 2023)
|
|
2
|
+
|
|
3
|
+
#### 🚀 Enhancement
|
|
4
|
+
|
|
5
|
+
- fix: Adjust new My Collection event keys [#389](https://github.com/artsy/cohesion/pull/389) ([@olerichter00](https://github.com/olerichter00))
|
|
6
|
+
|
|
7
|
+
#### Authors: 1
|
|
8
|
+
|
|
9
|
+
- Ole ([@olerichter00](https://github.com/olerichter00))
|
|
10
|
+
|
|
11
|
+
---
|
|
12
|
+
|
|
1
13
|
# v4.91.0 (Fri Jan 06 2023)
|
|
2
14
|
|
|
3
15
|
#### 🚀 Enhancement
|
|
@@ -191,7 +191,7 @@ export interface TappedMyCollectionAddArtworkArtist {
|
|
|
191
191
|
* {
|
|
192
192
|
* action: "addNewArtistName",
|
|
193
193
|
* context_module: "myCollection",
|
|
194
|
-
*
|
|
194
|
+
* context_owner_type: "myCollectionUploadingFlow",
|
|
195
195
|
* platform: "web",
|
|
196
196
|
* }
|
|
197
197
|
* ```
|
|
@@ -199,7 +199,7 @@ export interface TappedMyCollectionAddArtworkArtist {
|
|
|
199
199
|
export interface MyColectionAddNewArtistName {
|
|
200
200
|
action: ActionType.addNewArtistName;
|
|
201
201
|
context_module: ContextModule.myCollection;
|
|
202
|
-
|
|
202
|
+
context_owner_type: OwnerType.myCollectionUploadingFlow;
|
|
203
203
|
platform: Platform;
|
|
204
204
|
}
|
|
205
205
|
/**
|
|
@@ -212,7 +212,7 @@ export interface MyColectionAddNewArtistName {
|
|
|
212
212
|
* {
|
|
213
213
|
* action: "selectArtistFromSearch",
|
|
214
214
|
* context_module: "myCollection",
|
|
215
|
-
*
|
|
215
|
+
* context_owner_type: "myCollectionUploadingFlow",
|
|
216
216
|
* platform: "web",
|
|
217
217
|
* }
|
|
218
218
|
* ```
|
|
@@ -220,7 +220,7 @@ export interface MyColectionAddNewArtistName {
|
|
|
220
220
|
export interface MyCollectionSelectArtistFromSearch {
|
|
221
221
|
action: ActionType.selectArtistFromSearch;
|
|
222
222
|
context_mudule: ContextModule.myCollection;
|
|
223
|
-
|
|
223
|
+
context_owner_type: OwnerType.myCollectionUploadingFlow;
|
|
224
224
|
platform: Platform;
|
|
225
225
|
}
|
|
226
226
|
/**
|
|
@@ -233,7 +233,7 @@ export interface MyCollectionSelectArtistFromSearch {
|
|
|
233
233
|
* {
|
|
234
234
|
* action: "addArtworkDetails",
|
|
235
235
|
* context_module: "myCollection",
|
|
236
|
-
*
|
|
236
|
+
* context_owner_type: "myCollectionUploadingFlow",
|
|
237
237
|
* platform: "web",
|
|
238
238
|
* }
|
|
239
239
|
* ```
|
|
@@ -241,7 +241,7 @@ export interface MyCollectionSelectArtistFromSearch {
|
|
|
241
241
|
export interface MyCollectionAddArtworkDetails {
|
|
242
242
|
action: ActionType.addArtworkDetails;
|
|
243
243
|
context_module: ContextModule.myCollection;
|
|
244
|
-
|
|
244
|
+
context_owner_type: OwnerType.myCollectionUploadingFlow;
|
|
245
245
|
platform: Platform;
|
|
246
246
|
}
|
|
247
247
|
/**
|
|
@@ -254,7 +254,7 @@ export interface MyCollectionAddArtworkDetails {
|
|
|
254
254
|
* {
|
|
255
255
|
* action: "selectArtworkFromGrid",
|
|
256
256
|
* context_module: "myCollection",
|
|
257
|
-
*
|
|
257
|
+
* context_owner_type: "myCollectionUploadingFlow",
|
|
258
258
|
* platform: "web",
|
|
259
259
|
* }
|
|
260
260
|
* ```
|
|
@@ -262,7 +262,7 @@ export interface MyCollectionAddArtworkDetails {
|
|
|
262
262
|
export interface MyCollectionSelectArtworkFromGrid {
|
|
263
263
|
action: ActionType.selectArtworkFromGrid;
|
|
264
264
|
context_module: ContextModule.myCollection;
|
|
265
|
-
|
|
265
|
+
context_owner_type: OwnerType.myCollectionUploadingFlow;
|
|
266
266
|
platform: Platform;
|
|
267
267
|
}
|
|
268
268
|
/**
|