@artsy/cohesion
Advanced tools
Comparing version 4.147.0 to 4.148.0
@@ -1648,1 +1648,26 @@ import { ContextModule } from "../Values/ContextModule"; | ||
} | ||
/** | ||
* User clicks on the gallery representation pill under featured representation on the artist page | ||
* | ||
* This schema describes events sent to Segment from [[clickedVerifiedRepresentative]] | ||
* | ||
* @example | ||
* ``` | ||
* { | ||
* action: "clickedVerifiedRepresentative", | ||
* context_module: "" | ||
* context_page_owner_type: PageOwnerType | ||
* context_page_owner_id?: "artist_id" | ||
* destination_page_owner_type: PageOwnerType | ||
* destination_page_owner_id?: "partner_id" | ||
* } | ||
* ``` | ||
*/ | ||
export interface ClickedVerifiedRepresentative { | ||
action: ActionType.clickedVerifiedRepresentative; | ||
context_module?: ContextModule; | ||
context_page_owner_type: PageOwnerType; | ||
context_page_owner_id: string; | ||
destination_page_owner_type: PageOwnerType; | ||
destination_page_owner_id: string; | ||
} |
@@ -364,2 +364,6 @@ import { ClickedActivityPanelNotificationItem, ClickedActivityPanelTab, ClickedNotificationsBell } from "./ActivityPanel"; | ||
/** | ||
* Corresponds to {@link ClickedVerifiedRepresentative} | ||
*/ | ||
clickedVerifiedRepresentative = "clickedVerifiedRepresentative", | ||
/** | ||
* Corresponds to {@link CommercialFilterParamsChanged} | ||
@@ -845,2 +849,6 @@ */ | ||
/** | ||
* Corresponds to {@link TappedVerifiedRepresentative} | ||
*/ | ||
tappedVerifiedRepresentative = "tappedVerifiedRepresentative", | ||
/** | ||
* Corresponds to {@link TimeOnPage} | ||
@@ -847,0 +855,0 @@ */ |
@@ -103,2 +103,3 @@ "use strict"; | ||
ActionType["clickedCloseValidationAddressModal"] = "clickedCloseValidationAddressModal"; | ||
ActionType["clickedVerifiedRepresentative"] = "clickedVerifiedRepresentative"; | ||
ActionType["commercialFilterParamsChanged"] = "commercialFilterParamsChanged"; | ||
@@ -224,2 +225,3 @@ ActionType["completedOnboarding"] = "completedOnboarding"; | ||
ActionType["tappedViewOffer"] = "tappedViewOffer"; | ||
ActionType["tappedVerifiedRepresentative"] = "tappedVerifiedRepresentative"; | ||
ActionType["timeOnPage"] = "timeOnPage"; | ||
@@ -226,0 +228,0 @@ ActionType["toggledAccordion"] = "toggledAccordion"; |
@@ -900,1 +900,26 @@ import { ActionType } from "."; | ||
} | ||
/** | ||
* User taps on the gallery representation pill under featured representation on the artist page | ||
* | ||
* This schema describes events sent to Segment from [[tappeddVerifiedRepresentative]] | ||
* | ||
* @example | ||
* ``` | ||
* { | ||
* action: "tappedVerifiedRepresentative", | ||
* context_module: "" | ||
* context_screen_owner_type: PageOwnerType | ||
* context_screen_owner_id?: "artist_id" | ||
* destination_screen_owner_type: PageOwnerType | ||
* destination_screen_owner_id?: "partner_id" | ||
* } | ||
* ``` | ||
*/ | ||
export interface TappedVerifiedRepresentative { | ||
action: ActionType.tappedVerifiedRepresentative; | ||
context_module?: ContextModule; | ||
context_screen_owner_type: ScreenOwnerType; | ||
context_screen_owner_id: string; | ||
destination_screen_owner_type: ScreenOwnerType; | ||
destination_screen_owner_id: string; | ||
} |
{ | ||
"name": "@artsy/cohesion", | ||
"version": "4.147.0", | ||
"version": "4.148.0", | ||
"description": "Analytics schema", | ||
@@ -5,0 +5,0 @@ "main": "dist/index.js", |
Sorry, the diff of this file is too big to display
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
488712
10753