@artsy/cohesion
Advanced tools
Comparing version 1.64.0 to 1.65.0
@@ -0,1 +1,13 @@ | ||
# v1.65.0 (Wed Dec 09 2020) | ||
#### 🚀 Enhancement | ||
- feat: helpers for My Collection tracking events [#143](https://github.com/artsy/cohesion/pull/143) ([@pepopowitz](https://github.com/pepopowitz)) | ||
#### Authors: 1 | ||
- Steven Hicks ([@pepopowitz](https://github.com/pepopowitz)) | ||
--- | ||
# v1.64.0 (Tue Dec 01 2020) | ||
@@ -2,0 +14,0 @@ |
@@ -26,4 +26,2 @@ import { ContextModule } from "../Values/ContextModule"; | ||
context_owner_type: OwnerType.myCollection; | ||
context_owner_id?: string; | ||
context_owner_slug?: string; | ||
} | ||
@@ -44,3 +42,5 @@ /** | ||
* context_module: "myCollectionArtwork", | ||
* context_owner_type: "myCollectionArtwork" | ||
* context_owner_type: "myCollectionArtwork", | ||
* context_owner_id: "my-artwork-id", | ||
* context_owner_slug: "my-artwork-slug" | ||
* } | ||
@@ -53,4 +53,4 @@ * ``` | ||
context_owner_type: OwnerType.myCollectionArtwork; | ||
context_owner_id?: string; | ||
context_owner_slug?: string; | ||
context_owner_id: string; | ||
context_owner_slug: string; | ||
} | ||
@@ -72,2 +72,4 @@ /** | ||
* context_owner_type: "myCollectionArtwork" | ||
* context_owner_id: "my-artwork-id", | ||
* context_owner_slug: "my-artwork-slug" | ||
* } | ||
@@ -80,4 +82,4 @@ * ``` | ||
context_owner_type: OwnerType.myCollectionArtwork; | ||
context_owner_id?: string; | ||
context_owner_slug?: string; | ||
context_owner_id: string; | ||
context_owner_slug: string; | ||
} | ||
@@ -94,4 +96,7 @@ /** | ||
* context_module: "myCollectionHome", | ||
* context_screen_owner_type: "myCollection", | ||
* destination_screen_owner_type: "myCollectionArtwork" | ||
* context_owner_type: "myCollection", | ||
* context_owner_id: "my-collection-id" | ||
* destination_owner_type: "myCollectionArtwork" | ||
* destination_owner_id: "my-collection-artwork-id" | ||
* destination_owner_slug: "my-collection-artwork-slug" | ||
* } | ||
@@ -104,7 +109,6 @@ * ``` | ||
context_owner_type: OwnerType.myCollection; | ||
context_owner_id?: string; | ||
context_owner_slug?: string; | ||
context_owner_id: string; | ||
destination_owner_type: OwnerType.myCollectionArtwork; | ||
destination_owner_id?: string; | ||
destination_owner_slug?: string; | ||
destination_owner_id: string; | ||
destination_owner_slug: string; | ||
} |
{ | ||
"name": "@artsy/cohesion", | ||
"version": "1.64.0", | ||
"version": "1.65.0", | ||
"description": "Analytics schema and library helpers", | ||
@@ -5,0 +5,0 @@ "main": "dist/index.js", |
212420
142
5301