@artsy/cohesion
Advanced tools
Comparing version 4.66.0 to 4.67.0
@@ -171,2 +171,6 @@ import { AddToCalendar } from "./AddToCalendar"; | ||
/** | ||
* Corresponds to {@link ClickedMyCollectionInsightsMedianAuctionRailItem} | ||
*/ | ||
clickedMyCollectionInsightsMedianAuctionRailItem = "clickedMyCollectionInsightsMedianAuctionRailItem", | ||
/** | ||
* Corresponds to {@link ClickedNavigationTab} | ||
@@ -173,0 +177,0 @@ */ |
@@ -57,2 +57,3 @@ "use strict"; | ||
ActionType["clickedMainArtworkGrid"] = "clickedMainArtworkGrid"; | ||
ActionType["clickedMyCollectionInsightsMedianAuctionRailItem"] = "clickedMyCollectionInsightsMedianAuctionRailItem"; | ||
ActionType["clickedNavigationTab"] = "clickedNavigationTab"; | ||
@@ -59,0 +60,0 @@ ActionType["clickedOfferActions"] = "clickedOfferActions"; |
@@ -9,2 +9,27 @@ import { ContextModule } from "../Values/ContextModule"; | ||
/** | ||
* A user clicks on My Collection Insights Median Auction Rail item. | ||
* | ||
* This schema describes events sent to Segment from [[clickedMyCollectionInsightsMedianAuctionRailItem]] | ||
* | ||
* @example | ||
* ``` | ||
* { | ||
* action: "clickedMyCollectionInsightsMedianAuctionRailItem", | ||
* context_module: "myCollectionInsightsMedianAuctionRail", | ||
* context_screen: "myCollectionInsights", | ||
* context_screen_owner_type: "myCollectionInsights", | ||
* artist_id: "4212691337420", | ||
* category: "Print" | ||
* } | ||
* ``` | ||
*/ | ||
export interface ClickedMyCollectionInsightsMedianAuctionRailItem { | ||
action: ActionType.clickedMyCollectionInsightsMedianAuctionRailItem; | ||
context_module: ContextModule.myCollectionInsightsMedianAuctionRail; | ||
context_screen: OwnerType.myCollectionInsights; | ||
context_screen_owner_type: OwnerType.myCollectionInsights; | ||
artist_id: string; | ||
category: string; | ||
} | ||
/** | ||
* A user taps on the MyCollectionInsightsMedianAuctionRailItem | ||
@@ -11,0 +36,0 @@ * |
{ | ||
"name": "@artsy/cohesion", | ||
"version": "4.66.0", | ||
"version": "4.67.0", | ||
"description": "Analytics schema", | ||
@@ -28,3 +28,3 @@ "main": "dist/index.js", | ||
"devDependencies": { | ||
"@artsy/auto-config": "1.1.0", | ||
"@artsy/auto-config": "1.2.0", | ||
"@babel/cli": "7.8.4", | ||
@@ -51,3 +51,3 @@ "@babel/core": "7.9.0", | ||
"typedoc": "0.17.7", | ||
"typescript": "4.8.3" | ||
"typescript": "4.8.4" | ||
}, | ||
@@ -54,0 +54,0 @@ "dependencies": { |
@@ -18,4 +18,4 @@ The type of this PR is: **TYPE** | ||
- [ ] If I've added a new file to the tree I've exported it from the common `index.ts` | ||
- [ ] If I've added a new file to the tree I've exported it from the common [`index.ts`](https://github.com/artsy/cohesion/blob/main/src/Schema/Events/index.ts) | ||
- [ ] I've added comments with examples for any new interfaces and ensured that they're in the docs | ||
- [ ] No platform-specific terminology has been used outside of `click` and `tap` (platform is inferred by the DB storing events) |
Sorry, the diff of this file is too big to display
406285
9094