@artsy/cohesion 4.76.0 → 4.78.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,32 @@
1
+ # v4.78.0 (Thu Nov 24 2022)
2
+
3
+ #### 🚀 Enhancement
4
+
5
+ - feat: add SelectedRecentPriceRange event for price filter [#369](https://github.com/artsy/cohesion/pull/369) ([@dblandin](https://github.com/dblandin))
6
+
7
+ #### Authors: 1
8
+
9
+ - devon blandin ([@dblandin](https://github.com/dblandin))
10
+
11
+ ---
12
+
13
+ # v4.77.0 (Tue Nov 22 2022)
14
+
15
+ #### 🚀 Enhancement
16
+
17
+ - feat(FX-4446): track tap on curated collection on search tab [#367](https://github.com/artsy/cohesion/pull/367) ([@nickskalkin](https://github.com/nickskalkin))
18
+
19
+ #### 🏠 Internal
20
+
21
+ - chore(deps): update yarn orb from 6.2.0 to v6.4.0 [#368](https://github.com/artsy/cohesion/pull/368) ([@renovate[bot]](https://github.com/renovate[bot]))
22
+
23
+ #### Authors: 2
24
+
25
+ - [@renovate[bot]](https://github.com/renovate[bot])
26
+ - Nikita Skalkin ([@nickskalkin](https://github.com/nickskalkin))
27
+
28
+ ---
29
+
1
30
  # v4.76.0 (Fri Nov 18 2022)
2
31
 
3
32
  #### 🚀 Enhancement
@@ -80,3 +80,24 @@ export interface PriceDatabaseFilterParamsChanged {
80
80
  current: string;
81
81
  changed: string;
82
82
  }
83
+ /**
84
+ * A user selects a recent price range from the price filter screen
85
+ *
86
+ * This schema describes events sent to Segment from [[selectedRecentPriceRange]]
87
+ *
88
+ * @example
89
+ * ```
90
+ * {
91
+ * action: "selectedRecentPriceRange",
92
+ * context_module: "recentPriceRanges",
93
+ * context_screen_owner_type: "artworkPriceFilter",
94
+ * collector_profile_sourced: true
95
+ * }
96
+ * ```
97
+ */
98
+ export interface SelectedRecentPriceRange {
99
+ action: ActionType.selectedRecentPriceRange;
100
+ context_module: ContextModule.recentPriceRanges;
101
+ context_screen_owner_type: OwnerType.artworkPriceFilter;
102
+ collector_profile_sourced: boolean;
103
+ }
@@ -265,6 +265,33 @@ export interface TappedConsign {
265
265
  /** The text of the tapped button */
266
266
  subject: string;
267
267
  }
268
+ /**
269
+ * A user taps on an Artsy curated collection on a search tab
270
+ *
271
+ * This schema describes events sent to Segment from [[tappedCuratedCollection]]
272
+ *
273
+ * @example
274
+ * ```
275
+ * {
276
+ * action: "tappedCuratedCollection",
277
+ * context_module: "curatedCollections",
278
+ * context_screen_owner_type: "search",
279
+ * destination_screen_owner_type: "collection",
280
+ * destination_screen_owner_slug: "trending-this-week",
281
+ * destination_screen_owner_id: "d78e9a17-ccf6-4104-b4e9-95c18f6412df",
282
+ * position: 1
283
+ * }
284
+ * ```
285
+ */
286
+ export interface TappedCuratedCollection {
287
+ action: ActionType.tappedCuratedCollection;
288
+ context_module: ContextModule.curatedCollections;
289
+ context_screen_owner_type: ScreenOwnerType;
290
+ destination_screen_owner_type: ScreenOwnerType;
291
+ destination_screen_owner_slug: string;
292
+ destination_screen_owner_id: string;
293
+ position: number;
294
+ }
268
295
  /**
269
296
  * A user taps a fair card
270
297
  *
@@ -6,7 +6,7 @@ import { CheckedAccountBalance, ClickedAddNewShippingAddress, ClickedAddWorksToF
6
6
  import { ArtworkDetailsCompleted, ConsignmentSubmitted, ContactInformationCompleted, SubmitAnotherArtwork, UploadPhotosCompleted, ViewArtworkMyCollection } from "./Consignments";
7
7
  import { FocusedOnConversationMessageInput, SentConversationMessage, TappedInboxConversation, TappedMakeOffer, TappedViewOffer } from "./Conversations";
8
8
  import { ExperimentViewed } from "./ExperimentViewed";
9
- import { AuctionResultsFilterParamsChanged, CommercialFilterParamsChanged, PriceDatabaseFilterParamsChanged } from "./FilterAndSort";
9
+ import { AuctionResultsFilterParamsChanged, CommercialFilterParamsChanged, PriceDatabaseFilterParamsChanged, SelectedRecentPriceRange } from "./FilterAndSort";
10
10
  import { MyCollectionOnboardingCompleted, TappedExploreMyCollection, VisitMyCollection, VisitMyCollectionOnboardingSlide } from "./HomeFeedMyCollectionOnboarding";
11
11
  import { Impression } from "./Impression";
12
12
  import { AddCollectedArtwork, DeleteCollectedArtwork, EditCollectedArtwork, SaveCollectedArtwork, SentRequestPriceEstimate, TappedCollectedArtwork, TappedCollectedArtworkImages, TappedRequestPriceEstimate } from "./MyCollection";
@@ -18,7 +18,7 @@ import { FollowEvents } from "./SavesAndFollows";
18
18
  import { ConsignmentArtistFailed, FocusedOnPriceDatabaseSearchInput, FocusedOnSearchInput, SearchedPriceDatabase, SearchedWithNoResults, SelectedItemFromPriceDatabaseSearch, SelectedItemFromSearch } from "./Search";
19
19
  import { Share } from "./Share";
20
20
  import { SaleScreenLoadComplete, Screen, TimeOnPage } from "./System";
21
- import { TappedArticleGroup, TappedArtistGroup, TappedArtistSeriesGroup, TappedArtworkGroup, TappedAuctionGroup, TappedAuctionResultGroup, TappedBid, TappedBuyNow, TappedCollectionGroup, TappedConsign, TappedContactGallery, TappedCreateAlert, TappedExploreGroup, TappedFairCard, TappedFairGroup, TappedInfoBubble, TappedLearnMore, TappedLink, TappedMainArtworkGrid, TappedNavigationTab, TappedPartnerCard, TappedPromoSpace, TappedSell, TappedSellArtwork, TappedShowMore, TappedSkip, TappedTabBar, TappedVerifyIdentity, TappedViewingRoomCard, TappedViewingRoomGroup } from "./Tap";
21
+ import { TappedArticleGroup, TappedArtistGroup, TappedArtistSeriesGroup, TappedArtworkGroup, TappedAuctionGroup, TappedAuctionResultGroup, TappedBid, TappedBuyNow, TappedCollectionGroup, TappedConsign, TappedContactGallery, TappedCreateAlert, TappedCuratedCollection, TappedExploreGroup, TappedFairCard, TappedFairGroup, TappedInfoBubble, TappedLearnMore, TappedLink, TappedMainArtworkGrid, TappedNavigationTab, TappedPartnerCard, TappedPromoSpace, TappedSell, TappedSellArtwork, TappedShowMore, TappedSkip, TappedTabBar, TappedVerifyIdentity, TappedViewingRoomCard, TappedViewingRoomGroup } from "./Tap";
22
22
  import { ToggledNotification, ToggledSavedSearch } from "./Toggle";
23
23
  import { ToggledAccordion } from "./UserExperienceInteractions";
24
24
  import { ViewedVideo } from "./Video";
@@ -27,7 +27,7 @@ import { ViewedVideo } from "./Video";
27
27
  *
28
28
  * Each event describes one ActionType
29
29
  */
30
- export type Event = AddToCalendar | AddCollectedArtwork | ArtworkDetailsCompleted | AuctionPageView | AuctionResultsFilterParamsChanged | AuthImpression | BidPageView | CreatedAccount | ClickedActiveBid | ClickedActivityPanelNotificationItem | ClickedActivityPanelTab | ClickedAddNewShippingAddress | ClickedAddWorksToFair | ClickedAppDownload | ClickedArticleGroup | ClickedArtistGroup | ClickedArtistSeriesGroup | ClickedArtworkGroup | ClickedAuctionGroup | ClickedAuctionResultItem | ClickedBuyerProtection | ClickedChangePage | ClickedChangePaymentMethod | ClickedChangeShippingAddress | ClickedChangeShippingMethod | ClickedCollectionGroup | ClickedCreateAlert | ClickedDeliveryMethod | ClickedEditArtwork | ClickedExpansionToggle | ClickedFairCard | ClickedFairGroup | ClickedGalleryGroup | ClickedLoadMore | ClickedMainArtworkGrid | ClickedNavigationTab | ClickedNotificationsBell | ClickedOfferOption | ClickedOnArtworkShippingWeight | ClickedOnArtworkShippingUnitsDropdown | ClickedOnFramedMeasurements | ClickedOnFramedMeasurementsDropdown | ClickedOnSubmitOrder | ClickedSnooze | ClickedPartnerCard | ClickedPartnerLink | ClickedPaymentMethod | ClickedPaymentDetails | CheckedAccountBalance | ClickedPromoSpace | ClickedRegisterToBid | ClickedSelectShippingOption | ClickedShippingAddress | ClickedShowGroup | ClickedShowMore | ClickedVerifyIdentity | ClickedViewingRoomCard | ClickedOfferActions | ClickedOrderPage | CommercialFilterParamsChanged | CompletedOnboarding | ConfirmBid | ConfirmRegistrationPageview | ConsignmentArtistFailed | ConsignmentSubmitted | ContactInformationCompleted | DeleteCollectedArtwork | DeletedSavedSearch | EditCollectedArtwork | EditedSavedSearch | EnterLiveAuction | ExperimentViewed | FocusedOnConversationMessageInput | FocusedOnSearchInput | FocusedOnPriceDatabaseSearchInput | FollowEvents | Impression | MaxBidSelected | MyCollectionOnboardingCompleted | OnboardingUserInputData | PriceDatabaseFilterParamsChanged | PromptForReview | RegistrationPageView | RegistrationSubmitted | ResetYourPassword | SaleScreenLoadComplete | SaveCollectedArtwork | Screen | SearchedPriceDatabase | SearchedReverseImageWithNoResults | SearchedReverseImageWithResults | SearchedWithNoResults | SelectedArtworkFromReverseImageSearch | SelectedItemFromSearch | SelectedItemFromPriceDatabaseSearch | SentConversationMessage | SentRequestPriceEstimate | Share | StartedOnboarding | SubmitAnotherArtwork | SuccessfullyLoggedIn | TappedArticleGroup | TappedArtistGroup | TappedArtistSeriesGroup | TappedArtworkGroup | TappedAuctionGroup | TappedAuctionResultGroup | TappedBid | TappedBuyNow | TappedCollectedArtwork | TappedCollectedArtworkImages | TappedCollectionGroup | TappedConsign | TappedContactGallery | TappedCreateAlert | TappedExploreGroup | TappedExploreMyCollection | TappedFairCard | TappedFairGroup | TappedInboxConversation | TappedInfoBubble | TappedLink | TappedNavigationTab | TappedMainArtworkGrid | TappedMakeOffer | TappedMyCollectionInsightsMedianAuctionRailItem | TappedMyCollectionInsightsMedianAuctionPriceChartCareerHighlight | TappedMyCollectionInsightsMedianAuctionPriceChartCategory | TappedMyCollectionInsightsMedianAuctionPriceChartTimeframe | TappedPartnerCard | TappedPickImageFromLibrary | TappedPromoSpace | TappedRequestPriceEstimate | TappedReverseImageSearch | TappedSell | TappedSellArtwork | TappedShowMore | TappedLearnMore | TappedSkip | TappedTabBar | TappedToggleCameraFlash | TappedVerifyIdentity | TappedViewingRoomCard | TappedViewingRoomGroup | TappedViewOffer | TimeOnPage | ToggledAccordion | ToggledNotification | ToggledSavedSearch | UploadPhotosCompleted | ViewArtworkMyCollection | ViewedVideo | VisitMyCollection | VisitMyCollectionOnboardingSlide;
30
+ export type Event = AddToCalendar | AddCollectedArtwork | ArtworkDetailsCompleted | AuctionPageView | AuctionResultsFilterParamsChanged | AuthImpression | BidPageView | CreatedAccount | ClickedActiveBid | ClickedActivityPanelNotificationItem | ClickedActivityPanelTab | ClickedAddNewShippingAddress | ClickedAddWorksToFair | ClickedAppDownload | ClickedArticleGroup | ClickedArtistGroup | ClickedArtistSeriesGroup | ClickedArtworkGroup | ClickedAuctionGroup | ClickedAuctionResultItem | ClickedBuyerProtection | ClickedChangePage | ClickedChangePaymentMethod | ClickedChangeShippingAddress | ClickedChangeShippingMethod | ClickedCollectionGroup | ClickedCreateAlert | ClickedDeliveryMethod | ClickedEditArtwork | ClickedExpansionToggle | ClickedFairCard | ClickedFairGroup | ClickedGalleryGroup | ClickedLoadMore | ClickedMainArtworkGrid | ClickedNavigationTab | ClickedNotificationsBell | ClickedOfferOption | ClickedOnArtworkShippingWeight | ClickedOnArtworkShippingUnitsDropdown | ClickedOnFramedMeasurements | ClickedOnFramedMeasurementsDropdown | ClickedOnSubmitOrder | ClickedSnooze | ClickedPartnerCard | ClickedPartnerLink | ClickedPaymentMethod | ClickedPaymentDetails | CheckedAccountBalance | ClickedPromoSpace | ClickedRegisterToBid | ClickedSelectShippingOption | ClickedShippingAddress | ClickedShowGroup | ClickedShowMore | ClickedVerifyIdentity | ClickedViewingRoomCard | ClickedOfferActions | ClickedOrderPage | CommercialFilterParamsChanged | CompletedOnboarding | ConfirmBid | ConfirmRegistrationPageview | ConsignmentArtistFailed | ConsignmentSubmitted | ContactInformationCompleted | DeleteCollectedArtwork | DeletedSavedSearch | EditCollectedArtwork | EditedSavedSearch | EnterLiveAuction | ExperimentViewed | FocusedOnConversationMessageInput | FocusedOnSearchInput | FocusedOnPriceDatabaseSearchInput | FollowEvents | Impression | MaxBidSelected | MyCollectionOnboardingCompleted | OnboardingUserInputData | PriceDatabaseFilterParamsChanged | PromptForReview | RegistrationPageView | RegistrationSubmitted | ResetYourPassword | SaleScreenLoadComplete | SaveCollectedArtwork | Screen | SearchedPriceDatabase | SearchedReverseImageWithNoResults | SearchedReverseImageWithResults | SearchedWithNoResults | SelectedArtworkFromReverseImageSearch | SelectedItemFromSearch | SelectedItemFromPriceDatabaseSearch | SelectedRecentPriceRange | SentConversationMessage | SentRequestPriceEstimate | Share | StartedOnboarding | SubmitAnotherArtwork | SuccessfullyLoggedIn | TappedArticleGroup | TappedArtistGroup | TappedArtistSeriesGroup | TappedArtworkGroup | TappedAuctionGroup | TappedAuctionResultGroup | TappedBid | TappedBuyNow | TappedCollectedArtwork | TappedCollectedArtworkImages | TappedCollectionGroup | TappedConsign | TappedContactGallery | TappedCreateAlert | TappedCuratedCollection | TappedExploreGroup | TappedExploreMyCollection | TappedFairCard | TappedFairGroup | TappedInboxConversation | TappedInfoBubble | TappedLink | TappedNavigationTab | TappedMainArtworkGrid | TappedMakeOffer | TappedMyCollectionInsightsMedianAuctionRailItem | TappedMyCollectionInsightsMedianAuctionPriceChartCareerHighlight | TappedMyCollectionInsightsMedianAuctionPriceChartCategory | TappedMyCollectionInsightsMedianAuctionPriceChartTimeframe | TappedPartnerCard | TappedPickImageFromLibrary | TappedPromoSpace | TappedRequestPriceEstimate | TappedReverseImageSearch | TappedSell | TappedSellArtwork | TappedShowMore | TappedLearnMore | TappedSkip | TappedTabBar | TappedToggleCameraFlash | TappedVerifyIdentity | TappedViewingRoomCard | TappedViewingRoomGroup | TappedViewOffer | TimeOnPage | ToggledAccordion | ToggledNotification | ToggledSavedSearch | UploadPhotosCompleted | ViewArtworkMyCollection | ViewedVideo | VisitMyCollection | VisitMyCollectionOnboardingSlide;
31
31
  /**
32
32
  * The top-level actions an Event describes.
33
33
  *
@@ -454,6 +454,10 @@ export declare enum ActionType {
454
454
  * Corresponds to {@link SelectedItemFromSearch}
455
455
  */
456
456
  selectedItemFromSearch = "selectedItemFromSearch",
457
+ /**
458
+ * Corresponds to {@link SelectedRecentPriceRange}
459
+ */
460
+ selectedRecentPriceRange = "selectedRecentPriceRange",
457
461
  /**
458
462
  * Corresponds to {@link sentArtworkInquiry}
459
463
  */
@@ -538,6 +542,10 @@ export declare enum ActionType {
538
542
  * Corresponds to {@link TappedCreateAlert}
539
543
  */
540
544
  tappedCreateAlert = "tappedCreateAlert",
545
+ /**
546
+ * Corresponds to {@link TappedCuratedCollection}
547
+ */
548
+ tappedCuratedCollection = "tappedCuratedCollection",
541
549
  /**
542
550
  * Corresponds to {@link TappedExploreGroup}
543
551
  */
@@ -125,6 +125,7 @@ exports.ActionType = ActionType;
125
125
  ActionType["selectedArtworkFromReverseImageSearch"] = "selectedArtworkFromReverseImageSearch";
126
126
  ActionType["selectedItemFromPriceDatabaseSearch"] = "selectedItemFromPriceDatabaseSearch";
127
127
  ActionType["selectedItemFromSearch"] = "selectedItemFromSearch";
128
+ ActionType["selectedRecentPriceRange"] = "selectedRecentPriceRange";
128
129
  ActionType["sentArtworkInquiry"] = "sentArtworkInquiry";
129
130
  ActionType["sentConversationMessage"] = "sentConversationMessage";
130
131
  ActionType["sentRequestPriceEstimate"] = "sentRequestPriceEstimate";
@@ -146,6 +147,7 @@ exports.ActionType = ActionType;
146
147
  ActionType["tappedConsign"] = "tappedConsign";
147
148
  ActionType["tappedContactGallery"] = "tappedContactGallery";
148
149
  ActionType["tappedCreateAlert"] = "tappedCreateAlert";
150
+ ActionType["tappedCuratedCollection"] = "tappedCuratedCollection";
149
151
  ActionType["tappedExploreGroup"] = "tappedExploreGroup";
150
152
  ActionType["tappedExploreMyCollection"] = "tappedExploreMyCollection";
151
153
  ActionType["tappedFairCard"] = "tappedFairCard";
@@ -53,6 +53,7 @@ export declare enum ContextModule {
53
53
  consignSubmissionFlow = "consignSubmissionFlow",
54
54
  contactInformation = "contactInformation",
55
55
  createAlert = "createAlert",
56
+ curatedCollections = "curatedCollections",
56
57
  curatedHighlightsRail = "curatedHighlightsRail",
57
58
  currentAuctions = "currentAuctions",
58
59
  currentShowsRail = "currentShowsRail",
@@ -141,6 +142,7 @@ export declare enum ContextModule {
141
142
  pushNotifications = "pushNotifications",
142
143
  recentlySavedRail = "recentlySavedRail",
143
144
  recentlyViewedRail = "recentlyViewedRail",
145
+ recentPriceRanges = "recentPriceRanges",
144
146
  recommendedArtistsRail = "recommendedArtistsRail",
145
147
  recommendedWorksForYouRail = "recommendedWorksForYouRail",
146
148
  relatedArticles = "relatedArticles",
@@ -179,4 +181,4 @@ export declare enum ContextModule {
179
181
  /**
180
182
  * Limited ContextModules available for web authentication events
181
183
  */
182
- export type AuthContextModule = ContextModule.aboutTheWork | ContextModule.artistHeader | ContextModule.artistRecentlySold | ContextModule.artistSeriesRail | ContextModule.artistSeriesTab | ContextModule.artistsTab | ContextModule.artistsToFollowRail | ContextModule.artworkGrid | ContextModule.artworkImage | ContextModule.artworkSidebar | ContextModule.artworksTab | ContextModule.associatedViewingRoom | ContextModule.auctionHome | ContextModule.auctionLots | ContextModule.auctionRail | ContextModule.auctionResult | ContextModule.auctionResults | ContextModule.auctionResultComparableWorks | ContextModule.auctionSidebar | ContextModule.auctionsInfo | ContextModule.auctionTab | ContextModule.bannerPopUp | ContextModule.boothsTab | ContextModule.browseFair | ContextModule.categoryRail | ContextModule.collectionDescription | ContextModule.consignSubmissionFlow | ContextModule.currentShowsRail | ContextModule.fairInfo | ContextModule.fairOrganizerHeader | ContextModule.fairRail | ContextModule.fairsHeader | ContextModule.fairTab | ContextModule.featuredArtists | ContextModule.featuredArtistsRail | ContextModule.featuredGalleriesRail | ContextModule.footer | ContextModule.galleryTab | ContextModule.geneHeader | ContextModule.header | ContextModule.inquiry | ContextModule.intextTooltip | ContextModule.liveAuctionRoom | ContextModule.liveAuctionsRail | ContextModule.mainCarousel | ContextModule.minimalCTABanner | ContextModule.myCollectionAddArtworkAddArtist | ContextModule.onboardingActivity | ContextModule.onboardingCollectorLevel | ContextModule.onboardingInterests | ContextModule.onboardingFlow | ContextModule.otherWorksByArtistRail | ContextModule.otherWorksFromPartnerRail | ContextModule.otherWorksFromShowRail | ContextModule.otherWorksInAuctionRail | ContextModule.partnerHeader | ContextModule.pastFairs | ContextModule.popularArtistsRail | ContextModule.popUpModal | ContextModule.presentingFair | ContextModule.presentingPartner | ContextModule.priceEstimate | ContextModule.recentlyViewedRail | ContextModule.recommendedArtistsRail | ContextModule.relatedArtistsRail | ContextModule.relatedWorksRail | ContextModule.saveWorksCTA | ContextModule.showHeader | ContextModule.showInfo | ContextModule.showTab | ContextModule.standoutLots | ContextModule.tagHeader | ContextModule.topWorksRail | ContextModule.topTab | ContextModule.trendingArtistsRail | ContextModule.trendingLots | ContextModule.viewingRoom | ContextModule.worksByArtistsYouFollowRail | ContextModule.worksByPopularArtistsRail | ContextModule.worksForSaleRail;
184
+ export type AuthContextModule = ContextModule.aboutTheWork | ContextModule.artistHeader | ContextModule.artistRecentlySold | ContextModule.artistSeriesRail | ContextModule.artistSeriesTab | ContextModule.artistsTab | ContextModule.artistsToFollowRail | ContextModule.artworkGrid | ContextModule.artworkImage | ContextModule.artworkSidebar | ContextModule.artworksTab | ContextModule.associatedViewingRoom | ContextModule.auctionHome | ContextModule.auctionLots | ContextModule.auctionRail | ContextModule.auctionResult | ContextModule.auctionResults | ContextModule.auctionResultComparableWorks | ContextModule.auctionSidebar | ContextModule.auctionsInfo | ContextModule.auctionTab | ContextModule.bannerPopUp | ContextModule.boothsTab | ContextModule.browseFair | ContextModule.categoryRail | ContextModule.collectionDescription | ContextModule.consignSubmissionFlow | ContextModule.currentShowsRail | ContextModule.fairInfo | ContextModule.fairOrganizerHeader | ContextModule.fairRail | ContextModule.fairsHeader | ContextModule.fairTab | ContextModule.featuredArtists | ContextModule.featuredArtistsRail | ContextModule.featuredGalleriesRail | ContextModule.footer | ContextModule.galleryTab | ContextModule.geneHeader | ContextModule.header | ContextModule.inquiry | ContextModule.intextTooltip | ContextModule.liveAuctionRoom | ContextModule.liveAuctionsRail | ContextModule.mainCarousel | ContextModule.minimalCTABanner | ContextModule.myCollectionAddArtworkAddArtist | ContextModule.onboardingActivity | ContextModule.onboardingCollectorLevel | ContextModule.onboardingInterests | ContextModule.onboardingFlow | ContextModule.otherWorksByArtistRail | ContextModule.otherWorksFromPartnerRail | ContextModule.otherWorksFromShowRail | ContextModule.otherWorksInAuctionRail | ContextModule.partnerHeader | ContextModule.pastFairs | ContextModule.popularArtistsRail | ContextModule.popUpModal | ContextModule.presentingFair | ContextModule.presentingPartner | ContextModule.priceEstimate | ContextModule.recentlyViewedRail | ContextModule.recentPriceRanges | ContextModule.recommendedArtistsRail | ContextModule.relatedArtistsRail | ContextModule.relatedWorksRail | ContextModule.saveWorksCTA | ContextModule.showHeader | ContextModule.showInfo | ContextModule.showTab | ContextModule.standoutLots | ContextModule.tagHeader | ContextModule.topWorksRail | ContextModule.topTab | ContextModule.trendingArtistsRail | ContextModule.trendingLots | ContextModule.viewingRoom | ContextModule.worksByArtistsYouFollowRail | ContextModule.worksByPopularArtistsRail | ContextModule.worksForSaleRail;
@@ -67,6 +67,7 @@ exports.ContextModule = ContextModule;
67
67
  ContextModule["consignSubmissionFlow"] = "consignSubmissionFlow";
68
68
  ContextModule["contactInformation"] = "contactInformation";
69
69
  ContextModule["createAlert"] = "createAlert";
70
+ ContextModule["curatedCollections"] = "curatedCollections";
70
71
  ContextModule["curatedHighlightsRail"] = "curatedHighlightsRail";
71
72
  ContextModule["currentAuctions"] = "currentAuctions";
72
73
  ContextModule["currentShowsRail"] = "currentShowsRail";
@@ -155,6 +156,7 @@ exports.ContextModule = ContextModule;
155
156
  ContextModule["pushNotifications"] = "pushNotifications";
156
157
  ContextModule["recentlySavedRail"] = "recentlySavedRail";
157
158
  ContextModule["recentlyViewedRail"] = "recentlyViewedRail";
159
+ ContextModule["recentPriceRanges"] = "recentPriceRanges";
158
160
  ContextModule["recommendedArtistsRail"] = "recommendedArtistsRail";
159
161
  ContextModule["recommendedWorksForYouRail"] = "recommendedWorksForYouRail";
160
162
  ContextModule["relatedArticles"] = "relatedArticles";
@@ -12,6 +12,7 @@ export declare enum OwnerType {
12
12
  artists = "artists",
13
13
  artistSeries = "artistSeries",
14
14
  artwork = "artwork",
15
+ artworkPriceFilter = "artworkPriceFilter",
15
16
  auction = "auction",
16
17
  auctionResult = "auctionResult",
17
18
  auctionResultsForArtistsYouFollow = "auctionResultsForArtistsYouFollow",
@@ -84,7 +85,7 @@ export declare enum OwnerType {
84
85
  /**
85
86
  * Owner types available in iOS/Android
86
87
  */
87
- export type ScreenOwnerType = OwnerType.allArtistSeries | OwnerType.article | OwnerType.articles | OwnerType.artist | OwnerType.artistAuctionResults | OwnerType.artistSeries | OwnerType.artwork | OwnerType.auctionResult | OwnerType.auctionResultsForArtistsYouFollow | OwnerType.auctions | OwnerType.cityGuideGuide | OwnerType.cityGuideMap | OwnerType.cityPicker | OwnerType.collection | OwnerType.consign | OwnerType.consignmentFlow | OwnerType.consignmentSubmission | OwnerType.conversation | OwnerType.conversationMakeOfferConfirmArtwork | OwnerType.explore | OwnerType.fair | OwnerType.fairArtworks | OwnerType.gene | OwnerType.home | OwnerType.inbox | OwnerType.inboxBids | OwnerType.inboxConversation | OwnerType.inboxInquiries | OwnerType.myCollection | OwnerType.myCollectionAddArtworkArtist | OwnerType.myCollectionArtwork | OwnerType.myCollectionArtwork | OwnerType.myCollectionArtworkAbout | OwnerType.myCollectionArtworkInsights | OwnerType.myCollectionInsights | OwnerType.myCollectionInsightsMedianAuctionPrice | OwnerType.myCollectionOnboarding | OwnerType.newWorksForYou | OwnerType.onboarding | OwnerType.partner | OwnerType.profile | OwnerType.sale | OwnerType.reverseImageSearch | OwnerType.saleInformation | OwnerType.savedSearch | OwnerType.savedSearches | OwnerType.savesAndFollows | OwnerType.search | OwnerType.sell | OwnerType.show | OwnerType.shows | OwnerType.tag | OwnerType.viewingRoom | OwnerType.viewingRoomArtworkPage | OwnerType.viewingRoomArtworks | OwnerType.viewingRoomList | OwnerType.worksForYou;
88
+ export type ScreenOwnerType = OwnerType.allArtistSeries | OwnerType.article | OwnerType.articles | OwnerType.artist | OwnerType.artistAuctionResults | OwnerType.artistSeries | OwnerType.artwork | OwnerType.artworkPriceFilter | OwnerType.auctionResult | OwnerType.auctionResultsForArtistsYouFollow | OwnerType.auctions | OwnerType.cityGuideGuide | OwnerType.cityGuideMap | OwnerType.cityPicker | OwnerType.collection | OwnerType.consign | OwnerType.consignmentFlow | OwnerType.consignmentSubmission | OwnerType.conversation | OwnerType.conversationMakeOfferConfirmArtwork | OwnerType.explore | OwnerType.fair | OwnerType.fairArtworks | OwnerType.gene | OwnerType.home | OwnerType.inbox | OwnerType.inboxBids | OwnerType.inboxConversation | OwnerType.inboxInquiries | OwnerType.myCollection | OwnerType.myCollectionAddArtworkArtist | OwnerType.myCollectionArtwork | OwnerType.myCollectionArtwork | OwnerType.myCollectionArtworkAbout | OwnerType.myCollectionArtworkInsights | OwnerType.myCollectionInsights | OwnerType.myCollectionInsightsMedianAuctionPrice | OwnerType.myCollectionOnboarding | OwnerType.newWorksForYou | OwnerType.onboarding | OwnerType.partner | OwnerType.profile | OwnerType.sale | OwnerType.reverseImageSearch | OwnerType.saleInformation | OwnerType.savedSearch | OwnerType.savedSearches | OwnerType.savesAndFollows | OwnerType.search | OwnerType.sell | OwnerType.show | OwnerType.shows | OwnerType.tag | OwnerType.viewingRoom | OwnerType.viewingRoomArtworkPage | OwnerType.viewingRoomArtworks | OwnerType.viewingRoomList | OwnerType.worksForYou;
88
89
  /**
89
90
  * Owner types available in web/mobile web
90
91
  */
@@ -30,6 +30,7 @@ exports.OwnerType = OwnerType;
30
30
  OwnerType["artists"] = "artists";
31
31
  OwnerType["artistSeries"] = "artistSeries";
32
32
  OwnerType["artwork"] = "artwork";
33
+ OwnerType["artworkPriceFilter"] = "artworkPriceFilter";
33
34
  OwnerType["auction"] = "auction";
34
35
  OwnerType["auctionResult"] = "auctionResult";
35
36
  OwnerType["auctionResultsForArtistsYouFollow"] = "auctionResultsForArtistsYouFollow";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@artsy/cohesion",
3
- "version": "4.76.0",
3
+ "version": "4.78.0",
4
4
  "description": "Analytics schema",
5
5
  "main": "dist/index.js",
6
6
  "publishConfig": {