@artsy/cohesion 4.333.0 → 4.335.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,27 @@
1
+ # v4.335.0 (Mon Dec 15 2025)
2
+
3
+ #### 🚀 Enhancement
4
+
5
+ - fix: add allArtistsSeries as a destination_page_owner_type of clickedArtistSeriesGroup events [#671](https://github.com/artsy/cohesion/pull/671) ([@iskounen](https://github.com/iskounen))
6
+
7
+ #### Authors: 1
8
+
9
+ - Adam Iskounen ([@iskounen](https://github.com/iskounen))
10
+
11
+ ---
12
+
13
+ # v4.334.0 (Mon Dec 15 2025)
14
+
15
+ #### 🚀 Enhancement
16
+
17
+ - feat: improved artist page tracking (Diamond) [#665](https://github.com/artsy/cohesion/pull/665) ([@xander-pero](https://github.com/xander-pero))
18
+
19
+ #### Authors: 1
20
+
21
+ - [@xander-pero](https://github.com/xander-pero)
22
+
23
+ ---
24
+
1
25
  # v4.333.0 (Tue Dec 09 2025)
2
26
 
3
27
  #### 🚀 Enhancement
@@ -150,7 +150,7 @@ export interface ClickedArtistGroup extends ClickedEntityGroup {
150
150
  */
151
151
  export interface ClickedArtistSeriesGroup extends ClickedEntityGroup {
152
152
  action: ActionType.clickedArtistSeriesGroup;
153
- destination_page_owner_type: OwnerType.artistSeries;
153
+ destination_page_owner_type: OwnerType.artistSeries | OwnerType.allArtistSeries;
154
154
  }
155
155
  /**
156
156
  * A user clicks a grouping of artworks on web. This includes all artwork groupings (i.e. artwork rails), except the main artwork grid on our core merchandising surfaces.
@@ -1927,13 +1927,13 @@ export interface ClickedVerifiedRepresentative {
1927
1927
  * ```
1928
1928
  * {
1929
1929
  * action: "clickedGene",
1930
- * context_module : "Young British Artists",
1931
- * context_page_owner_type: "Artwork",
1932
- * context_page_owner_id: "58de681f275b2464fcdde097",
1933
- * context_page_owner_slug: "damien-hirst",
1934
- * destination_page_owner_type: "Gene"
1935
- * destination_page_owner_id: "58de681f275b2464fcdde097"
1936
- * subject: ""
1930
+ * context_module : "relatedCategories",
1931
+ * context_page_owner_type: "artist",
1932
+ * context_page_owner_id: "4d8b92b34eb68a1b2c0003f4",
1933
+ * context_page_owner_slug: "andy-warhol",
1934
+ * destination_page_owner_type: "gene",
1935
+ * destination_page_owner_id: "52333b71a09a67177c000082",
1936
+ * destination_page_owner_slug: "celebrity"
1937
1937
  * }
1938
1938
  * ```
1939
1939
  */
@@ -1941,33 +1941,30 @@ export interface ClickedGene {
1941
1941
  action: ActionType.clickedGene;
1942
1942
  context_module: ContextModule;
1943
1943
  context_page_owner_type: PageOwnerType;
1944
- context_page_owner_id: string;
1944
+ context_page_owner_id?: string;
1945
1945
  context_page_owner_slug?: string;
1946
1946
  destination_page_owner_type: PageOwnerType;
1947
- destination_page_owner_id: string;
1948
- subject?: string;
1947
+ destination_page_owner_id?: string;
1948
+ destination_page_owner_slug?: string;
1949
1949
  }
1950
1950
  /**
1951
- * A user clicks one of the Highlight and Achievement toggles in the artist header
1951
+ * A user clicks on a pathway to the artist's CV, via header or about page
1952
1952
  *
1953
- * This schema describes events sent to Segment from [[clickedHighlightAchievement]]
1953
+ * This schema describes events sent to Segment from [[clickedCV]]
1954
1954
  *
1955
1955
  * @example
1956
1956
  * ```
1957
1957
  * {
1958
- * action: "clickedHighlightAchievement",
1959
- * context_module : "Active Secondary Market",
1960
- * context_page_owner_type: "Artwork",
1961
- * context_page_owner_id: "58de681f275b2464fcdde097",
1962
- * context_page_owner_slug: "damien-hirst",
1963
- * destination_page_owner_type: "Gene"
1964
- * destination_page_owner_id: "58de681f275b2464fcdde097"
1965
- * subject: ""
1958
+ * action: "clickedCV",
1959
+ * context_module : "artistHeader" | "artistAchievements",
1960
+ * context_page_owner_type: "artist",
1961
+ * context_page_owner_id?: "4d8b92b34eb68a1b2c0003f4",
1962
+ * context_page_owner_slug?: "andy-warhol"
1966
1963
  * }
1967
1964
  * ```
1968
1965
  */
1969
- export interface ClickedHighlightAchievement {
1970
- action: ActionType.clickedHighlightAchievement;
1966
+ export interface ClickedCV {
1967
+ action: ActionType.clickedCV;
1971
1968
  context_module: ContextModule;
1972
1969
  context_page_owner_type: PageOwnerType;
1973
1970
  context_page_owner_id: string;
@@ -83,3 +83,28 @@ export interface ToggledCollapsibleOrderSummary {
83
83
  context_page_owner_id: string;
84
84
  expanded: boolean;
85
85
  }
86
+ /**
87
+ * A user toggles "read more" or "read less" to expand the artist bio section
88
+ *
89
+ * This schema describes events sent to Segment from [[toggledArtistBio]]
90
+ *
91
+ * @example
92
+ * ```
93
+ * {
94
+ * action: "toggledArtistBio",
95
+ * context_module : "artistHeader",
96
+ * context_page_owner_type: "artist",
97
+ * context_page_owner_id: "4d8b92b34eb68a1b2c0003f4",
98
+ * context_page_owner_slug: "andy-warhol"
99
+ * expand: true | false
100
+ * }
101
+ * ```
102
+ */
103
+ export interface ToggledArtistBio {
104
+ action: ActionType.toggledArtistBio;
105
+ context_module: ContextModule;
106
+ context_page_owner_type: PageOwnerType;
107
+ context_page_owner_id: string;
108
+ context_page_owner_slug: string;
109
+ expand: boolean;
110
+ }
@@ -14,10 +14,10 @@ import { ActionType } from ".";
14
14
  * ```
15
15
  * {
16
16
  * action: "toggledAccordion",
17
- * context_module: "artworkDetailsCompleted"
18
- * context_owner_type: "consignmentFlow",
19
- * subject: "Artwork Details"
20
- * expand: TRUE
17
+ * context_module: "artworkDetailsCompleted" | "artworkSidebar" | "artistHeader" | "artistAchievements"
18
+ * context_owner_type: "consignmentFlow" | "artwork" | "artist",
19
+ * subject: "Artwork Details" | "Shipping and taxes" | "ACTIVE_SECONDARY_MARKET" | ...,
20
+ * expand: true | false
21
21
  * }
22
22
  * ```
23
23
  */
@@ -3,7 +3,7 @@ import { AddToCalendar } from "./AddToCalendar";
3
3
  import { AddedArtworkToArtworkList, CreatedArtworkList, DeletedArtworkList, EditedArtworkList, ViewedArtworkList, ViewedSharedArtworkList } from "./ArtworkLists";
4
4
  import { AuctionPageView, BidPageView, ClickedActiveBid, ClickedRegisterToBid, ConfirmBid, ConfirmRegistrationPageview, EnterLiveAuction, MaxBidSelected, RegistrationPageView, RegistrationSubmitted } from "./Auction";
5
5
  import { AuthImpression, CompletedOnboarding, CreatedAccount, OnboardingUserInputData, ResetYourPassword, StartedOnboarding, SuccessfullyLoggedIn } from "./Authentication";
6
- import { CheckedAccountBalance, ClickedAddFilters, ClickedAddMissingArtworksDetails, ClickedAddNewShippingAddress, ClickedAddWorksToFair, ClickedAlertsFilters, ClickedAppDownload, ClickedArticleGroup, ClickedArtistGroup, ClickedArtistSeriesGroup, ClickedArtworkGroup, ClickedAskSpecialist, ClickedAuctionGroup, ClickedAuctionResultItem, ClickedBid, ClickedBuyerProtection, ClickedBuyNow, ClickedCancelExpressCheckout, ClickedChangePage, ClickedChangePaymentMethod, ClickedChangeShippingAddress, ClickedChangeShippingMethod, ClickedCloseValidationAddressModal, ClickedCollectionGroup, ClickedCompleteYourProfile, ClickedContactGallery, ClickedConversationsFilter, ClickedCreateAlert, ClickedDeliveryMethod, ClickedDismissInquiry, ClickedDownloadAppFooter, ClickedDownloadAppHeader, ClickedEditAlert, ClickedEditArtwork, ClickedEstimateShippingCost, ClickedExpandFilterPanel, ClickedExpansionToggle, ClickedExpressCheckout, ClickedFairCard, ClickedFairGroup, ClickedFulfillmentTab, ClickedGalleryGroup, ClickedHeader, ClickedHeroUnitGroup, ClickedImmersiveView, ClickedImportFees, ClickedLoadMore, ClickedMainArtworkGrid, ClickedMakeOffer, ClickedMarketingModal, ClickedMarkSold, ClickedMarkSpam, ClickedNavBar, ClickedNavigationTab, ClickedOfferActions, ClickedOfferOption, ClickedOnArtworkShippingUnitsDropdown, ClickedOnArtworkShippingWeight, ClickedOnBuyNowCheckbox, ClickedOnDuplicateArtwork, ClickedOnFramedMeasurements, ClickedOnFramedMeasurementsDropdown, ClickedOnLearnMore, ClickedOnMakeOfferCheckbox, ClickedOnPagination, ClickedOnPriceDisplayDropdown, ClickedOnReadMore, ClickedOrderPage, ClickedOrderProgression, ClickedOrderSummary, ClickedPartnerCard, ClickedPartnerLink, ClickedPaymentDetails, ClickedPaymentMethod, ClickedPromoSpace, ClickedPublish, ClickedSaveAsTemplate, ClickedSelectShippingOption, ClickedSendPartnerOffer, ClickedShippingAddress, ClickedShowGroup, ClickedShowMore, ClickedSnooze, ClickedStartPartnerOffer, ClickedUpdateArtwork, ClickedUploadArtwork, ClickedValidationAddressOptions, ClickedVerifyIdentity, ClickedViewingRoomCard, ClickedViewWork, ClickedVisitHelpCenter, SubmittedOffer, SubmittedOrder } from "./Click";
6
+ import { CheckedAccountBalance, ClickedAddFilters, ClickedAddMissingArtworksDetails, ClickedAddNewShippingAddress, ClickedAddWorksToFair, ClickedAlertsFilters, ClickedAppDownload, ClickedArticleGroup, ClickedArtistGroup, ClickedArtistSeriesGroup, ClickedArtworkGroup, ClickedAskSpecialist, ClickedAuctionGroup, ClickedAuctionResultItem, ClickedBid, ClickedBuyerProtection, ClickedBuyNow, ClickedCancelExpressCheckout, ClickedChangePage, ClickedChangePaymentMethod, ClickedChangeShippingAddress, ClickedChangeShippingMethod, ClickedCloseValidationAddressModal, ClickedCollectionGroup, ClickedCompleteYourProfile, ClickedContactGallery, ClickedConversationsFilter, ClickedCreateAlert, ClickedCV, ClickedDeliveryMethod, ClickedDismissInquiry, ClickedDownloadAppFooter, ClickedDownloadAppHeader, ClickedEditAlert, ClickedEditArtwork, ClickedEstimateShippingCost, ClickedExpandFilterPanel, ClickedExpansionToggle, ClickedExpressCheckout, ClickedFairCard, ClickedFairGroup, ClickedFulfillmentTab, ClickedGalleryGroup, ClickedGene, ClickedHeader, ClickedHeroUnitGroup, ClickedImmersiveView, ClickedImportFees, ClickedLoadMore, ClickedMainArtworkGrid, ClickedMakeOffer, ClickedMarketingModal, ClickedMarkSold, ClickedMarkSpam, ClickedNavBar, ClickedNavigationTab, ClickedOfferActions, ClickedOfferOption, ClickedOnArtworkShippingUnitsDropdown, ClickedOnArtworkShippingWeight, ClickedOnBuyNowCheckbox, ClickedOnDuplicateArtwork, ClickedOnFramedMeasurements, ClickedOnFramedMeasurementsDropdown, ClickedOnLearnMore, ClickedOnMakeOfferCheckbox, ClickedOnPagination, ClickedOnPriceDisplayDropdown, ClickedOnReadMore, ClickedOrderPage, ClickedOrderProgression, ClickedOrderSummary, ClickedPartnerCard, ClickedPartnerLink, ClickedPaymentDetails, ClickedPaymentMethod, ClickedPromoSpace, ClickedPublish, ClickedSaveAsTemplate, ClickedSelectShippingOption, ClickedSendPartnerOffer, ClickedShippingAddress, ClickedShowGroup, ClickedShowMore, ClickedSnooze, ClickedStartPartnerOffer, ClickedUpdateArtwork, ClickedUploadArtwork, ClickedValidationAddressOptions, ClickedVerifyIdentity, ClickedViewingRoomCard, ClickedViewWork, ClickedVisitHelpCenter, SubmittedOffer, SubmittedOrder } from "./Click";
7
7
  import { EditedUserProfile, TappedEditedProfile } from "./CollectorProfile";
8
8
  import { ArtworkDetailsCompleted, ConsignmentSubmitted, ContactInformationCompleted, SentConsignmentInquiry, SubmitAnotherArtwork, UploadPhotosCompleted, ViewArtworkMyCollection } from "./Consignments";
9
9
  import { FocusedOnConversationMessageInput, SentConversationMessage, TappedInboxConversation, TappedMakeOffer, TappedViewOffer } from "./Conversations";
@@ -28,7 +28,7 @@ import { ClickedOpenInNewTabButton, ClickedShareButton, Share } from "./Share";
28
28
  import { SwipedInfiniteDiscoveryArtwork, SwipedUp } from "./Swipe";
29
29
  import { SaleScreenLoadComplete, Screen, TimeOnPage } from "./System";
30
30
  import { Tapped3Dots, TappedActivityGroup, TappedArticleGroup, TappedArticleShare, TappedArtistGroup, TappedArtistSeriesGroup, TappedArtworkGroup, TappedAskSpecialist, TappedAuctionGroup, TappedAuctionResultGroup, TappedBid, TappedBrowseSimilarArtworks, TappedBuyerProtection, TappedBuyNow, TappedCardGroup, TappedChangePaymentMethod, TappedClearTask, TappedCollectionGroup, TappedCompleteYourProfile, TappedConfirmSeeFewerWorks, TappedConsign, TappedConsignmentInquiry, TappedContactGallery, TappedCreateAlert, TappedExploreGroup, TappedFairCard, TappedFairGroup, TappedGlobalSearchBar, TappedImportFees, TappedInfoBubble, TappedLearnMore, TappedLink, TappedMainArtworkGrid, TappedMenuItemGroup, TappedNavigationPillsGroup, TappedNavigationTab, TappedPartnerCard, TappedPromoSpace, TappedSeeFewerWorks, TappedSell, TappedSellArtwork, TappedShare, TappedShowMore, TappedSkip, TappedTabBar, TappedTaskGroup, TappedVerifyIdentity, TappedViewingRoomCard, TappedViewingRoomGroup, TappedViewWork, TappedVisitHelpCenter } from "./Tap";
31
- import { ToggledCollapsibleOrderSummary, ToggledNotification, ToggledSavedSearch } from "./Toggle";
31
+ import { ToggledArtistBio, ToggledCollapsibleOrderSummary, ToggledNotification, ToggledSavedSearch } from "./Toggle";
32
32
  import { UploadSizeLimitExceeded } from "./UploadSizeLimitExceeded";
33
33
  import { ToggledAccordion } from "./UserExperienceInteractions";
34
34
  import { ViewedVideo } from "./Video";
@@ -37,7 +37,7 @@ import { ViewedVideo } from "./Video";
37
37
  *
38
38
  * Each event describes one ActionType
39
39
  */
40
- 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 | ClickedAskSpecialist | ClickedAuctionGroup | ClickedAuctionResultItem | ClickedBid | ClickedBuyerProtection | ClickedBuyNow | ClickedCancelExpressCheckout | ClickedChangePage | ClickedChangePaymentMethod | ClickedChangeShippingAddress | ClickedChangeShippingMethod | ClickedCloseValidationAddressModal | ClickedCollectionGroup | ClickedCompleteYourProfile | ClickedContactGallery | ClickedConversationsFilter | ClickedCreateAlert | ClickedDeliveryMethod | ClickedDismissInquiry | ClickedDownloadAppFooter | ClickedDownloadAppHeader | ClickedEditArtwork | ClickedEditAlert | ClickedEstimateShippingCost | ClickedExpandFilterPanel | ClickedExpansionToggle | ClickedExpressCheckout | ClickedFairCard | ClickedFairGroup | ClickedFulfillmentTab | ClickedGalleryGroup | ClickedHeader | ClickedHeroUnitGroup | ClickedImmersiveView | ClickedImportFees | ClickedLoadMore | ClickedMainArtworkGrid | ClickedMakeOffer | ClickedMarketingModal | ClickedMarkSold | ClickedMarkSpam | ClickedNavBar | ClickedNavigationTab | ClickedNotificationsBell | ClickedOfferActions | ClickedOfferOption | ClickedOnArtworkShippingUnitsDropdown | ClickedOnArtworkShippingWeight | ClickedOnBuyNowCheckbox | ClickedOnDuplicateArtwork | ClickedOnFramedMeasurements | ClickedOnFramedMeasurementsDropdown | ClickedOnLearnMore | ClickedOnMakeOfferCheckbox | ClickedOnPagination | ClickedOnPriceDisplayDropdown | ClickedOnReadMore | ClickedOrderPage | ClickedOrderProgression | ClickedOrderSummary | ClickedOpenInNewTabButton | ClickedPartnerCard | ClickedPartnerLink | ClickedPaymentDetails | ClickedPaymentMethod | ClickedPromoSpace | ClickedPublish | ClickedRegisterToBid | ClickedSaveAsTemplate | ClickedSelectShippingOption | ClickedSendPartnerOffer | ClickedShareButton | ClickedShippingAddress | ClickedShowGroup | ClickedShowMore | ClickedSnooze | ClickedStartPartnerOffer | ClickedUpdateArtwork | ClickedUploadArtwork | ClickedValidationAddressOptions | ClickedVerifyIdentity | ClickedViewingRoomCard | ClickedViewWork | ClickedVisitHelpCenter | CommercialFilterParamsChanged | CommercialFilterSelectedAll | CompletedOfflineSync | CompletedOnboarding | ConfirmBid | ConfirmRegistrationPageview | ConsignmentArtistFailed | ConsignmentSubmitted | ContactInformationCompleted | CreatedAccount | CreateAlertReminderMessageViewed | CreatedAlbum | CreatedArtworkList | DarkModeOptionUpdated | DeleteCollectedArtwork | DeletedArtworkList | DeletedSavedSearch | EditCollectedArtwork | EditedAlert | EditedArtworkList | EditedAutocompletedAddress | EditedSavedSearch | EditedUserProfile | EditProfileModalViewed | EnterLiveAuction | ErrorMessageViewed | ExperimentViewed | ExpressCheckoutViewed | FocusedOnConversationMessageInput | FocusedOnPriceDatabaseSearchInput | FocusedOnSearchInput | FollowEvents | Impression | ImmersiveViewArtworkDisplayed | ImmersiveViewOptionViewed | ItemViewed | MaxBidSelected | MyCollectionOnboardingCompleted | NavigationDropdownViewed | OnboardingUserInputData | OrderDetailsViewed | OrderProgressionViewed | PriceDatabaseFilterParamsChanged | PromptForReview | RailViewed | RegistrationPageView | RegistrationSubmitted | ResetYourPassword | SaleScreenLoadComplete | SaveCollectedArtwork | SavedAddressViewed | SavedCookieConsentPreferences | SavedPaymentMethodViewed | SavedPriceRange | Screen | SearchedPriceDatabase | SearchedWithNoResults | SearchedWithResults | SelectedItemFromAddressAutoCompletion | SelectedItemFromPriceDatabaseSearch | SelectedItemFromSearch | SelectedItemFromSearchPage | SelectedFromDrawer | SelectedRecentPriceRange | SelectedSearchSuggestionQuickNavigationItem | SendOffersBannerViewed | SendOffersErrorMessage | SendOffersModalViewed | SentConsignmentInquiry | SentContent | SentConversationMessage | SentRequestPriceEstimate | Share | ShippingEstimateViewed | StartedOnboarding | SubmitAnotherArtwork | SubmittedOffer | SubmittedOrder | SuccessfullyLoggedIn | SwipedInfiniteDiscoveryArtwork | SwipedUp | Tapped3Dots | TappedActivityGroup | TappedAlertsGroup | TappedArticleGroup | TappedArticleShare | TappedArtistGroup | TappedArtistSeriesGroup | TappedArtworkGroup | TappedArtworkList | TappedAskSpecialist | TappedAuctionGroup | TappedAuctionResultGroup | TappedBid | TappedBrowseSimilarArtworks | TappedBuyerProtection | TappedBuyNow | TappedCardGroup | TappedChangePaymentMethod | TappedClearTask | TappedCollectedArtwork | TappedCollectedArtworkImages | TappedCollectionGroup | TappedCompleteYourProfile | TappedConfirmSeeFewerWorks | TappedConsign | TappedConsignmentInquiry | TappedContactGallery | TappedCreateAlert | TappedEditedProfile | TappedExploreGroup | TappedExploreMyCollection | TappedFairCard | TappedFairGroup | TappedFollowsGroup | TappedGlobalSearchBar | TappedImportFees | TappedInboxConversation | TappedInfoBubble | TappedLearnMore | TappedLink | TappedMainArtworkGrid | TappedMakeOffer | TappedMenuItemGroup | TappedMyCollection | TappedMyCollectionAddArtworkArtist | TappedMyCollectionInsightsMedianAuctionPriceChartCareerHighlight | TappedMyCollectionInsightsMedianAuctionPriceChartCategory | TappedMyCollectionInsightsMedianAuctionPriceChartTimeframe | TappedMyCollectionInsightsMedianAuctionRailItem | TappedNavigationPillsGroup | TappedNavigationTab | TappedNewArtworkList | TappedNotificationsBell | TappedOfferSettings | TappedPartnerCard | TappedProductCapabilitiesGroup | TappedPromoSpace | TappedRequestPriceEstimate | TappedSeeFewerWorks | TappedSell | TappedSellArtwork | TappedShare | TappedShowMore | TappedSkip | TappedTabBar | TappedTaskGroup | TappedVerifyIdentity | TappedViewingRoomCard | TappedViewingRoomGroup | TappedViewOffer | TappedViewWork | TappedVisitHelpCenter | TimeOnPage | ToggledAccordion | ToggledCollapsibleOrderSummary | ToggledNotification | ToggledPresentationModeSetting | ToggledSavedSearch | TooltipViewed | ProgressiveOnboardingTooltipViewed | UploadPhotosCompleted | UploadSizeLimitExceeded | ValidationAddressViewed | ViewArtworkMyCollection | ViewedArtworkList | ViewedSharedArtworkList | ViewedVideo | ViewedToast | VisitMyCollection | VisitMyCollectionOnboardingSlide;
40
+ 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 | ClickedAskSpecialist | ClickedAuctionGroup | ClickedAuctionResultItem | ClickedBid | ClickedBuyerProtection | ClickedBuyNow | ClickedCancelExpressCheckout | ClickedChangePage | ClickedChangePaymentMethod | ClickedChangeShippingAddress | ClickedChangeShippingMethod | ClickedCloseValidationAddressModal | ClickedCollectionGroup | ClickedCompleteYourProfile | ClickedContactGallery | ClickedConversationsFilter | ClickedCreateAlert | ClickedCV | ClickedDeliveryMethod | ClickedDismissInquiry | ClickedDownloadAppFooter | ClickedDownloadAppHeader | ClickedEditArtwork | ClickedEditAlert | ClickedEstimateShippingCost | ClickedExpandFilterPanel | ClickedExpansionToggle | ClickedExpressCheckout | ClickedFairCard | ClickedFairGroup | ClickedFulfillmentTab | ClickedGalleryGroup | ClickedGene | ClickedHeader | ClickedHeroUnitGroup | ClickedImmersiveView | ClickedImportFees | ClickedLoadMore | ClickedMainArtworkGrid | ClickedMakeOffer | ClickedMarketingModal | ClickedMarkSold | ClickedMarkSpam | ClickedNavBar | ClickedNavigationTab | ClickedNotificationsBell | ClickedOfferActions | ClickedOfferOption | ClickedOnArtworkShippingUnitsDropdown | ClickedOnArtworkShippingWeight | ClickedOnBuyNowCheckbox | ClickedOnDuplicateArtwork | ClickedOnFramedMeasurements | ClickedOnFramedMeasurementsDropdown | ClickedOnLearnMore | ClickedOnMakeOfferCheckbox | ClickedOnPagination | ClickedOnPriceDisplayDropdown | ClickedOnReadMore | ClickedOrderPage | ClickedOrderProgression | ClickedOrderSummary | ClickedOpenInNewTabButton | ClickedPartnerCard | ClickedPartnerLink | ClickedPaymentDetails | ClickedPaymentMethod | ClickedPromoSpace | ClickedPublish | ClickedRegisterToBid | ClickedSaveAsTemplate | ClickedSelectShippingOption | ClickedSendPartnerOffer | ClickedShareButton | ClickedShippingAddress | ClickedShowGroup | ClickedShowMore | ClickedSnooze | ClickedStartPartnerOffer | ClickedUpdateArtwork | ClickedUploadArtwork | ClickedValidationAddressOptions | ClickedVerifyIdentity | ClickedViewingRoomCard | ClickedViewWork | ClickedVisitHelpCenter | CommercialFilterParamsChanged | CommercialFilterSelectedAll | CompletedOfflineSync | CompletedOnboarding | ConfirmBid | ConfirmRegistrationPageview | ConsignmentArtistFailed | ConsignmentSubmitted | ContactInformationCompleted | CreatedAccount | CreateAlertReminderMessageViewed | CreatedAlbum | CreatedArtworkList | DarkModeOptionUpdated | DeleteCollectedArtwork | DeletedArtworkList | DeletedSavedSearch | EditCollectedArtwork | EditedAlert | EditedArtworkList | EditedAutocompletedAddress | EditedSavedSearch | EditedUserProfile | EditProfileModalViewed | EnterLiveAuction | ErrorMessageViewed | ExperimentViewed | ExpressCheckoutViewed | FocusedOnConversationMessageInput | FocusedOnPriceDatabaseSearchInput | FocusedOnSearchInput | FollowEvents | Impression | ImmersiveViewArtworkDisplayed | ImmersiveViewOptionViewed | ItemViewed | MaxBidSelected | MyCollectionOnboardingCompleted | NavigationDropdownViewed | OnboardingUserInputData | OrderDetailsViewed | OrderProgressionViewed | PriceDatabaseFilterParamsChanged | PromptForReview | RailViewed | RegistrationPageView | RegistrationSubmitted | ResetYourPassword | SaleScreenLoadComplete | SaveCollectedArtwork | SavedAddressViewed | SavedCookieConsentPreferences | SavedPaymentMethodViewed | SavedPriceRange | Screen | SearchedPriceDatabase | SearchedWithNoResults | SearchedWithResults | SelectedItemFromAddressAutoCompletion | SelectedItemFromPriceDatabaseSearch | SelectedItemFromSearch | SelectedItemFromSearchPage | SelectedFromDrawer | SelectedRecentPriceRange | SelectedSearchSuggestionQuickNavigationItem | SendOffersBannerViewed | SendOffersErrorMessage | SendOffersModalViewed | SentConsignmentInquiry | SentContent | SentConversationMessage | SentRequestPriceEstimate | Share | ShippingEstimateViewed | StartedOnboarding | SubmitAnotherArtwork | SubmittedOffer | SubmittedOrder | SuccessfullyLoggedIn | SwipedInfiniteDiscoveryArtwork | SwipedUp | Tapped3Dots | TappedActivityGroup | TappedAlertsGroup | TappedArticleGroup | TappedArticleShare | TappedArtistGroup | TappedArtistSeriesGroup | TappedArtworkGroup | TappedArtworkList | TappedAskSpecialist | TappedAuctionGroup | TappedAuctionResultGroup | TappedBid | TappedBrowseSimilarArtworks | TappedBuyerProtection | TappedBuyNow | TappedCardGroup | TappedChangePaymentMethod | TappedClearTask | TappedCollectedArtwork | TappedCollectedArtworkImages | TappedCollectionGroup | TappedCompleteYourProfile | TappedConfirmSeeFewerWorks | TappedConsign | TappedConsignmentInquiry | TappedContactGallery | TappedCreateAlert | TappedEditedProfile | TappedExploreGroup | TappedExploreMyCollection | TappedFairCard | TappedFairGroup | TappedFollowsGroup | TappedGlobalSearchBar | TappedImportFees | TappedInboxConversation | TappedInfoBubble | TappedLearnMore | TappedLink | TappedMainArtworkGrid | TappedMakeOffer | TappedMenuItemGroup | TappedMyCollection | TappedMyCollectionAddArtworkArtist | TappedMyCollectionInsightsMedianAuctionPriceChartCareerHighlight | TappedMyCollectionInsightsMedianAuctionPriceChartCategory | TappedMyCollectionInsightsMedianAuctionPriceChartTimeframe | TappedMyCollectionInsightsMedianAuctionRailItem | TappedNavigationPillsGroup | TappedNavigationTab | TappedNewArtworkList | TappedNotificationsBell | TappedOfferSettings | TappedPartnerCard | TappedProductCapabilitiesGroup | TappedPromoSpace | TappedRequestPriceEstimate | TappedSeeFewerWorks | TappedSell | TappedSellArtwork | TappedShare | TappedShowMore | TappedSkip | TappedTabBar | TappedTaskGroup | TappedVerifyIdentity | TappedViewingRoomCard | TappedViewingRoomGroup | TappedViewOffer | TappedViewWork | TappedVisitHelpCenter | TimeOnPage | ToggledAccordion | ToggledArtistBio | ToggledCollapsibleOrderSummary | ToggledNotification | ToggledPresentationModeSetting | ToggledSavedSearch | TooltipViewed | ProgressiveOnboardingTooltipViewed | UploadPhotosCompleted | UploadSizeLimitExceeded | ValidationAddressViewed | ViewArtworkMyCollection | ViewedArtworkList | ViewedSharedArtworkList | ViewedVideo | ViewedToast | VisitMyCollection | VisitMyCollectionOnboardingSlide;
41
41
  /**
42
42
  * The top-level actions an Event describes.
43
43
  *
@@ -521,9 +521,9 @@ export declare enum ActionType {
521
521
  */
522
522
  clickedViewFullConversationHistory = "clickedViewFullConversationHistory",
523
523
  /**
524
- * Corresponds to {@link ClickedHighlightAchievement}
524
+ * Corresponds to {@link ClickedCV}
525
525
  */
526
- clickedHighlightAchievement = "clickedHighlightAchievement",
526
+ clickedCV = "clickedCV",
527
527
  /**
528
528
  * Corresponds to {@link CommercialFilterParamsChanged}
529
529
  */
@@ -1253,6 +1253,10 @@ export declare enum ActionType {
1253
1253
  * Corresponds to {@link TimeOnPage}
1254
1254
  */
1255
1255
  timeOnPage = "timeOnPage",
1256
+ /**
1257
+ * Corresponds to {@link ToggledArtistBio}
1258
+ */
1259
+ toggledArtistBio = "toggledArtistBio",
1256
1260
  /**
1257
1261
  * Corresponds to {@link ToggledAccordion}
1258
1262
  */
@@ -139,7 +139,7 @@ exports.ActionType = ActionType;
139
139
  ActionType["clickedVisitHelpCenter"] = "clickedVisitHelpCenter";
140
140
  ActionType["clickedConversationHistoryItem"] = "clickedConversationHistoryItem";
141
141
  ActionType["clickedViewFullConversationHistory"] = "clickedViewFullConversationHistory";
142
- ActionType["clickedHighlightAchievement"] = "clickedHighlightAchievement";
142
+ ActionType["clickedCV"] = "clickedCV";
143
143
  ActionType["commercialFilterParamsChanged"] = "commercialFilterParamsChanged";
144
144
  ActionType["commercialFilterSelectedAll"] = "commercialFilterSelectedAll";
145
145
  ActionType["selectedFromDrawer"] = "selectedFromDrawer";
@@ -322,6 +322,7 @@ exports.ActionType = ActionType;
322
322
  ActionType["tappedNewArtworkList"] = "tappedNewArtworkList";
323
323
  ActionType["tappedNewsSection"] = "tappedNewsSection";
324
324
  ActionType["timeOnPage"] = "timeOnPage";
325
+ ActionType["toggledArtistBio"] = "toggledArtistBio";
325
326
  ActionType["toggledAccordion"] = "toggledAccordion";
326
327
  ActionType["toggledCollapsibleOrderSummary"] = "toggledCollapsibleOrderSummary";
327
328
  ActionType["toggledNotification"] = "toggledNotification";
@@ -27,6 +27,7 @@ export declare enum ContextModule {
27
27
  articleRail = "articleRail",
28
28
  articles = "articles",
29
29
  articleTab = "articleTab",
30
+ artistAchievements = "artistAchievements",
30
31
  artistArtworksCreateAlertReminderMessage = "artistArtworksCreateAlertReminderMessage",
31
32
  artistArtworksFilterHeader = "artistArtworksFilterHeader",
32
33
  artistArtworksGridEnd = "artistArtworksGridEnd",
@@ -221,6 +222,7 @@ export declare enum ContextModule {
221
222
  recommendedWorksForYouRail = "recommendedWorksForYouRail",
222
223
  relatedArticles = "relatedArticles",
223
224
  relatedArtistsRail = "relatedArtistsRail",
225
+ relatedCategories = "relatedCategories",
224
226
  relatedCollectionsRail = "relatedCollectionsRail",
225
227
  relatedWorksRail = "relatedWorksRail",
226
228
  saves = "saves",
@@ -261,4 +263,4 @@ export declare enum ContextModule {
261
263
  /**
262
264
  * Limited ContextModules available for web authentication events
263
265
  */
264
- export type AuthContextModule = ContextModule.aboutTheWork | ContextModule.accountSettings | ContextModule.accountTransactions | ContextModule.activity | ContextModule.articleTab | ContextModule.artistHeader | ContextModule.artistRecentlySold | ContextModule.artistSeriesRail | ContextModule.artistSeriesTab | ContextModule.artistsTab | ContextModule.artistsToFollowRail | ContextModule.artworkActions | ContextModule.artworkCarousel | ContextModule.artworkClosedLotHeader | ContextModule.artworkGrid | ContextModule.artworkImage | ContextModule.artworkSidebar | ContextModule.artworksTab | ContextModule.associatedViewingRoom | ContextModule.auctionHome | ContextModule.auctionLots | ContextModule.auctionLotsEndingSoonRail | ContextModule.auctionRail | ContextModule.auctionResult | ContextModule.auctionResultComparableWorks | ContextModule.auctionResults | ContextModule.auctionSidebar | ContextModule.auctionsInfo | ContextModule.auctionTab | ContextModule.bannerPopUp | ContextModule.boothsTab | ContextModule.bottomTabs | ContextModule.browseFair | ContextModule.categoryRail | ContextModule.collectionDescription | ContextModule.collectorProfile | ContextModule.consignSubmissionFlow | ContextModule.createAlert | ContextModule.currentShowsRail | ContextModule.fairInfo | ContextModule.fairOrganizerHeader | ContextModule.fairRail | ContextModule.fairsHeader | ContextModule.fairTab | ContextModule.featuredArtists | ContextModule.featuredArtistsRail | ContextModule.featuredGalleriesRail | ContextModule.footer | ContextModule.galleriesNearYouRail | ContextModule.galleryTab | ContextModule.geneHeader | ContextModule.header | ContextModule.heroUnitsRail | ContextModule.inquiry | ContextModule.intextTooltip | ContextModule.liveAuctionRoom | ContextModule.liveAuctionsRail | ContextModule.lotsForYouRail | ContextModule.mainCarousel | ContextModule.marketingCollectionTab | ContextModule.minimalCTABanner | ContextModule.myCollectionAddArtworkAddArtist | ContextModule.myCollectionHome | ContextModule.navBar | ContextModule.newWorksByGalleriesYouFollowRail | ContextModule.newWorksForYouRail | ContextModule.notification | ContextModule.onboardingActivity | ContextModule.onboardingCollectorLevel | ContextModule.onboardingFlow | ContextModule.onboardingInterests | ContextModule.otherWorksByArtistRail | ContextModule.otherWorksFromPartnerRail | ContextModule.otherWorksFromShowRail | ContextModule.otherWorksInAuctionRail | ContextModule.partnerHeader | ContextModule.pastFairs | ContextModule.popularArtistsRail | ContextModule.popUpModal | ContextModule.presentingFair | ContextModule.presentingPartner | ContextModule.priceEstimate | ContextModule.quickLinks | ContextModule.recentlyViewedRail | ContextModule.recentPriceRanges | ContextModule.recommendedArtistsRail | ContextModule.relatedArtistsRail | ContextModule.relatedWorksRail | ContextModule.saveWorksCTA | ContextModule.sell | ContextModule.sellFooter | ContextModule.sellHeader | ContextModule.sellHowItWorks | ContextModule.sellStickyFooter | ContextModule.showHeader | ContextModule.showInfo | ContextModule.showTab | ContextModule.standoutLots | ContextModule.tagHeader | ContextModule.topAuctionLotsRail | ContextModule.topTab | ContextModule.topWorksRail | ContextModule.trendingArtistsRail | ContextModule.trendingLots | ContextModule.viewingRoom | ContextModule.worksByArtistsYouFollowRail | ContextModule.worksByPopularArtistsRail | ContextModule.worksForSaleRail;
266
+ export type AuthContextModule = ContextModule.aboutTheWork | ContextModule.accountSettings | ContextModule.accountTransactions | ContextModule.activity | ContextModule.articleTab | ContextModule.artistAchievements | ContextModule.artistHeader | ContextModule.artistRecentlySold | ContextModule.artistSeriesRail | ContextModule.artistSeriesTab | ContextModule.artistsTab | ContextModule.artistsToFollowRail | ContextModule.artworkActions | ContextModule.artworkCarousel | ContextModule.artworkClosedLotHeader | ContextModule.artworkGrid | ContextModule.artworkImage | ContextModule.artworkSidebar | ContextModule.artworksTab | ContextModule.associatedViewingRoom | ContextModule.auctionHome | ContextModule.auctionLots | ContextModule.auctionLotsEndingSoonRail | ContextModule.auctionRail | ContextModule.auctionResult | ContextModule.auctionResultComparableWorks | ContextModule.auctionResults | ContextModule.auctionSidebar | ContextModule.auctionsInfo | ContextModule.auctionTab | ContextModule.bannerPopUp | ContextModule.boothsTab | ContextModule.bottomTabs | ContextModule.browseFair | ContextModule.categoryRail | ContextModule.collectionDescription | ContextModule.collectorProfile | ContextModule.consignSubmissionFlow | ContextModule.createAlert | ContextModule.currentShowsRail | ContextModule.fairInfo | ContextModule.fairOrganizerHeader | ContextModule.fairRail | ContextModule.fairsHeader | ContextModule.fairTab | ContextModule.featuredArtists | ContextModule.featuredArtistsRail | ContextModule.featuredGalleriesRail | ContextModule.footer | ContextModule.galleriesNearYouRail | ContextModule.galleryTab | ContextModule.geneHeader | ContextModule.header | ContextModule.heroUnitsRail | ContextModule.inquiry | ContextModule.intextTooltip | ContextModule.liveAuctionRoom | ContextModule.liveAuctionsRail | ContextModule.lotsForYouRail | ContextModule.mainCarousel | ContextModule.marketingCollectionTab | ContextModule.minimalCTABanner | ContextModule.myCollectionAddArtworkAddArtist | ContextModule.myCollectionHome | ContextModule.navBar | ContextModule.newWorksByGalleriesYouFollowRail | ContextModule.newWorksForYouRail | ContextModule.notification | ContextModule.onboardingActivity | ContextModule.onboardingCollectorLevel | ContextModule.onboardingFlow | ContextModule.onboardingInterests | ContextModule.otherWorksByArtistRail | ContextModule.otherWorksFromPartnerRail | ContextModule.otherWorksFromShowRail | ContextModule.otherWorksInAuctionRail | ContextModule.partnerHeader | ContextModule.pastFairs | ContextModule.popularArtistsRail | ContextModule.popUpModal | ContextModule.presentingFair | ContextModule.presentingPartner | ContextModule.priceEstimate | ContextModule.quickLinks | ContextModule.recentlyViewedRail | ContextModule.recentPriceRanges | ContextModule.recommendedArtistsRail | ContextModule.relatedArtistsRail | ContextModule.relatedCategories | ContextModule.relatedWorksRail | ContextModule.saveWorksCTA | ContextModule.sell | ContextModule.sellFooter | ContextModule.sellHeader | ContextModule.sellHowItWorks | ContextModule.sellStickyFooter | ContextModule.showHeader | ContextModule.showInfo | ContextModule.showTab | ContextModule.standoutLots | ContextModule.tagHeader | ContextModule.topAuctionLotsRail | ContextModule.topTab | ContextModule.topWorksRail | ContextModule.trendingArtistsRail | ContextModule.trendingLots | ContextModule.viewingRoom | ContextModule.worksByArtistsYouFollowRail | ContextModule.worksByPopularArtistsRail | ContextModule.worksForSaleRail;
@@ -41,6 +41,7 @@ exports.ContextModule = ContextModule;
41
41
  ContextModule["articleRail"] = "articleRail";
42
42
  ContextModule["articles"] = "articles";
43
43
  ContextModule["articleTab"] = "articleTab";
44
+ ContextModule["artistAchievements"] = "artistAchievements";
44
45
  ContextModule["artistArtworksCreateAlertReminderMessage"] = "artistArtworksCreateAlertReminderMessage";
45
46
  ContextModule["artistArtworksFilterHeader"] = "artistArtworksFilterHeader";
46
47
  ContextModule["artistArtworksGridEnd"] = "artistArtworksGridEnd";
@@ -235,6 +236,7 @@ exports.ContextModule = ContextModule;
235
236
  ContextModule["recommendedWorksForYouRail"] = "recommendedWorksForYouRail";
236
237
  ContextModule["relatedArticles"] = "relatedArticles";
237
238
  ContextModule["relatedArtistsRail"] = "relatedArtistsRail";
239
+ ContextModule["relatedCategories"] = "relatedCategories";
238
240
  ContextModule["relatedCollectionsRail"] = "relatedCollectionsRail";
239
241
  ContextModule["relatedWorksRail"] = "relatedWorksRail";
240
242
  ContextModule["saves"] = "saves";
@@ -178,4 +178,4 @@ export type ScreenOwnerType = OwnerType.about | OwnerType.account | OwnerType.ac
178
178
  /**
179
179
  * Owner types available in web/mobile web
180
180
  */
181
- export type PageOwnerType = OwnerType.about | OwnerType.activities | OwnerType.activity | OwnerType.alertConfirmation | OwnerType.article | OwnerType.articles | OwnerType.artist | OwnerType.artistAuctionResults | OwnerType.artists | OwnerType.artistSeries | OwnerType.artwork | OwnerType.artworkRecommendations | OwnerType.auctions | OwnerType.basedOnYourRecentSaves | OwnerType.collect | OwnerType.collection | OwnerType.collections | OwnerType.consign | OwnerType.demand | OwnerType.editProfile | OwnerType.fair | OwnerType.fairs | OwnerType.galleries | OwnerType.gene | OwnerType.home | OwnerType.marketNews | OwnerType.myCollectionArtworkInsights | OwnerType.myCollectionInsights | OwnerType.onboarding | OwnerType.ordersAccept | OwnerType.ordersCheckout | OwnerType.ordersCounter | OwnerType.ordersDetail | OwnerType.ordersNewPayment | OwnerType.ordersOffer | OwnerType.ordersPayment | OwnerType.ordersRespond | OwnerType.ordersReview | OwnerType.ordersShipping | OwnerType.ordersSubmitted | OwnerType.partner | OwnerType.partnerShowsArtworks | OwnerType.priceDatabase | OwnerType.profile | OwnerType.recommendedArtists | OwnerType.sale | OwnerType.savedSearch | OwnerType.savedSearches | OwnerType.saves | OwnerType.search | OwnerType.sendOffers | OwnerType.show | OwnerType.shows | OwnerType.submitArtworkStepStart | OwnerType.submitArtworkStepSelectArtist | OwnerType.submitArtworkStepAddTitle | OwnerType.submitArtworkStepAddPhotos | OwnerType.submitArtworkStepAddDetails | OwnerType.submitArtworkStepPurchaseHistory | OwnerType.submitArtworkStepAddDimensions | OwnerType.submitArtworkStepAddPhoneNumber | OwnerType.submitArtworkStepCompleteYourSubmission | OwnerType.submitArtworkStepArtistRejected | OwnerType.submitArtworkStepSelectArtworkMyCollectionArtwork | OwnerType.submitArtworkStepShippingLocation | OwnerType.submitArtworkStepFrameInformation | OwnerType.submitArtworkStepAddtionalDocuments | OwnerType.submitArtworkStepCondition | OwnerType.submitArtworkStepCompleteYourSubmissionPostApproval | OwnerType.tag | OwnerType.user | OwnerType.viewingRoom | OwnerType.viewingRooms | OwnerType.worksForYou | OwnerType.newWorksFromGalleriesYouFollow;
181
+ export type PageOwnerType = OwnerType.about | OwnerType.activities | OwnerType.activity | OwnerType.alertConfirmation | OwnerType.allArtistSeries | OwnerType.article | OwnerType.articles | OwnerType.artist | OwnerType.artistAuctionResults | OwnerType.artists | OwnerType.artistSeries | OwnerType.artwork | OwnerType.artworkRecommendations | OwnerType.auctions | OwnerType.basedOnYourRecentSaves | OwnerType.collect | OwnerType.collection | OwnerType.collections | OwnerType.consign | OwnerType.demand | OwnerType.editProfile | OwnerType.fair | OwnerType.fairs | OwnerType.galleries | OwnerType.gene | OwnerType.home | OwnerType.marketNews | OwnerType.myCollectionArtworkInsights | OwnerType.myCollectionInsights | OwnerType.onboarding | OwnerType.ordersAccept | OwnerType.ordersCheckout | OwnerType.ordersCounter | OwnerType.ordersDetail | OwnerType.ordersNewPayment | OwnerType.ordersOffer | OwnerType.ordersPayment | OwnerType.ordersRespond | OwnerType.ordersReview | OwnerType.ordersShipping | OwnerType.ordersSubmitted | OwnerType.partner | OwnerType.partnerShowsArtworks | OwnerType.priceDatabase | OwnerType.profile | OwnerType.recommendedArtists | OwnerType.sale | OwnerType.savedSearch | OwnerType.savedSearches | OwnerType.saves | OwnerType.search | OwnerType.sendOffers | OwnerType.show | OwnerType.shows | OwnerType.submitArtworkStepStart | OwnerType.submitArtworkStepSelectArtist | OwnerType.submitArtworkStepAddTitle | OwnerType.submitArtworkStepAddPhotos | OwnerType.submitArtworkStepAddDetails | OwnerType.submitArtworkStepPurchaseHistory | OwnerType.submitArtworkStepAddDimensions | OwnerType.submitArtworkStepAddPhoneNumber | OwnerType.submitArtworkStepCompleteYourSubmission | OwnerType.submitArtworkStepArtistRejected | OwnerType.submitArtworkStepSelectArtworkMyCollectionArtwork | OwnerType.submitArtworkStepShippingLocation | OwnerType.submitArtworkStepFrameInformation | OwnerType.submitArtworkStepAddtionalDocuments | OwnerType.submitArtworkStepCondition | OwnerType.submitArtworkStepCompleteYourSubmissionPostApproval | OwnerType.tag | OwnerType.user | OwnerType.viewingRoom | OwnerType.viewingRooms | OwnerType.worksForYou | OwnerType.newWorksFromGalleriesYouFollow;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@artsy/cohesion",
3
- "version": "4.333.0",
3
+ "version": "4.335.0",
4
4
  "description": "Analytics schema",
5
5
  "main": "dist/index.js",
6
6
  "publishConfig": {