@artsy/cohesion 4.242.1 → 4.244.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,28 @@
1
+ # v4.244.0 (Sun Mar 16 2025)
2
+
3
+ #### 🚀 Enhancement
4
+
5
+ - feat(imports): Add CmsBatchImport events [#562](https://github.com/artsy/cohesion/pull/562) ([@damassi](https://github.com/damassi) [@leodmz](https://github.com/leodmz))
6
+
7
+ #### Authors: 2
8
+
9
+ - Christopher Pappas ([@damassi](https://github.com/damassi))
10
+ - Leo Demazeau ([@leodmz](https://github.com/leodmz))
11
+
12
+ ---
13
+
14
+ # v4.243.0 (Fri Mar 14 2025)
15
+
16
+ #### 🚀 Enhancement
17
+
18
+ - feat: add tracking data for long press and create alert [#566](https://github.com/artsy/cohesion/pull/566) ([@dariakoko](https://github.com/dariakoko))
19
+
20
+ #### Authors: 1
21
+
22
+ - Daria Kozlova ([@dariakoko](https://github.com/dariakoko))
23
+
24
+ ---
25
+
1
26
  # v4.242.1 (Fri Mar 14 2025)
2
27
 
3
28
  #### 🐛 Bug Fix
@@ -0,0 +1,126 @@
1
+ /**
2
+ * Schemas describing CMS BatchImportFlow events
3
+ * @packageDocumentation
4
+ */
5
+ import { CmsContextModule } from "../Values/CmsContextModule";
6
+ import { CmsOwnerType } from "../Values/CmsOwnerType";
7
+ import { CmsActionType } from "./index";
8
+ /**
9
+ * A partner has clicked the import button and started the flow.
10
+ *
11
+ * @example
12
+ * ```
13
+ * {
14
+ * context_module: "batchImportFlow",
15
+ * context_page_owner_type: "batchImport",
16
+ * context_page_owner_id: "67b646ecbe87376bfeb3f962",
17
+ * label: "click import",
18
+ * referrer: ""
19
+ * }
20
+ * ```
21
+ */
22
+ export interface CmsBatchImportFlowClickImport {
23
+ context_module: CmsContextModule.batchImportFlow;
24
+ context_page_owner_type: CmsOwnerType.batchImport;
25
+ context_page_owner_id: string;
26
+ label: "click import works";
27
+ referrer: "";
28
+ }
29
+ /**
30
+ * A partner has clicked to add a CSV file.
31
+ *
32
+ * @example
33
+ * ```
34
+ * {
35
+ * context_module: "batchImportFlow",
36
+ * context_page_owner_type: "batchImport",
37
+ * context_page_owner_id: "67b646ecbe87376bfeb3f962",
38
+ * label: "click add CSV"
39
+ * }
40
+ * ```
41
+ */
42
+ export interface CmsBatchImportFlowClickAddCSV {
43
+ context_module: CmsContextModule.batchImportFlow;
44
+ context_page_owner_type: CmsOwnerType.batchImport;
45
+ context_page_owner_id: string;
46
+ label: "click add CSV";
47
+ }
48
+ /**
49
+ * A partner has clicked to download the template.
50
+ *
51
+ * @example
52
+ * ```
53
+ * {
54
+ * context_module: "batchImportFlow",
55
+ * context_page_owner_type: "batchImport",
56
+ * context_page_owner_id: "67b646ecbe87376bfeb3f962",
57
+ * label: "click download template"
58
+ * }
59
+ * ```
60
+ */
61
+ export interface CmsBatchImportFlowClickDownloadTemplate {
62
+ context_module: CmsContextModule.batchImportFlow;
63
+ context_page_owner_type: CmsOwnerType.batchImport;
64
+ context_page_owner_id: string;
65
+ label: "click download template";
66
+ }
67
+ /**
68
+ * Some artworks have missing information warnings.
69
+ *
70
+ * @example
71
+ * ```
72
+ * {
73
+ * event: "shownMissingInformation",
74
+ * context_page_owner_type: "batchImport",
75
+ * context_page_owner_id: "67b646ecbe87376bfeb3f962",
76
+ * // number of artworks with warnings
77
+ * value: 5
78
+ * }
79
+ * ```
80
+ */
81
+ export interface CmsBatchImportFlowShownMissingInformation {
82
+ event: CmsActionType.shownMissingInformation;
83
+ context_page_owner_type: CmsOwnerType.batchImport;
84
+ context_page_owner_id: string;
85
+ value: number;
86
+ }
87
+ /**
88
+ * Artists need matching during the batch import.
89
+ *
90
+ * @example
91
+ * ```
92
+ * {
93
+ * event: "artistNeedsMatching",
94
+ * context_page_owner_type: "batchImportArtistMatching",
95
+ * context_page_owner_id: "67b646ecbe87376bfeb3f962",
96
+ * // number of artists with missing matching
97
+ * value: 3
98
+ * }
99
+ * ```
100
+ */
101
+ export interface CmsBatchImportFlowArtistNeedsMatching {
102
+ event: CmsActionType.artistNeedsMatching;
103
+ context_page_owner_type: CmsOwnerType.batchImportArtistMatching;
104
+ context_page_owner_id: string;
105
+ value: number;
106
+ }
107
+ /**
108
+ * Partners click to exit the batch import flow
109
+ *
110
+ * @example
111
+ * ```
112
+ * {
113
+ * context_module: "batchImportFlow",
114
+ * context_page_owner_type: "batchImport",
115
+ * context_page_owner_id: "67b646ecbe87376bfeb3f962",
116
+ * label: "click import"
117
+ * }
118
+ * ```
119
+ */
120
+ export interface CmsBatchImportClickExit {
121
+ context_module: CmsContextModule.batchImportFlow;
122
+ context_page_owner_type: CmsOwnerType.batchImport;
123
+ context_page_owner_id: string;
124
+ label: "click exit";
125
+ }
126
+ export type CmsBatchImportFlow = CmsBatchImportFlowClickImport | CmsBatchImportFlowClickAddCSV | CmsBatchImportFlowClickDownloadTemplate | CmsBatchImportFlowShownMissingInformation | CmsBatchImportFlowArtistNeedsMatching | CmsBatchImportClickExit;
@@ -0,0 +1 @@
1
+ "use strict";
@@ -0,0 +1,22 @@
1
+ import { CmsBatchImportFlow } from "./BatchImportFlow";
2
+ /**
3
+ * List of valid schemas for CMS analytics actions
4
+ *
5
+ * Each event describes one ActionType
6
+ */
7
+ export type CmsEvent = CmsBatchImportFlow;
8
+ /**
9
+ * List of all CMS actions
10
+ *
11
+ * Each CmsActionType corresponds with a table in Redshift.
12
+ */
13
+ export declare enum CmsActionType {
14
+ /**
15
+ * Corresponds to {@link CmsBatchImportFlow}
16
+ */
17
+ artistNeedsMatching = "artistNeedsMatching",
18
+ /**
19
+ * Corresponds to {@link BatchImportFlow}
20
+ */
21
+ shownMissingInformation = "shownMissingInformation"
22
+ }
@@ -0,0 +1,25 @@
1
+ "use strict";
2
+
3
+ Object.defineProperty(exports, "__esModule", {
4
+ value: true
5
+ });
6
+ exports.CmsActionType = void 0;
7
+
8
+ /**
9
+ * List of valid schemas for CMS analytics actions
10
+ *
11
+ * Each event describes one ActionType
12
+ */
13
+
14
+ /**
15
+ * List of all CMS actions
16
+ *
17
+ * Each CmsActionType corresponds with a table in Redshift.
18
+ */
19
+ var CmsActionType;
20
+ exports.CmsActionType = CmsActionType;
21
+
22
+ (function (CmsActionType) {
23
+ CmsActionType["artistNeedsMatching"] = "artistNeedsMatching";
24
+ CmsActionType["shownMissingInformation"] = "shownMissingInformation";
25
+ })(CmsActionType || (exports.CmsActionType = CmsActionType = {}));
@@ -0,0 +1,9 @@
1
+ /**
2
+ * All context modules available for CMS
3
+ *
4
+ * A component where an action is triggered
5
+ * @packageDocumentation
6
+ */
7
+ export declare enum CmsContextModule {
8
+ batchImportFlow = "batchImportFlow"
9
+ }
@@ -0,0 +1,19 @@
1
+ "use strict";
2
+
3
+ Object.defineProperty(exports, "__esModule", {
4
+ value: true
5
+ });
6
+ exports.CmsContextModule = void 0;
7
+
8
+ /**
9
+ * All context modules available for CMS
10
+ *
11
+ * A component where an action is triggered
12
+ * @packageDocumentation
13
+ */
14
+ var CmsContextModule;
15
+ exports.CmsContextModule = CmsContextModule;
16
+
17
+ (function (CmsContextModule) {
18
+ CmsContextModule["batchImportFlow"] = "batchImportFlow";
19
+ })(CmsContextModule || (exports.CmsContextModule = CmsContextModule = {}));
@@ -0,0 +1,9 @@
1
+ /**
2
+ * All owner types available for CMS
3
+ *
4
+ * @packageDocumentation
5
+ */
6
+ export declare enum CmsOwnerType {
7
+ batchImport = "batchImport",
8
+ batchImportArtistMatching = "batchImportArtistMatching"
9
+ }
@@ -0,0 +1,19 @@
1
+ "use strict";
2
+
3
+ Object.defineProperty(exports, "__esModule", {
4
+ value: true
5
+ });
6
+ exports.CmsOwnerType = void 0;
7
+
8
+ /**
9
+ * All owner types available for CMS
10
+ *
11
+ * @packageDocumentation
12
+ */
13
+ var CmsOwnerType;
14
+ exports.CmsOwnerType = CmsOwnerType;
15
+
16
+ (function (CmsOwnerType) {
17
+ CmsOwnerType["batchImport"] = "batchImport";
18
+ CmsOwnerType["batchImportArtistMatching"] = "batchImportArtistMatching";
19
+ })(CmsOwnerType || (exports.CmsOwnerType = CmsOwnerType = {}));
@@ -77,6 +77,27 @@ export interface TooltipViewed {
77
77
  context_owner_type: PageOwnerType;
78
78
  type: string;
79
79
  }
80
+ /**
81
+ * A user viewed a tooltip. `type` will describe what tooltip it is (follow, edit-follows, etc.)
82
+ *
83
+ * This schema describes events sent to Segment from [[tooltipViewed]]
84
+ *
85
+ * @example
86
+ * ```
87
+ * {
88
+ * action: "tooltipViewed",
89
+ * context_module: "newWorksForYouRail",
90
+ * context_owner_type: "home",
91
+ * type: "long-press-artwork-context-menu"
92
+ * }
93
+ * ```
94
+ */
95
+ export interface ProgressiveOnboardingTooltipViewed {
96
+ action: ActionType.tooltipViewed;
97
+ context_module: ContextModule;
98
+ context_owner_type?: OwnerType;
99
+ type: string;
100
+ }
80
101
  /**
81
102
  * A user sees a an error message
82
103
  *
@@ -14,7 +14,7 @@ import { AddedToAlbum, CompletedOfflineSync, CreatedAlbum, SentContent, ToggledP
14
14
  import { TappedProductCapabilitiesGroup } from "./HomeFeedArtsyOnboarding";
15
15
  import { MyCollectionOnboardingCompleted, TappedExploreMyCollection, VisitMyCollection, VisitMyCollectionOnboardingSlide } from "./HomeFeedMyCollectionOnboarding";
16
16
  import { Impression } from "./Impression";
17
- import { BannerViewed, CreateAlertReminderMessageViewed, EditProfileModalViewed, ErrorMessageViewed, ItemViewed, RailViewed, SendOffersBannerViewed, SendOffersErrorMessage, SendOffersModalViewed, ShippingEstimateViewed, TooltipViewed, ValidationAddressViewed } from "./ImpressionTracking";
17
+ import { BannerViewed, CreateAlertReminderMessageViewed, EditProfileModalViewed, ErrorMessageViewed, ItemViewed, RailViewed, SendOffersBannerViewed, SendOffersErrorMessage, SendOffersModalViewed, ShippingEstimateViewed, TooltipViewed, ProgressiveOnboardingTooltipViewed, ValidationAddressViewed } from "./ImpressionTracking";
18
18
  import { AddCollectedArtwork, DeleteCollectedArtwork, EditCollectedArtwork, SaveCollectedArtwork, SentRequestPriceEstimate, TappedCollectedArtwork, TappedCollectedArtworkImages, TappedMyCollectionAddArtworkArtist, TappedRequestPriceEstimate } from "./MyCollection";
19
19
  import { TappedMyCollectionInsightsMedianAuctionPriceChartCareerHighlight, TappedMyCollectionInsightsMedianAuctionPriceChartCategory, TappedMyCollectionInsightsMedianAuctionPriceChartTimeframe, TappedMyCollectionInsightsMedianAuctionRailItem } from "./MyCollectionInsights";
20
20
  import { PromptForReview } from "./PromptForReview";
@@ -34,7 +34,7 @@ import { ViewedVideo } from "./Video";
34
34
  *
35
35
  * Each event describes one ActionType
36
36
  */
37
- export type Event = AddCollectedArtwork | AddedArtworkToArtworkList | AddedToAlbum | AddressAutoCompletionResult | AddToCalendar | ArtworkDetailsCompleted | AuctionPageView | AuctionResultsFilterParamsChanged | AuthImpression | BannerViewed | BidPageView | CheckedAccountBalance | ClickedActiveBid | ClickedActivityPanelNotificationItem | ClickedActivityPanelTab | ClickedAddFilters | ClickedAddMissingArtworksDetails | ClickedAddNewShippingAddress | ClickedAddWorksToFair | ClickedAlertsFilters | ClickedAppDownload | ClickedArticleGroup | ClickedArtistGroup | ClickedArtistSeriesGroup | ClickedArtworkGroup | ClickedAuctionGroup | ClickedAuctionResultItem | ClickedBid | ClickedBuyerProtection | ClickedBuyNow | ClickedCancelExpressCheckout | ClickedChangePage | ClickedChangePaymentMethod | ClickedChangeShippingAddress | ClickedChangeShippingMethod | ClickedCloseValidationAddressModal | ClickedCollectionGroup | ClickedContactGallery | ClickedConversationsFilter | ClickedCreateAlert | ClickedDeliveryMethod | ClickedDismissInquiry | ClickedDownloadAppFooter | ClickedDownloadAppHeader | ClickedEditArtwork | ClickedEditAlert | ClickedEstimateShippingCost | ClickedExpandFilterPanel | ClickedExpansionToggle | ClickedExpressCheckout | ClickedFairCard | ClickedFairGroup | ClickedGalleryGroup | ClickedHeroUnitGroup | ClickedLoadMore | ClickedMainArtworkGrid | ClickedMakeOffer | ClickedMarketingModal | ClickedMarkSold | ClickedMarkSpam | ClickedNavBar | ClickedNavigationTab | ClickedNotificationsBell | ClickedOfferActions | ClickedOfferOption | ClickedOnArtworkShippingUnitsDropdown | ClickedOnArtworkShippingWeight | ClickedOnBuyNowCheckbox | ClickedOnDuplicateArtwork | ClickedOnFramedMeasurements | ClickedOnFramedMeasurementsDropdown | ClickedOnLearnMore | ClickedOnMakeOfferCheckbox | ClickedOnPagination | ClickedOnPriceDisplayDropdown | ClickedOnReadMore | ClickedOnSubmitOrder | ClickedOrderPage | ClickedOrderSummary | ClickedOpenInNewTabButton | ClickedPartnerCard | ClickedPartnerLink | ClickedPaymentDetails | ClickedPaymentMethod | ClickedPromoSpace | ClickedPublish | ClickedRegisterToBid | ClickedSelectShippingOption | ClickedSendPartnerOffer | ClickedShareButton | ClickedShippingAddress | ClickedShowGroup | ClickedShowMore | ClickedSnooze | ClickedStartPartnerOffer | ClickedUpdateArtwork | ClickedUploadArtwork | ClickedValidationAddressOptions | ClickedVerifyIdentity | ClickedViewingRoomCard | ClickedViewWork | CommercialFilterParamsChanged | CommercialFilterSelectedAll | CompletedOfflineSync | CompletedOnboarding | ConfirmBid | ConfirmRegistrationPageview | ConsignmentArtistFailed | ConsignmentSubmitted | ContactInformationCompleted | CreatedAccount | CreateAlertReminderMessageViewed | CreatedAlbum | CreatedArtworkList | DeleteCollectedArtwork | DeletedArtworkList | DeletedSavedSearch | EditCollectedArtwork | EditedAlert | EditedArtworkList | EditedAutocompletedAddress | EditedSavedSearch | EditedUserProfile | EditProfileModalViewed | EnterLiveAuction | ErrorMessageViewed | ExperimentViewed | FocusedOnConversationMessageInput | FocusedOnPriceDatabaseSearchInput | FocusedOnSearchInput | FollowEvents | Impression | ItemViewed | MaxBidSelected | MyCollectionOnboardingCompleted | OnboardingUserInputData | PriceDatabaseFilterParamsChanged | PromptForReview | RailViewed | RegistrationPageView | RegistrationSubmitted | ResetYourPassword | SaleScreenLoadComplete | SaveCollectedArtwork | SavedCookieConsentPreferences | Screen | SearchedPriceDatabase | SearchedWithNoResults | SearchedWithResults | SelectedItemFromAddressAutoCompletion | SelectedItemFromPriceDatabaseSearch | SelectedItemFromSearch | SelectedRecentPriceRange | SelectedSearchSuggestionQuickNavigationItem | SendOffersBannerViewed | SendOffersErrorMessage | SendOffersModalViewed | SentConsignmentInquiry | SentContent | SentConversationMessage | SentRequestPriceEstimate | Share | ShippingEstimateViewed | StartedOnboarding | SubmitAnotherArtwork | SuccessfullyLoggedIn | SwipedInfiniteDiscoveryArtwork | TappedActivityGroup | TappedArticleGroup | TappedArticleShare | TappedArtistGroup | TappedArtistSeriesGroup | TappedArtworkGroup | TappedAuctionGroup | TappedAuctionResultGroup | TappedBid | TappedBrowseSimilarArtworks | TappedBuyNow | TappedCardGroup | TappedChangePaymentMethod | TappedClearTask | TappedCollectedArtwork | TappedCollectedArtworkImages | TappedCollectionGroup | TappedConsign | TappedConsignmentInquiry | TappedContactGallery | TappedCreateAlert | TappedExploreGroup | TappedExploreMyCollection | TappedFairCard | TappedFairGroup | TappedGlobalSearchBar | TappedInboxConversation | TappedInfoBubble | TappedLearnMore | TappedLink | TappedMainArtworkGrid | TappedMakeOffer | TappedMyCollectionAddArtworkArtist | TappedMyCollectionInsightsMedianAuctionPriceChartCareerHighlight | TappedMyCollectionInsightsMedianAuctionPriceChartCategory | TappedMyCollectionInsightsMedianAuctionPriceChartTimeframe | TappedMyCollectionInsightsMedianAuctionRailItem | TappedNavigationPillsGroup | TappedNavigationTab | TappedNotificationsBell | TappedPartnerCard | TappedProductCapabilitiesGroup | TappedPromoSpace | TappedRequestPriceEstimate | TappedSell | TappedSellArtwork | TappedShowMore | TappedSkip | TappedTabBar | TappedTaskGroup | TappedVerifyIdentity | TappedViewingRoomCard | TappedViewingRoomGroup | TappedViewOffer | TappedViewWork | TimeOnPage | ToggledAccordion | ToggledNotification | ToggledPresentationModeSetting | ToggledSavedSearch | TooltipViewed | UploadPhotosCompleted | UploadSizeLimitExceeded | ValidationAddressViewed | ViewArtworkMyCollection | ViewedArtworkList | ViewedSharedArtworkList | ViewedVideo | VisitMyCollection | VisitMyCollectionOnboardingSlide;
37
+ export type Event = AddCollectedArtwork | AddedArtworkToArtworkList | AddedToAlbum | AddressAutoCompletionResult | AddToCalendar | ArtworkDetailsCompleted | AuctionPageView | AuctionResultsFilterParamsChanged | AuthImpression | BannerViewed | BidPageView | CheckedAccountBalance | ClickedActiveBid | ClickedActivityPanelNotificationItem | ClickedActivityPanelTab | ClickedAddFilters | ClickedAddMissingArtworksDetails | ClickedAddNewShippingAddress | ClickedAddWorksToFair | ClickedAlertsFilters | ClickedAppDownload | ClickedArticleGroup | ClickedArtistGroup | ClickedArtistSeriesGroup | ClickedArtworkGroup | ClickedAuctionGroup | ClickedAuctionResultItem | ClickedBid | ClickedBuyerProtection | ClickedBuyNow | ClickedCancelExpressCheckout | ClickedChangePage | ClickedChangePaymentMethod | ClickedChangeShippingAddress | ClickedChangeShippingMethod | ClickedCloseValidationAddressModal | ClickedCollectionGroup | ClickedContactGallery | ClickedConversationsFilter | ClickedCreateAlert | ClickedDeliveryMethod | ClickedDismissInquiry | ClickedDownloadAppFooter | ClickedDownloadAppHeader | ClickedEditArtwork | ClickedEditAlert | ClickedEstimateShippingCost | ClickedExpandFilterPanel | ClickedExpansionToggle | ClickedExpressCheckout | ClickedFairCard | ClickedFairGroup | ClickedGalleryGroup | ClickedHeroUnitGroup | ClickedLoadMore | ClickedMainArtworkGrid | ClickedMakeOffer | ClickedMarketingModal | ClickedMarkSold | ClickedMarkSpam | ClickedNavBar | ClickedNavigationTab | ClickedNotificationsBell | ClickedOfferActions | ClickedOfferOption | ClickedOnArtworkShippingUnitsDropdown | ClickedOnArtworkShippingWeight | ClickedOnBuyNowCheckbox | ClickedOnDuplicateArtwork | ClickedOnFramedMeasurements | ClickedOnFramedMeasurementsDropdown | ClickedOnLearnMore | ClickedOnMakeOfferCheckbox | ClickedOnPagination | ClickedOnPriceDisplayDropdown | ClickedOnReadMore | ClickedOnSubmitOrder | ClickedOrderPage | ClickedOrderSummary | ClickedOpenInNewTabButton | ClickedPartnerCard | ClickedPartnerLink | ClickedPaymentDetails | ClickedPaymentMethod | ClickedPromoSpace | ClickedPublish | ClickedRegisterToBid | ClickedSelectShippingOption | ClickedSendPartnerOffer | ClickedShareButton | ClickedShippingAddress | ClickedShowGroup | ClickedShowMore | ClickedSnooze | ClickedStartPartnerOffer | ClickedUpdateArtwork | ClickedUploadArtwork | ClickedValidationAddressOptions | ClickedVerifyIdentity | ClickedViewingRoomCard | ClickedViewWork | CommercialFilterParamsChanged | CommercialFilterSelectedAll | CompletedOfflineSync | CompletedOnboarding | ConfirmBid | ConfirmRegistrationPageview | ConsignmentArtistFailed | ConsignmentSubmitted | ContactInformationCompleted | CreatedAccount | CreateAlertReminderMessageViewed | CreatedAlbum | CreatedArtworkList | DeleteCollectedArtwork | DeletedArtworkList | DeletedSavedSearch | EditCollectedArtwork | EditedAlert | EditedArtworkList | EditedAutocompletedAddress | EditedSavedSearch | EditedUserProfile | EditProfileModalViewed | EnterLiveAuction | ErrorMessageViewed | ExperimentViewed | FocusedOnConversationMessageInput | FocusedOnPriceDatabaseSearchInput | FocusedOnSearchInput | FollowEvents | Impression | ItemViewed | MaxBidSelected | MyCollectionOnboardingCompleted | OnboardingUserInputData | PriceDatabaseFilterParamsChanged | PromptForReview | RailViewed | RegistrationPageView | RegistrationSubmitted | ResetYourPassword | SaleScreenLoadComplete | SaveCollectedArtwork | SavedCookieConsentPreferences | Screen | SearchedPriceDatabase | SearchedWithNoResults | SearchedWithResults | SelectedItemFromAddressAutoCompletion | SelectedItemFromPriceDatabaseSearch | SelectedItemFromSearch | SelectedRecentPriceRange | SelectedSearchSuggestionQuickNavigationItem | SendOffersBannerViewed | SendOffersErrorMessage | SendOffersModalViewed | SentConsignmentInquiry | SentContent | SentConversationMessage | SentRequestPriceEstimate | Share | ShippingEstimateViewed | StartedOnboarding | SubmitAnotherArtwork | SuccessfullyLoggedIn | SwipedInfiniteDiscoveryArtwork | TappedActivityGroup | TappedArticleGroup | TappedArticleShare | TappedArtistGroup | TappedArtistSeriesGroup | TappedArtworkGroup | TappedAuctionGroup | TappedAuctionResultGroup | TappedBid | TappedBrowseSimilarArtworks | TappedBuyNow | TappedCardGroup | TappedChangePaymentMethod | TappedClearTask | TappedCollectedArtwork | TappedCollectedArtworkImages | TappedCollectionGroup | TappedConsign | TappedConsignmentInquiry | TappedContactGallery | TappedCreateAlert | TappedExploreGroup | TappedExploreMyCollection | TappedFairCard | TappedFairGroup | TappedGlobalSearchBar | TappedInboxConversation | TappedInfoBubble | TappedLearnMore | TappedLink | TappedMainArtworkGrid | TappedMakeOffer | TappedMyCollectionAddArtworkArtist | TappedMyCollectionInsightsMedianAuctionPriceChartCareerHighlight | TappedMyCollectionInsightsMedianAuctionPriceChartCategory | TappedMyCollectionInsightsMedianAuctionPriceChartTimeframe | TappedMyCollectionInsightsMedianAuctionRailItem | TappedNavigationPillsGroup | TappedNavigationTab | TappedNotificationsBell | TappedPartnerCard | TappedProductCapabilitiesGroup | TappedPromoSpace | TappedRequestPriceEstimate | TappedSell | TappedSellArtwork | TappedShowMore | TappedSkip | TappedTabBar | TappedTaskGroup | TappedVerifyIdentity | TappedViewingRoomCard | TappedViewingRoomGroup | TappedViewOffer | TappedViewWork | TimeOnPage | ToggledAccordion | ToggledNotification | ToggledPresentationModeSetting | ToggledSavedSearch | TooltipViewed | ProgressiveOnboardingTooltipViewed | UploadPhotosCompleted | UploadSizeLimitExceeded | ValidationAddressViewed | ViewArtworkMyCollection | ViewedArtworkList | ViewedSharedArtworkList | ViewedVideo | VisitMyCollection | VisitMyCollectionOnboardingSlide;
38
38
  /**
39
39
  * The top-level actions an Event describes.
40
40
  *
@@ -25,6 +25,7 @@ export declare enum ContextModule {
25
25
  articles = "articles",
26
26
  articleTab = "articleTab",
27
27
  artistArtworksCreateAlertReminderMessage = "artistArtworksCreateAlertReminderMessage",
28
+ artistArtworksFilterHeader = "artistArtworksFilterHeader",
28
29
  artistArtworksGridEnd = "artistArtworksGridEnd",
29
30
  artistAuctionResults = "artistAuctionResults",
30
31
  artistCard = "artistCard",
@@ -39,6 +40,7 @@ export declare enum ContextModule {
39
40
  artworkDetails = "artworkDetails",
40
41
  artworkForm = "artworkForm",
41
42
  artworkGrid = "artworkGrid",
43
+ artworkGridEmptyState = "artworkGridEmptyState",
42
44
  artworkImage = "artworkImage",
43
45
  artworkMetadata = "artworkMetadata",
44
46
  artworkRecentlySoldGrid = "artworkRecentlySoldGrid",
@@ -131,6 +133,7 @@ export declare enum ContextModule {
131
133
  liveAuctionRoom = "liveAuctionRoom",
132
134
  liveAuctionsRail = "liveAuctionsRail",
133
135
  lotsForYouRail = "lotsForYouRail",
136
+ longPressContextMenu = "longPressContextMenu",
134
137
  mainCarousel = "mainCarousel",
135
138
  marketingCollectionTab = "marketingCollectionTab",
136
139
  marketInsights = "marketInsights",
@@ -39,6 +39,7 @@ exports.ContextModule = ContextModule;
39
39
  ContextModule["articles"] = "articles";
40
40
  ContextModule["articleTab"] = "articleTab";
41
41
  ContextModule["artistArtworksCreateAlertReminderMessage"] = "artistArtworksCreateAlertReminderMessage";
42
+ ContextModule["artistArtworksFilterHeader"] = "artistArtworksFilterHeader";
42
43
  ContextModule["artistArtworksGridEnd"] = "artistArtworksGridEnd";
43
44
  ContextModule["artistAuctionResults"] = "artistAuctionResults";
44
45
  ContextModule["artistCard"] = "artistCard";
@@ -53,6 +54,7 @@ exports.ContextModule = ContextModule;
53
54
  ContextModule["artworkDetails"] = "artworkDetails";
54
55
  ContextModule["artworkForm"] = "artworkForm";
55
56
  ContextModule["artworkGrid"] = "artworkGrid";
57
+ ContextModule["artworkGridEmptyState"] = "artworkGridEmptyState";
56
58
  ContextModule["artworkImage"] = "artworkImage";
57
59
  ContextModule["artworkMetadata"] = "artworkMetadata";
58
60
  ContextModule["artworkRecentlySoldGrid"] = "artworkRecentlySoldGrid";
@@ -145,6 +147,7 @@ exports.ContextModule = ContextModule;
145
147
  ContextModule["liveAuctionRoom"] = "liveAuctionRoom";
146
148
  ContextModule["liveAuctionsRail"] = "liveAuctionsRail";
147
149
  ContextModule["lotsForYouRail"] = "lotsForYouRail";
150
+ ContextModule["longPressContextMenu"] = "longPressContextMenu";
148
151
  ContextModule["mainCarousel"] = "mainCarousel";
149
152
  ContextModule["marketingCollectionTab"] = "marketingCollectionTab";
150
153
  ContextModule["marketInsights"] = "marketInsights";
@@ -1,3 +1,6 @@
1
+ /**
2
+ * Web and iOS exports
3
+ */
1
4
  export * from "./Events";
2
5
  export * from "./Events/ActivityPanel";
3
6
  export * from "./Events/AddToCalendar";
@@ -29,3 +32,9 @@ export * from "./Values/Intent";
29
32
  export * from "./Values/OwnerType";
30
33
  export * from "./Values/PushNotificationType";
31
34
  export * from "./Values/Tab";
35
+ /**
36
+ * CMS-specific exports
37
+ */
38
+ export * from "./CMS/Events";
39
+ export * from "./CMS/Values/CmsContextModule";
40
+ export * from "./CMS/Values/CmsOwnerType";
@@ -374,4 +374,40 @@ Object.keys(_Tab).forEach(function (key) {
374
374
  return _Tab[key];
375
375
  }
376
376
  });
377
+ });
378
+
379
+ var _Events2 = require("./CMS/Events");
380
+
381
+ Object.keys(_Events2).forEach(function (key) {
382
+ if (key === "default" || key === "__esModule") return;
383
+ Object.defineProperty(exports, key, {
384
+ enumerable: true,
385
+ get: function get() {
386
+ return _Events2[key];
387
+ }
388
+ });
389
+ });
390
+
391
+ var _CmsContextModule = require("./CMS/Values/CmsContextModule");
392
+
393
+ Object.keys(_CmsContextModule).forEach(function (key) {
394
+ if (key === "default" || key === "__esModule") return;
395
+ Object.defineProperty(exports, key, {
396
+ enumerable: true,
397
+ get: function get() {
398
+ return _CmsContextModule[key];
399
+ }
400
+ });
401
+ });
402
+
403
+ var _CmsOwnerType = require("./CMS/Values/CmsOwnerType");
404
+
405
+ Object.keys(_CmsOwnerType).forEach(function (key) {
406
+ if (key === "default" || key === "__esModule") return;
407
+ Object.defineProperty(exports, key, {
408
+ enumerable: true,
409
+ get: function get() {
410
+ return _CmsOwnerType[key];
411
+ }
412
+ });
377
413
  });
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@artsy/cohesion",
3
- "version": "4.242.1",
3
+ "version": "4.244.0",
4
4
  "description": "Analytics schema",
5
5
  "main": "dist/index.js",
6
6
  "publishConfig": {