@artsy/cohesion 4.14.0 → 4.17.1

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,51 @@
1
+ # v4.17.1 (Wed Oct 20 2021)
2
+
3
+ #### 🐛 Bug Fix
4
+
5
+ - fix: rename context_screen param to contextScreen for tappedMainArtworkGrid [#258](https://github.com/artsy/cohesion/pull/258) ([@dimatretyak](https://github.com/dimatretyak))
6
+
7
+ #### Authors: 1
8
+
9
+ - Dima Tretyak (Dzmitry Tratsiak) ([@dimatretyak](https://github.com/dimatretyak))
10
+
11
+ ---
12
+
13
+ # v4.17.0 (Tue Oct 19 2021)
14
+
15
+ #### 🚀 Enhancement
16
+
17
+ - feat: pass additional params to TappedMainArtworkGrid [#257](https://github.com/artsy/cohesion/pull/257) ([@dimatretyak](https://github.com/dimatretyak))
18
+
19
+ #### Authors: 1
20
+
21
+ - Dima Tretyak (Dzmitry Tratsiak) ([@dimatretyak](https://github.com/dimatretyak))
22
+
23
+ ---
24
+
25
+ # v4.16.0 (Fri Oct 15 2021)
26
+
27
+ #### 🚀 Enhancement
28
+
29
+ - Search revamp events [#256](https://github.com/artsy/cohesion/pull/256) ([@louislecluse](https://github.com/louislecluse))
30
+
31
+ #### Authors: 1
32
+
33
+ - [@louislecluse](https://github.com/louislecluse)
34
+
35
+ ---
36
+
37
+ # v4.15.0 (Thu Oct 14 2021)
38
+
39
+ #### 🚀 Enhancement
40
+
41
+ - Adding new events to Cohesion [#255](https://github.com/artsy/cohesion/pull/255) ([@audrey-thenot](https://github.com/audrey-thenot))
42
+
43
+ #### Authors: 1
44
+
45
+ - [@audrey-thenot](https://github.com/audrey-thenot)
46
+
47
+ ---
48
+
1
49
  # v4.14.0 (Wed Oct 13 2021)
2
50
 
3
51
  #### 🚀 Enhancement
@@ -1,5 +1,6 @@
1
1
  import { ScreenOwnerType, TappedMainArtworkGrid } from "../../Schema";
2
2
  export interface TappedMainArtworkGridArgs {
3
+ contextScreen?: string;
3
4
  contextScreenOwnerType: ScreenOwnerType;
4
5
  contextScreenOwnerId?: string;
5
6
  contextScreenOwnerSlug?: string;
@@ -7,6 +8,7 @@ export interface TappedMainArtworkGridArgs {
7
8
  destinationScreenOwnerSlug: string;
8
9
  position?: number;
9
10
  sort?: string;
11
+ query?: string;
10
12
  }
11
13
  /**
12
14
  * A user taps an artwork in the main artworkGrid (iOS)
@@ -22,4 +24,4 @@ export interface TappedMainArtworkGridArgs {
22
24
  * })
23
25
  * ```
24
26
  */
25
- export declare const tappedMainArtworkGrid: ({ contextScreenOwnerType, contextScreenOwnerId, contextScreenOwnerSlug, destinationScreenOwnerId, destinationScreenOwnerSlug, position, sort, }: TappedMainArtworkGridArgs) => TappedMainArtworkGrid;
27
+ export declare const tappedMainArtworkGrid: ({ contextScreen, contextScreenOwnerType, contextScreenOwnerId, contextScreenOwnerSlug, destinationScreenOwnerId, destinationScreenOwnerSlug, position, sort, query, }: TappedMainArtworkGridArgs) => TappedMainArtworkGrid;
@@ -22,16 +22,19 @@ var _Schema = require("../../Schema");
22
22
  * ```
23
23
  */
24
24
  var tappedMainArtworkGrid = function tappedMainArtworkGrid(_ref) {
25
- var contextScreenOwnerType = _ref.contextScreenOwnerType,
25
+ var contextScreen = _ref.contextScreen,
26
+ contextScreenOwnerType = _ref.contextScreenOwnerType,
26
27
  contextScreenOwnerId = _ref.contextScreenOwnerId,
27
28
  contextScreenOwnerSlug = _ref.contextScreenOwnerSlug,
28
29
  destinationScreenOwnerId = _ref.destinationScreenOwnerId,
29
30
  destinationScreenOwnerSlug = _ref.destinationScreenOwnerSlug,
30
31
  position = _ref.position,
31
- sort = _ref.sort;
32
+ sort = _ref.sort,
33
+ query = _ref.query;
32
34
  return {
33
35
  action: _Schema.ActionType.tappedMainArtworkGrid,
34
36
  context_module: _Schema.ContextModule.artworkGrid,
37
+ context_screen: contextScreen,
35
38
  context_screen_owner_id: contextScreenOwnerId,
36
39
  context_screen_owner_slug: contextScreenOwnerSlug,
37
40
  context_screen_owner_type: contextScreenOwnerType,
@@ -39,6 +42,7 @@ var tappedMainArtworkGrid = function tappedMainArtworkGrid(_ref) {
39
42
  destination_screen_owner_slug: destinationScreenOwnerSlug,
40
43
  destination_screen_owner_type: _Schema.OwnerType.artwork,
41
44
  position: position,
45
+ query: query,
42
46
  sort: sort,
43
47
  type: "thumbnail"
44
48
  };
@@ -71,7 +71,7 @@ export interface TappedInboxConversation {
71
71
  partner_id: string;
72
72
  }
73
73
  /**
74
- * A user taps the make offer button
74
+ * A user taps the make offer button either on an artwork page (BNMO) or inquiry conversation.
75
75
  *
76
76
  * This schema describes events sent to Segment from [[tappedMakeOffer]]
77
77
  *
@@ -86,8 +86,10 @@ export interface TappedInboxConversation {
86
86
  */
87
87
  export interface TappedMakeOffer {
88
88
  action: ActionType.tappedMakeOffer;
89
- context_owner_type: OwnerType.conversation;
90
- impulse_conversation_id: string;
89
+ context_owner_type: OwnerType;
90
+ context_owner_slug?: string;
91
+ context_owner_id?: string;
92
+ impulse_conversation_id?: string;
91
93
  }
92
94
  /**
93
95
  * A user taps to view an offer
@@ -27,6 +27,7 @@ export interface CommercialFilterParamsChanged {
27
27
  context_owner_slug?: string;
28
28
  current: string;
29
29
  changed: string;
30
+ query?: string;
30
31
  }
31
32
  /**
32
33
  * A user applies filters to a filterable/sortable auction results module
@@ -343,6 +343,7 @@ export interface TappedInfoBubble {
343
343
  export interface TappedMainArtworkGrid {
344
344
  action: ActionType.tappedMainArtworkGrid;
345
345
  context_module: ContextModule;
346
+ context_screen?: string;
346
347
  context_screen_owner_type: ScreenOwnerType;
347
348
  context_screen_owner_id?: string;
348
349
  context_screen_owner_slug?: string;
@@ -352,6 +353,7 @@ export interface TappedMainArtworkGrid {
352
353
  position?: number;
353
354
  sort?: string;
354
355
  type: "thumbnail";
356
+ query?: string;
355
357
  }
356
358
  /**
357
359
  * A user taps the promo space on the iOS home screen
@@ -520,6 +522,7 @@ export interface TappedNavigationTab {
520
522
  context_screen_owner_id?: string;
521
523
  context_screen_owner_slug?: string;
522
524
  subject?: string;
525
+ query?: string;
523
526
  }
524
527
  /**
525
528
  * A user taps a partner card
@@ -656,3 +659,67 @@ export interface TappedCreateAlert {
656
659
  context_screen_owner_id?: string;
657
660
  context_screen_owner_slug?: string;
658
661
  }
662
+ /**
663
+ * A user taps "Bid" on an artwork page inside an Auction
664
+ *
665
+ * This schema describes events sent to Segment from [[tappedBid]]
666
+ *
667
+ * @example
668
+ * ```
669
+ * {
670
+ * action: "tappedBid",
671
+ * context_owner_type: "Artwork",
672
+ * context_owner_slug: "radna-segal-pearl",
673
+ * context_owner_id: "6164889300d643000db86504",
674
+ * }
675
+ * ```
676
+ */
677
+ export interface TappedBid {
678
+ action: ActionType.tappedBid;
679
+ context_owner_type: ScreenOwnerType;
680
+ context_owner_id: string;
681
+ context_owner_slug: string;
682
+ }
683
+ /**
684
+ * A user taps "Buy Now" on an artwork page (BNMO)
685
+ *
686
+ * This schema describes events sent to Segment from [[tappedBuyNow]]
687
+ *
688
+ * @example
689
+ * ```
690
+ * {
691
+ * action: "tappedBuyNow",
692
+ * context_owner_type: "Artwork",
693
+ * context_owner_slug: "radna-segal-pearl",
694
+ * context_owner_id: "6164889300d643000db86504",
695
+ * }
696
+ * ```
697
+ */
698
+ export interface TappedBuyNow {
699
+ action: ActionType.tappedBuyNow;
700
+ context_owner_type: ScreenOwnerType;
701
+ context_owner_id: string;
702
+ context_owner_slug: string;
703
+ }
704
+ /**
705
+ * A user taps on 'Contact Gallery' on an artwork page
706
+ *
707
+ * This schema describes events sent to Segment from [[tappedContactGallery]]
708
+ *
709
+ * @example
710
+ * ```
711
+ * {
712
+ * action: "tappedContactGallery",
713
+ * context_owner_type: "Artwork",
714
+ * context_owner_slug: "radna-segal-pearl",
715
+ * context_owner_id: "6164889300d643000db86504",
716
+
717
+ * }
718
+ * ```
719
+ */
720
+ export interface TappedContactGallery {
721
+ action: ActionType.tappedContactGallery;
722
+ context_owner_type: OwnerType;
723
+ context_owner_slug: string;
724
+ context_owner_id: string;
725
+ }
@@ -9,14 +9,14 @@ import { FollowEvents } from "./SavesAndFollows";
9
9
  import { ConsignmentArtistFailed, FocusedOnPriceDatabaseSearchInput, FocusedOnSearchInput, SearchedPriceDatabase, SearchedWithNoResults, SelectedItemFromPriceDatabaseSearch, SelectedItemFromSearch } from "./Search";
10
10
  import { Share } from "./Share";
11
11
  import { SaleScreenLoadComplete, Screen, TimeOnPage } from "./System";
12
- import { TappedArticleGroup, TappedArtistGroup, TappedArtistSeriesGroup, TappedArtworkGroup, TappedAuctionGroup, TappedAuctionResultGroup, TappedCollectionGroup, TappedConsign, TappedCreateAlert, TappedExploreGroup, TappedFairCard, TappedFairGroup, TappedInfoBubble, TappedLink, TappedMainArtworkGrid, TappedNavigationTab, TappedPartnerCard, TappedPromoSpace, TappedSell, TappedShowMore, TappedTabBar, TappedVerifyIdentity, TappedViewingRoomCard, TappedViewingRoomGroup } from "./Tap";
12
+ import { TappedArticleGroup, TappedArtistGroup, TappedArtistSeriesGroup, TappedArtworkGroup, TappedAuctionGroup, TappedAuctionResultGroup, TappedBid, TappedBuyNow, TappedCollectionGroup, TappedConsign, TappedContactGallery, TappedCreateAlert, TappedExploreGroup, TappedFairCard, TappedFairGroup, TappedInfoBubble, TappedLink, TappedMainArtworkGrid, TappedNavigationTab, TappedPartnerCard, TappedPromoSpace, TappedSell, TappedShowMore, TappedTabBar, TappedVerifyIdentity, TappedViewingRoomCard, TappedViewingRoomGroup } from "./Tap";
13
13
  import { ToggledNotification, ToggledSavedSearch } from "./Toggle";
14
14
  /**
15
15
  * Master list of valid schemas for analytics actions
16
16
  *
17
17
  * Each event describes one ActionType
18
18
  */
19
- export declare type Event = AddToCalendar | AddCollectedArtwork | AuctionResultsFilterParamsChanged | AuthImpression | CreatedAccount | ClickedAddNewShippingAddress | ClickedAddWorksToFair | ClickedAppDownload | ClickedArticleGroup | ClickedArtistGroup | ClickedArtistSeriesGroup | ClickedArtworkGroup | ClickedAuctionGroup | ClickedBuyerProtection | ClickedChangePage | ClickedChangePaymentMethod | ClickedChangeShippingAddress | ClickedChangeShippingMethod | ClickedCollectionGroup | ClickedDeliveryMethod | ClickedEditArtwork | ClickedExpansionToggle | ClickedFairCard | ClickedFairGroup | ClickedGalleryGroup | ClickedLoadMore | ClickedMainArtworkGrid | ClickedNavigationTab | ClickedOnArtworkShippingWeight | ClickedOnArtworkShippingUnitsDropdown | ClickedOnFramedMeasurements | ClickedOnFramedMeasurementsDropdown | ClickedOnSubmitOrder | ClickedSnooze | ClickedPartnerCard | ClickedPromoSpace | ClickedSelectShippingOption | ClickedShippingAddress | ClickedShowGroup | ClickedShowMore | ClickedVerifyIdentity | ClickedViewingRoomCard | CommercialFilterParamsChanged | ConsignmentArtistFailed | DeleteCollectedArtwork | DeletedSavedSearch | EditCollectedArtwork | EditedSavedSearch | FocusedOnConversationMessageInput | FocusedOnSearchInput | FocusedOnPriceDatabaseSearchInput | FollowEvents | OnboardingUserInputData | PriceDatabaseFilterParamsChanged | ResetYourPassword | SaleScreenLoadComplete | Screen | SearchedPriceDatabase | SearchedWithNoResults | SelectedItemFromSearch | SelectedItemFromPriceDatabaseSearch | SentConversationMessage | Share | SuccessfullyLoggedIn | TappedArticleGroup | TappedArtistGroup | TappedArtistSeriesGroup | TappedArtworkGroup | TappedAuctionGroup | TappedAuctionResultGroup | TappedCollectedArtwork | TappedCollectedArtworkImages | TappedCollectionGroup | TappedConsign | TappedCreateAlert | TappedExploreGroup | TappedFairCard | TappedFairGroup | TappedInboxConversation | TappedInfoBubble | TappedLink | TappedNavigationTab | TappedMainArtworkGrid | TappedMakeOffer | TappedPartnerCard | TappedPromoSpace | TappedSell | TappedShowMore | TappedTabBar | TappedVerifyIdentity | TappedViewingRoomCard | TappedViewingRoomGroup | TappedViewOffer | TimeOnPage | ToggledNotification | ToggledSavedSearch;
19
+ export declare type Event = AddToCalendar | AddCollectedArtwork | AuctionResultsFilterParamsChanged | AuthImpression | CreatedAccount | ClickedAddNewShippingAddress | ClickedAddWorksToFair | ClickedAppDownload | ClickedArticleGroup | ClickedArtistGroup | ClickedArtistSeriesGroup | ClickedArtworkGroup | ClickedAuctionGroup | ClickedBuyerProtection | ClickedChangePage | ClickedChangePaymentMethod | ClickedChangeShippingAddress | ClickedChangeShippingMethod | ClickedCollectionGroup | ClickedDeliveryMethod | ClickedEditArtwork | ClickedExpansionToggle | ClickedFairCard | ClickedFairGroup | ClickedGalleryGroup | ClickedLoadMore | ClickedMainArtworkGrid | ClickedNavigationTab | ClickedOnArtworkShippingWeight | ClickedOnArtworkShippingUnitsDropdown | ClickedOnFramedMeasurements | ClickedOnFramedMeasurementsDropdown | ClickedOnSubmitOrder | ClickedSnooze | ClickedPartnerCard | ClickedPromoSpace | ClickedSelectShippingOption | ClickedShippingAddress | ClickedShowGroup | ClickedShowMore | ClickedVerifyIdentity | ClickedViewingRoomCard | CommercialFilterParamsChanged | ConsignmentArtistFailed | DeleteCollectedArtwork | DeletedSavedSearch | EditCollectedArtwork | EditedSavedSearch | FocusedOnConversationMessageInput | FocusedOnSearchInput | FocusedOnPriceDatabaseSearchInput | FollowEvents | OnboardingUserInputData | PriceDatabaseFilterParamsChanged | ResetYourPassword | SaleScreenLoadComplete | Screen | SearchedPriceDatabase | SearchedWithNoResults | SelectedItemFromSearch | SelectedItemFromPriceDatabaseSearch | SentConversationMessage | Share | SuccessfullyLoggedIn | TappedArticleGroup | TappedArtistGroup | TappedArtistSeriesGroup | TappedArtworkGroup | TappedAuctionGroup | TappedAuctionResultGroup | TappedBid | TappedBuyNow | TappedCollectedArtwork | TappedCollectedArtworkImages | TappedCollectionGroup | TappedConsign | TappedContactGallery | TappedCreateAlert | TappedExploreGroup | TappedFairCard | TappedFairGroup | TappedInboxConversation | TappedInfoBubble | TappedLink | TappedNavigationTab | TappedMainArtworkGrid | TappedMakeOffer | TappedPartnerCard | TappedPromoSpace | TappedSell | TappedShowMore | TappedTabBar | TappedVerifyIdentity | TappedViewingRoomCard | TappedViewingRoomGroup | TappedViewOffer | TimeOnPage | ToggledNotification | ToggledSavedSearch;
20
20
  /**
21
21
  * The top-level actions an Event describes.
22
22
  *
@@ -196,6 +196,10 @@ export declare enum ActionType {
196
196
  * Corresponds to {@link ConsignmentArtistFailed}
197
197
  */
198
198
  consignmentArtistFailed = "consignmentArtistFailed",
199
+ /**
200
+ * Corresponds to {@link ContactGallery}
201
+ */
202
+ contactGallery = "contactGallery",
199
203
  /**
200
204
  * Corresponds to {@link CreatedAccount}
201
205
  */
@@ -324,6 +328,14 @@ export declare enum ActionType {
324
328
  * Corresponds to {@link TappedAuctionResultGroup}
325
329
  */
326
330
  tappedAuctionResultGroup = "tappedAuctionResultGroup",
331
+ /**
332
+ * Corresponds to {@link TappedBid}
333
+ */
334
+ tappedBid = "tappedBid",
335
+ /**
336
+ * Corresponds to {@link TappedBuyNow}
337
+ */
338
+ tappedBuyNow = "tappedBuyNow",
327
339
  /**
328
340
  * Corresponds to {@link TappedCollectedArtwork}
329
341
  */
@@ -340,6 +352,10 @@ export declare enum ActionType {
340
352
  * Corresponds to {@link TappedConsign}
341
353
  */
342
354
  tappedConsign = "tappedConsign",
355
+ /**
356
+ * Corresponds to {@link TappedContactGallery}
357
+ */
358
+ tappedContactGallery = "tappedContactGallery",
343
359
  /**
344
360
  * Corresponds to {@link TappedCreateAlert}
345
361
  */
@@ -63,6 +63,7 @@ exports.ActionType = ActionType;
63
63
  ActionType["clickedViewingRoomCard"] = "clickedViewingRoomCard";
64
64
  ActionType["commercialFilterParamsChanged"] = "commercialFilterParamsChanged";
65
65
  ActionType["consignmentArtistFailed"] = "consignmentArtistFailed";
66
+ ActionType["contactGallery"] = "contactGallery";
66
67
  ActionType["createdAccount"] = "createdAccount";
67
68
  ActionType["deleteCollectedArtwork"] = "deleteCollectedArtwork";
68
69
  ActionType["deletedSavedSearch"] = "deletedSavedSearch";
@@ -95,10 +96,13 @@ exports.ActionType = ActionType;
95
96
  ActionType["tappedArtworkGroup"] = "tappedArtworkGroup";
96
97
  ActionType["tappedAuctionGroup"] = "tappedAuctionGroup";
97
98
  ActionType["tappedAuctionResultGroup"] = "tappedAuctionResultGroup";
99
+ ActionType["tappedBid"] = "tappedBid";
100
+ ActionType["tappedBuyNow"] = "tappedBuyNow";
98
101
  ActionType["tappedCollectedArtwork"] = "tappedCollectedArtwork";
99
102
  ActionType["tappedCollectedArtworkImages"] = "tappedCollectedArtworkImages";
100
103
  ActionType["tappedCollectionGroup"] = "tappedCollectionGroup";
101
104
  ActionType["tappedConsign"] = "tappedConsign";
105
+ ActionType["tappedContactGallery"] = "tappedContactGallery";
102
106
  ActionType["tappedCreateAlert"] = "tappedCreateAlert";
103
107
  ActionType["tappedExploreGroup"] = "tappedExploreGroup";
104
108
  ActionType["tappedFairGroup"] = "tappedFairGroup";
@@ -16,6 +16,7 @@ export declare enum ContextModule {
16
16
  artistHighDemandGrid = "artistHighDemandGrid",
17
17
  artistRecentlySold = "artistRecentlySold",
18
18
  artistSeriesRail = "artistSeriesRail",
19
+ artistSeriesTab = "artistSeriesTab",
19
20
  artistsTab = "artistsTab",
20
21
  artistsToFollowRail = "artistsToFollowRail",
21
22
  artworkGrid = "artworkGrid",
@@ -35,6 +36,7 @@ export declare enum ContextModule {
35
36
  auctionResultsRail = "auctionResultsRail",
36
37
  auctionSidebar = "auctionSidebar",
37
38
  auctionsInfo = "auctionsInfo",
39
+ auctionTab = "auctionTab",
38
40
  banner = "banner",
39
41
  bannerPopUp = "bannerPopUp",
40
42
  boothsTab = "boothsTab",
@@ -55,6 +57,7 @@ export declare enum ContextModule {
55
57
  fairOrganizerHeader = "fairOrganizerHeader",
56
58
  fairRail = "fairRail",
57
59
  fairsHeader = "fairsHeader",
60
+ fairTab = "fairTab",
58
61
  featuredArtists = "featuredArtists",
59
62
  featuredArtistsRail = "featuredArtistsRail",
60
63
  featuredCollection = "featuredCollection",
@@ -65,6 +68,7 @@ export declare enum ContextModule {
65
68
  featuredViewingRoomsRail = "featuredViewingRoomsRail",
66
69
  footer = "footer",
67
70
  galleryBoothRail = "galleryBoothRail",
71
+ galleryTab = "galleryTab",
68
72
  geneHeader = "geneHeader",
69
73
  header = "header",
70
74
  inboxActiveBids = "inboxActiveBids",
@@ -130,12 +134,14 @@ export declare enum ContextModule {
130
134
  showHeader = "showHeader",
131
135
  showInfo = "showInfo",
132
136
  showsRail = "showsRail",
137
+ showTab = "showTab",
133
138
  similarToWorksYouSavedRail = "similarToWorksYouSavedRail",
134
139
  similarToWorksYouViewedRail = "similarToWorksYouViewedRail",
135
140
  standoutLots = "standoutLots",
136
141
  tabBar = "tabBar",
137
142
  tagHeader = "tagHeader",
138
143
  toDoList = "toDoList",
144
+ topTab = "topTab",
139
145
  topWorksRail = "topWorksRail",
140
146
  trendingArtistsRail = "trendingArtistsRail",
141
147
  trendingLots = "trendingLots",
@@ -150,4 +156,4 @@ export declare enum ContextModule {
150
156
  /**
151
157
  * Limited ContextModules available for web authentication events
152
158
  */
153
- export declare type AuthContextModule = ContextModule.aboutTheWork | ContextModule.artistHeader | ContextModule.artistRecentlySold | ContextModule.artistSeriesRail | ContextModule.artistsTab | ContextModule.artistsToFollowRail | ContextModule.artworkGrid | ContextModule.artworkImage | ContextModule.artworkSidebar | ContextModule.associatedViewingRoom | ContextModule.auctionHome | ContextModule.auctionLots | ContextModule.auctionRail | ContextModule.auctionResult | ContextModule.auctionResults | ContextModule.auctionSidebar | ContextModule.auctionsInfo | ContextModule.bannerPopUp | ContextModule.boothsTab | ContextModule.browseFair | ContextModule.categoryRail | ContextModule.collectionDescription | ContextModule.consignSubmissionFlow | ContextModule.currentShowsRail | ContextModule.fairInfo | ContextModule.fairOrganizerHeader | ContextModule.fairRail | ContextModule.fairsHeader | ContextModule.featuredArtists | ContextModule.featuredArtistsRail | ContextModule.featuredGalleriesRail | ContextModule.footer | ContextModule.geneHeader | ContextModule.header | ContextModule.inquiry | ContextModule.intextTooltip | ContextModule.liveAuctionRoom | ContextModule.liveAuctionsRail | ContextModule.mainCarousel | ContextModule.minimalCTABanner | 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.standoutLots | ContextModule.tagHeader | ContextModule.topWorksRail | ContextModule.trendingArtistsRail | ContextModule.trendingLots | ContextModule.viewingRoom | ContextModule.worksByArtistsYouFollowRail | ContextModule.worksByPopularArtistsRail | ContextModule.worksForSaleRail;
159
+ export declare 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.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.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;
@@ -30,6 +30,7 @@ exports.ContextModule = ContextModule;
30
30
  ContextModule["artistHighDemandGrid"] = "artistHighDemandGrid";
31
31
  ContextModule["artistRecentlySold"] = "artistRecentlySold";
32
32
  ContextModule["artistSeriesRail"] = "artistSeriesRail";
33
+ ContextModule["artistSeriesTab"] = "artistSeriesTab";
33
34
  ContextModule["artistsTab"] = "artistsTab";
34
35
  ContextModule["artistsToFollowRail"] = "artistsToFollowRail";
35
36
  ContextModule["artworkGrid"] = "artworkGrid";
@@ -49,6 +50,7 @@ exports.ContextModule = ContextModule;
49
50
  ContextModule["auctionResultsRail"] = "auctionResultsRail";
50
51
  ContextModule["auctionSidebar"] = "auctionSidebar";
51
52
  ContextModule["auctionsInfo"] = "auctionsInfo";
53
+ ContextModule["auctionTab"] = "auctionTab";
52
54
  ContextModule["banner"] = "banner";
53
55
  ContextModule["bannerPopUp"] = "bannerPopUp";
54
56
  ContextModule["boothsTab"] = "boothsTab";
@@ -69,6 +71,7 @@ exports.ContextModule = ContextModule;
69
71
  ContextModule["fairOrganizerHeader"] = "fairOrganizerHeader";
70
72
  ContextModule["fairRail"] = "fairRail";
71
73
  ContextModule["fairsHeader"] = "fairsHeader";
74
+ ContextModule["fairTab"] = "fairTab";
72
75
  ContextModule["featuredArtists"] = "featuredArtists";
73
76
  ContextModule["featuredArtistsRail"] = "featuredArtistsRail";
74
77
  ContextModule["featuredCollection"] = "featuredCollection";
@@ -79,6 +82,7 @@ exports.ContextModule = ContextModule;
79
82
  ContextModule["featuredViewingRoomsRail"] = "featuredViewingRoomsRail";
80
83
  ContextModule["footer"] = "footer";
81
84
  ContextModule["galleryBoothRail"] = "galleryBoothRail";
85
+ ContextModule["galleryTab"] = "galleryTab";
82
86
  ContextModule["geneHeader"] = "geneHeader";
83
87
  ContextModule["header"] = "header";
84
88
  ContextModule["inboxActiveBids"] = "inboxActiveBids";
@@ -144,12 +148,14 @@ exports.ContextModule = ContextModule;
144
148
  ContextModule["showHeader"] = "showHeader";
145
149
  ContextModule["showInfo"] = "showInfo";
146
150
  ContextModule["showsRail"] = "showsRail";
151
+ ContextModule["showTab"] = "showTab";
147
152
  ContextModule["similarToWorksYouSavedRail"] = "similarToWorksYouSavedRail";
148
153
  ContextModule["similarToWorksYouViewedRail"] = "similarToWorksYouViewedRail";
149
154
  ContextModule["standoutLots"] = "standoutLots";
150
155
  ContextModule["tabBar"] = "tabBar";
151
156
  ContextModule["tagHeader"] = "tagHeader";
152
157
  ContextModule["toDoList"] = "toDoList";
158
+ ContextModule["topTab"] = "topTab";
153
159
  ContextModule["topWorksRail"] = "topWorksRail";
154
160
  ContextModule["trendingArtistsRail"] = "trendingArtistsRail";
155
161
  ContextModule["trendingLots"] = "trendingLots";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@artsy/cohesion",
3
- "version": "4.14.0",
3
+ "version": "4.17.1",
4
4
  "description": "Analytics schema",
5
5
  "main": "dist/index.js",
6
6
  "publishConfig": {