@artsy/cohesion 4.90.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 CHANGED
@@ -1,3 +1,27 @@
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
+
13
+ # v4.91.0 (Fri Jan 06 2023)
14
+
15
+ #### 🚀 Enhancement
16
+
17
+ - fix: Adjsut new My Collection event owner type [#388](https://github.com/artsy/cohesion/pull/388) ([@olerichter00](https://github.com/olerichter00))
18
+
19
+ #### Authors: 1
20
+
21
+ - Ole ([@olerichter00](https://github.com/olerichter00))
22
+
23
+ ---
24
+
1
25
  # v4.90.0 (Fri Jan 06 2023)
2
26
 
3
27
  #### 🚀 Enhancement
@@ -191,15 +191,15 @@ export interface TappedMyCollectionAddArtworkArtist {
191
191
  * {
192
192
  * action: "addNewArtistName",
193
193
  * context_module: "myCollection",
194
- * context_screen_owner_type: "myCollectionUploadingFlow",
194
+ * context_owner_type: "myCollectionUploadingFlow",
195
195
  * platform: "web",
196
196
  * }
197
197
  * ```
198
198
  */
199
199
  export interface MyColectionAddNewArtistName {
200
200
  action: ActionType.addNewArtistName;
201
- context_screen: ContextModule.myCollection;
202
- context_screen_owner_type: OwnerType.myCollectionUploadingFlow;
201
+ context_module: ContextModule.myCollection;
202
+ context_owner_type: OwnerType.myCollectionUploadingFlow;
203
203
  platform: Platform;
204
204
  }
205
205
  /**
@@ -212,15 +212,15 @@ export interface MyColectionAddNewArtistName {
212
212
  * {
213
213
  * action: "selectArtistFromSearch",
214
214
  * context_module: "myCollection",
215
- * context_screen_owner_type: "myCollectionUploadingFlow",
215
+ * context_owner_type: "myCollectionUploadingFlow",
216
216
  * platform: "web",
217
217
  * }
218
218
  * ```
219
219
  */
220
220
  export interface MyCollectionSelectArtistFromSearch {
221
221
  action: ActionType.selectArtistFromSearch;
222
- context_screen: ContextModule.myCollection;
223
- context_screen_owner_type: OwnerType.myCollectionUploadingFlow;
222
+ context_mudule: ContextModule.myCollection;
223
+ context_owner_type: OwnerType.myCollectionUploadingFlow;
224
224
  platform: Platform;
225
225
  }
226
226
  /**
@@ -233,15 +233,15 @@ export interface MyCollectionSelectArtistFromSearch {
233
233
  * {
234
234
  * action: "addArtworkDetails",
235
235
  * context_module: "myCollection",
236
- * context_screen_owner_type: "myCollectionUploadingFlow",
236
+ * context_owner_type: "myCollectionUploadingFlow",
237
237
  * platform: "web",
238
238
  * }
239
239
  * ```
240
240
  */
241
241
  export interface MyCollectionAddArtworkDetails {
242
242
  action: ActionType.addArtworkDetails;
243
- context_screen: ContextModule.myCollection;
244
- context_screen_owner_type: OwnerType.myCollectionUploadingFlow;
243
+ context_module: ContextModule.myCollection;
244
+ context_owner_type: OwnerType.myCollectionUploadingFlow;
245
245
  platform: Platform;
246
246
  }
247
247
  /**
@@ -254,15 +254,15 @@ export interface MyCollectionAddArtworkDetails {
254
254
  * {
255
255
  * action: "selectArtworkFromGrid",
256
256
  * context_module: "myCollection",
257
- * context_screen_owner_type: "myCollectionUploadingFlow",
257
+ * context_owner_type: "myCollectionUploadingFlow",
258
258
  * platform: "web",
259
259
  * }
260
260
  * ```
261
261
  */
262
262
  export interface MyCollectionSelectArtworkFromGrid {
263
263
  action: ActionType.selectArtworkFromGrid;
264
- context_screen: ContextModule.myCollection;
265
- context_screen_owner_type: OwnerType.myCollectionUploadingFlow;
264
+ context_module: ContextModule.myCollection;
265
+ context_owner_type: OwnerType.myCollectionUploadingFlow;
266
266
  platform: Platform;
267
267
  }
268
268
  /**
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@artsy/cohesion",
3
- "version": "4.90.0",
3
+ "version": "4.92.0",
4
4
  "description": "Analytics schema",
5
5
  "main": "dist/index.js",
6
6
  "publishConfig": {