@artsy/cohesion 4.169.0 → 4.171.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.171.0 (Wed Apr 17 2024)
|
|
2
|
+
|
|
3
|
+
#### 🚀 Enhancement
|
|
4
|
+
|
|
5
|
+
- chore: AMBER-591 - add private artwork tracking methods [#489](https://github.com/artsy/cohesion/pull/489) ([@Mitch-Henson](https://github.com/Mitch-Henson))
|
|
6
|
+
|
|
7
|
+
#### Authors: 1
|
|
8
|
+
|
|
9
|
+
- Mitchell Henson ([@Mitch-Henson](https://github.com/Mitch-Henson))
|
|
10
|
+
|
|
11
|
+
---
|
|
12
|
+
|
|
13
|
+
# v4.170.0 (Fri Apr 12 2024)
|
|
14
|
+
|
|
15
|
+
#### 🚀 Enhancement
|
|
16
|
+
|
|
17
|
+
- feat(ONYX-803): add lotsForYou OwnerType [#488](https://github.com/artsy/cohesion/pull/488) ([@tam-kis](https://github.com/tam-kis))
|
|
18
|
+
|
|
19
|
+
#### Authors: 1
|
|
20
|
+
|
|
21
|
+
- Tam ([@tam-kis](https://github.com/tam-kis))
|
|
22
|
+
|
|
23
|
+
---
|
|
24
|
+
|
|
1
25
|
# v4.169.0 (Wed Apr 03 2024)
|
|
2
26
|
|
|
3
27
|
#### 🚀 Enhancement
|
|
@@ -1976,3 +1976,91 @@ export interface ClickedUpdateArtwork {
|
|
|
1976
1976
|
partner_id: string;
|
|
1977
1977
|
artwork_id: string;
|
|
1978
1978
|
}
|
|
1979
|
+
/**
|
|
1980
|
+
* A user clicks on the read more link on the private artwork page.
|
|
1981
|
+
*
|
|
1982
|
+
* This schema describes events sent to Segment from [[ClickedOnReadMore]]
|
|
1983
|
+
*
|
|
1984
|
+
* @example
|
|
1985
|
+
* ```
|
|
1986
|
+
* {
|
|
1987
|
+
* action: "clickedOnReadMore",
|
|
1988
|
+
* context_module: "About the work" | "About the artist" | "Sidebar",
|
|
1989
|
+
* subject: "Read more"
|
|
1990
|
+
* type: "Link"
|
|
1991
|
+
* }
|
|
1992
|
+
* ```
|
|
1993
|
+
*/
|
|
1994
|
+
export interface ClickedOnReadMore {
|
|
1995
|
+
action: ActionType.clickedOnReadMore;
|
|
1996
|
+
context_module: string;
|
|
1997
|
+
subject: string;
|
|
1998
|
+
type: string;
|
|
1999
|
+
}
|
|
2000
|
+
/**
|
|
2001
|
+
* A user clicks on the learn more link on the private artwork page.
|
|
2002
|
+
*
|
|
2003
|
+
* This schema describes events sent to Segment from [[ClickedOnLearnMore]]
|
|
2004
|
+
*
|
|
2005
|
+
* @example
|
|
2006
|
+
* ```
|
|
2007
|
+
* {
|
|
2008
|
+
* action: "clickedOnLearnMore",
|
|
2009
|
+
* context_module: "Sidebar",
|
|
2010
|
+
* subject: "Learn more"
|
|
2011
|
+
* type: "Link"
|
|
2012
|
+
* flow: "Shipping" | "Artsy Guarantee"
|
|
2013
|
+
* }
|
|
2014
|
+
* ```
|
|
2015
|
+
*/
|
|
2016
|
+
export interface ClickedOnLearnMore {
|
|
2017
|
+
action: ActionType.clickedOnLearnMore;
|
|
2018
|
+
context_module: string;
|
|
2019
|
+
subject: string;
|
|
2020
|
+
type: string;
|
|
2021
|
+
flow: string;
|
|
2022
|
+
}
|
|
2023
|
+
/**
|
|
2024
|
+
* A user clicks on the Gallery name on the private artwork page.
|
|
2025
|
+
*
|
|
2026
|
+
* This schema describes events sent to Segment from [[ClickedOnGalleryName]]
|
|
2027
|
+
*
|
|
2028
|
+
* @example
|
|
2029
|
+
* ```
|
|
2030
|
+
* {
|
|
2031
|
+
* action: "clickedOnGalleryName",
|
|
2032
|
+
* context_module: "Sidebar",
|
|
2033
|
+
* subject: "Gallery Name"
|
|
2034
|
+
* type: "Link"
|
|
2035
|
+
* flow: "Exclusive Access"
|
|
2036
|
+
* }
|
|
2037
|
+
* ```
|
|
2038
|
+
*/
|
|
2039
|
+
export interface ClickedOnGalleryName {
|
|
2040
|
+
action: ActionType.clickedOnGalleryName;
|
|
2041
|
+
context_module: string;
|
|
2042
|
+
subject: string;
|
|
2043
|
+
type: string;
|
|
2044
|
+
flow: string;
|
|
2045
|
+
}
|
|
2046
|
+
/**
|
|
2047
|
+
* A user clicks on the private listing in the artwork header on the private artwork page.
|
|
2048
|
+
*
|
|
2049
|
+
* This schema describes events sent to Segment from [[ClickedOnPrivateListing]]
|
|
2050
|
+
*
|
|
2051
|
+
* @example
|
|
2052
|
+
* ```
|
|
2053
|
+
* {
|
|
2054
|
+
* action: "ClickedOnPrivateListing",
|
|
2055
|
+
* context_module: "artworkHeader",
|
|
2056
|
+
* subject: "Private listing"
|
|
2057
|
+
* type: "Link"
|
|
2058
|
+
* }
|
|
2059
|
+
* ```
|
|
2060
|
+
*/
|
|
2061
|
+
export interface ClickedOnPrivateListing {
|
|
2062
|
+
action: ActionType.clickedOnPrivateListing;
|
|
2063
|
+
context_module: string;
|
|
2064
|
+
subject: string;
|
|
2065
|
+
type: string;
|
|
2066
|
+
}
|
|
@@ -3,7 +3,7 @@ import { AddToCalendar } from "./AddToCalendar";
|
|
|
3
3
|
import { AddedArtworkToArtworkList, CreatedArtworkList, DeletedArtworkList, EditedArtworkList, ViewedArtworkList } 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, ClickedAuctionGroup, ClickedAuctionResultItem, ClickedBuyerProtection, ClickedChangePage, ClickedChangePaymentMethod, ClickedChangeShippingAddress, ClickedChangeShippingMethod, ClickedCloseValidationAddressModal, ClickedCollectionGroup, ClickedConversationsFilter, ClickedCreateAlert, ClickedDeliveryMethod, ClickedDismissInquiry, ClickedEditArtwork, ClickedExpandFilterPanel, ClickedExpansionToggle, ClickedFairCard, ClickedFairGroup, ClickedGalleryGroup, ClickedLoadMore, ClickedMainArtworkGrid, ClickedMarketingModal, ClickedMarkSold, ClickedMarkSpam, ClickedNavBar, ClickedNavigationTab, ClickedOfferActions, ClickedOfferOption, ClickedOnArtworkShippingUnitsDropdown, ClickedOnArtworkShippingWeight, ClickedOnBuyNowCheckbox, ClickedOnDuplicateArtwork, ClickedOnFramedMeasurements, ClickedOnFramedMeasurementsDropdown, ClickedOnMakeOfferCheckbox, ClickedOnPagination, ClickedOnPriceDisplayDropdown, ClickedOnSubmitOrder, ClickedOrderPage, ClickedOrderSummary, ClickedPartnerCard, ClickedPartnerLink, ClickedPaymentDetails, ClickedPaymentMethod, ClickedPromoSpace, ClickedPublish, ClickedSelectShippingOption, ClickedSendPartnerOffer, ClickedShippingAddress, ClickedShowGroup, ClickedShowMore, ClickedSnooze, ClickedStartPartnerOffer, ClickedUpdateArtwork, ClickedUploadArtwork, ClickedValidationAddressOptions, ClickedVerifyIdentity, ClickedViewingRoomCard } from "./Click";
|
|
6
|
+
import { CheckedAccountBalance, ClickedAddFilters, ClickedAddMissingArtworksDetails, ClickedAddNewShippingAddress, ClickedAddWorksToFair, ClickedAlertsFilters, ClickedAppDownload, ClickedArticleGroup, ClickedArtistGroup, ClickedArtistSeriesGroup, ClickedArtworkGroup, ClickedAuctionGroup, ClickedAuctionResultItem, ClickedBuyerProtection, ClickedChangePage, ClickedChangePaymentMethod, ClickedChangeShippingAddress, ClickedChangeShippingMethod, ClickedCloseValidationAddressModal, ClickedCollectionGroup, ClickedConversationsFilter, ClickedCreateAlert, ClickedDeliveryMethod, ClickedDismissInquiry, ClickedEditArtwork, ClickedExpandFilterPanel, ClickedExpansionToggle, ClickedFairCard, ClickedFairGroup, ClickedGalleryGroup, ClickedLoadMore, ClickedMainArtworkGrid, ClickedMarketingModal, ClickedMarkSold, ClickedMarkSpam, ClickedNavBar, ClickedNavigationTab, ClickedOfferActions, ClickedOfferOption, ClickedOnArtworkShippingUnitsDropdown, ClickedOnArtworkShippingWeight, ClickedOnBuyNowCheckbox, ClickedOnDuplicateArtwork, ClickedOnFramedMeasurements, ClickedOnFramedMeasurementsDropdown, ClickedOnGalleryName, ClickedOnLearnMore, ClickedOnMakeOfferCheckbox, ClickedOnPagination, ClickedOnPriceDisplayDropdown, ClickedOnPrivateListing, ClickedOnReadMore, ClickedOnSubmitOrder, ClickedOrderPage, ClickedOrderSummary, ClickedPartnerCard, ClickedPartnerLink, ClickedPaymentDetails, ClickedPaymentMethod, ClickedPromoSpace, ClickedPublish, ClickedSelectShippingOption, ClickedSendPartnerOffer, ClickedShippingAddress, ClickedShowGroup, ClickedShowMore, ClickedSnooze, ClickedStartPartnerOffer, ClickedUpdateArtwork, ClickedUploadArtwork, ClickedValidationAddressOptions, ClickedVerifyIdentity, ClickedViewingRoomCard } from "./Click";
|
|
7
7
|
import { EditedUserProfile } from "./CollectorProfile";
|
|
8
8
|
import { ArtworkDetailsCompleted, ConsignmentSubmitted, ContactInformationCompleted, SentConsignmentInquiry, SubmitAnotherArtwork, UploadPhotosCompleted, ViewArtworkMyCollection } from "./Consignments";
|
|
9
9
|
import { FocusedOnConversationMessageInput, SentConversationMessage, TappedInboxConversation, TappedMakeOffer, TappedViewOffer } from "./Conversations";
|
|
@@ -33,7 +33,7 @@ import { ViewedVideo } from "./Video";
|
|
|
33
33
|
*
|
|
34
34
|
* Each event describes one ActionType
|
|
35
35
|
*/
|
|
36
|
-
export type Event = AddedArtworkToArtworkList | AddedToAlbum | AddToCalendar | AddCollectedArtwork | AddressAutoCompletionResult | ArtworkDetailsCompleted | AuctionPageView | AuctionResultsFilterParamsChanged | AuthImpression | BidPageView | CreatedAccount | CreatedArtworkList | ClickedActiveBid | ClickedActivityPanelNotificationItem | ClickedActivityPanelTab | ClickedAddFilters | ClickedAddMissingArtworksDetails | ClickedAddNewShippingAddress | ClickedAddWorksToFair | ClickedAlertsFilters | ClickedAppDownload | ClickedArticleGroup | ClickedArtistGroup | ClickedArtistSeriesGroup | ClickedArtworkGroup | ClickedAuctionGroup | ClickedAuctionResultItem | ClickedBuyerProtection | ClickedChangePage | ClickedChangePaymentMethod | ClickedChangeShippingAddress | ClickedChangeShippingMethod | ClickedCollectionGroup | ClickedCreateAlert | ClickedDeliveryMethod | ClickedEditArtwork | ClickedExpandFilterPanel | ClickedExpansionToggle | ClickedFairCard | ClickedFairGroup | ClickedGalleryGroup | ClickedLoadMore | ClickedMainArtworkGrid | ClickedMarketingModal | ClickedNavigationTab | ClickedNavBar | ClickedNotificationsBell | ClickedOfferOption | ClickedOnArtworkShippingWeight | ClickedOnArtworkShippingUnitsDropdown | ClickedOnBuyNowCheckbox | ClickedOnFramedMeasurements | ClickedOnFramedMeasurementsDropdown |
|
|
36
|
+
export type Event = AddedArtworkToArtworkList | AddedToAlbum | AddToCalendar | AddCollectedArtwork | AddressAutoCompletionResult | ArtworkDetailsCompleted | AuctionPageView | AuctionResultsFilterParamsChanged | AuthImpression | BidPageView | CreatedAccount | CreatedArtworkList | ClickedActiveBid | ClickedActivityPanelNotificationItem | ClickedActivityPanelTab | ClickedAddFilters | ClickedAddMissingArtworksDetails | ClickedAddNewShippingAddress | ClickedAddWorksToFair | ClickedAlertsFilters | ClickedAppDownload | ClickedArticleGroup | ClickedArtistGroup | ClickedArtistSeriesGroup | ClickedArtworkGroup | ClickedAuctionGroup | ClickedAuctionResultItem | ClickedBuyerProtection | ClickedChangePage | ClickedChangePaymentMethod | ClickedChangeShippingAddress | ClickedChangeShippingMethod | ClickedCollectionGroup | ClickedCreateAlert | ClickedDeliveryMethod | ClickedEditArtwork | ClickedExpandFilterPanel | ClickedExpansionToggle | ClickedFairCard | ClickedFairGroup | ClickedGalleryGroup | ClickedLoadMore | ClickedMainArtworkGrid | ClickedMarketingModal | ClickedNavigationTab | ClickedNavBar | ClickedNotificationsBell | ClickedOfferOption | ClickedOnArtworkShippingWeight | ClickedOnArtworkShippingUnitsDropdown | ClickedOnBuyNowCheckbox | ClickedOnDuplicateArtwork | ClickedOnFramedMeasurements | ClickedOnFramedMeasurementsDropdown | ClickedOnGalleryName | ClickedOnLearnMore | ClickedOnMakeOfferCheckbox | ClickedOnPagination | ClickedOnPriceDisplayDropdown | ClickedOnPrivateListing | ClickedOnReadMore | ClickedPublish | ClickedOnSubmitOrder | ClickedSnooze | ClickedUploadArtwork | ClickedPartnerCard | ClickedPartnerLink | ClickedPaymentMethod | ClickedPaymentDetails | CheckedAccountBalance | ClickedPromoSpace | ClickedRegisterToBid | ClickedSelectShippingOption | ClickedSendPartnerOffer | ClickedShippingAddress | ClickedShowGroup | ClickedShowMore | ClickedStartPartnerOffer | ClickedVerifyIdentity | ClickedViewingRoomCard | ClickedOfferActions | ClickedOrderPage | ClickedOrderSummary | ClickedDismissInquiry | ClickedMarkSpam | ClickedMarkSold | ClickedConversationsFilter | ClickedUpdateArtwork | ClickedValidationAddressOptions | ClickedCloseValidationAddressModal | CommercialFilterParamsChanged | CompletedOfflineSync | CompletedOnboarding | ConfirmBid | ConfirmRegistrationPageview | ConsignmentArtistFailed | ConsignmentSubmitted | ContactInformationCompleted | CreatedAlbum | DeleteCollectedArtwork | EditedAlert | DeletedArtworkList | DeletedSavedSearch | EditCollectedArtwork | EditedArtworkList | EditedAutocompletedAddress | EditedSavedSearch | EditedUserProfile | EnterLiveAuction | ErrorMessageViewed | ExperimentViewed | ItemViewed | UploadSizeLimitExceeded | FocusedOnConversationMessageInput | FocusedOnSearchInput | FocusedOnPriceDatabaseSearchInput | FollowEvents | Impression | MaxBidSelected | MyCollectionOnboardingCompleted | OnboardingUserInputData | PriceDatabaseFilterParamsChanged | PromptForReview | RailViewed | ValidationAddressViewed | RegistrationPageView | RegistrationSubmitted | ResetYourPassword | SaleScreenLoadComplete | SaveCollectedArtwork | SavedCookieConsentPreferences | Screen | SearchedPriceDatabase | SearchedWithNoResults | SearchedWithResults | SelectedItemFromSearch | SelectedItemFromPriceDatabaseSearch | SelectedItemFromAddressAutoCompletion | SelectedRecentPriceRange | SelectedSearchSuggestionQuickNavigationItem | SendOffersBannerViewed | SendOffersErrorMessage | SendOffersModalViewed | SentContent | SentConsignmentInquiry | SentConversationMessage | SentRequestPriceEstimate | Share | StartedOnboarding | SubmitAnotherArtwork | SuccessfullyLoggedIn | TappedActivityGroup | TappedArticleGroup | TappedArticleShare | TappedArtistGroup | TappedArtistSeriesGroup | TappedArtworkGroup | TappedAuctionGroup | TappedAuctionResultGroup | TappedBid | TappedBrowseSimilarArtworks | TappedBuyNow | TappedCollectedArtwork | TappedCollectedArtworkImages | TappedCollectionGroup | TappedConsign | TappedContactGallery | TappedConsignmentInquiry | TappedCreateAlert | TappedExploreGroup | TappedExploreMyCollection | TappedFairCard | TappedFairGroup | TappedInboxConversation | TappedInfoBubble | TappedLink | TappedNavigationTab | TappedMainArtworkGrid | TappedMakeOffer | TappedMyCollectionInsightsMedianAuctionRailItem | TappedMyCollectionInsightsMedianAuctionPriceChartCareerHighlight | TappedMyCollectionInsightsMedianAuctionPriceChartCategory | TappedMyCollectionInsightsMedianAuctionPriceChartTimeframe | TappedPartnerCard | TappedProductCapabilitiesGroup | TappedPromoSpace | TappedRequestPriceEstimate | TappedSell | TappedSellArtwork | TappedShowMore | TappedLearnMore | TappedSkip | TappedTabBar | TappedVerifyIdentity | TappedViewingRoomCard | TappedViewingRoomGroup | TappedViewOffer | TimeOnPage | ToggledAccordion | ToggledNotification | ToggledPresentationModeSetting | ToggledSavedSearch | TooltipViewed | UploadPhotosCompleted | ViewArtworkMyCollection | ViewedArtworkList | ViewedVideo | VisitMyCollection | VisitMyCollectionOnboardingSlide;
|
|
37
37
|
/**
|
|
38
38
|
* The top-level actions an Event describes.
|
|
39
39
|
*
|
|
@@ -256,6 +256,10 @@ export declare enum ActionType {
|
|
|
256
256
|
* Corresponds to {@link ClickedOnBuyNowCheckbox}
|
|
257
257
|
*/
|
|
258
258
|
clickedOnBuyNowCheckbox = "clickedOnBuyNowCheckbox",
|
|
259
|
+
/**
|
|
260
|
+
* Corresponds to {@link ClickedOnDuplicateArtwork}
|
|
261
|
+
*/
|
|
262
|
+
clickedOnDuplicateArtwork = "clickedOnDuplicateArtwork",
|
|
259
263
|
/**
|
|
260
264
|
* Corresponds to {@link ClickedOnFramedMeasurements}
|
|
261
265
|
*/
|
|
@@ -265,13 +269,17 @@ export declare enum ActionType {
|
|
|
265
269
|
*/
|
|
266
270
|
clickedOnFramedMeasurementsDropdown = "clickedOnFramedMeasurementsDropdown",
|
|
267
271
|
/**
|
|
268
|
-
* Corresponds to {@link
|
|
272
|
+
* Corresponds to {@link ClickedOnGalleryName}
|
|
269
273
|
*/
|
|
270
|
-
|
|
274
|
+
clickedOnGalleryName = "clickedOnGalleryName",
|
|
271
275
|
/**
|
|
272
|
-
* Corresponds to {@link
|
|
276
|
+
* Corresponds to {@link ClickedOnLearnMore}
|
|
273
277
|
*/
|
|
274
|
-
|
|
278
|
+
clickedOnLearnMore = "clickedOnLearnMore",
|
|
279
|
+
/**
|
|
280
|
+
* Corresponds to {@link ClickedOnMakeOfferCheckbox}
|
|
281
|
+
*/
|
|
282
|
+
clickedOnMakeOfferCheckbox = "clickedOnMakeOfferCheckbox",
|
|
275
283
|
/**
|
|
276
284
|
* Corresponds to {@link ClickedOnPagination}
|
|
277
285
|
*/
|
|
@@ -280,10 +288,18 @@ export declare enum ActionType {
|
|
|
280
288
|
* Corresponds to {@link ClickedOnPriceDisplayDropdown}
|
|
281
289
|
*/
|
|
282
290
|
clickedOnPriceDisplayDropdown = "clickedOnPriceDisplayDropdown",
|
|
291
|
+
/**
|
|
292
|
+
* Corresponds to {@link ClickedOnPrivateListing}
|
|
293
|
+
*/
|
|
294
|
+
clickedOnPrivateListing = "clickedOnPrivateListing",
|
|
283
295
|
/**
|
|
284
296
|
* Corresponds to {@link ClickedPublish}
|
|
285
297
|
*/
|
|
286
298
|
clickedPublish = "clickedPublish",
|
|
299
|
+
/**
|
|
300
|
+
* Corresponds to {@link ClickedOnReadMore}
|
|
301
|
+
*/
|
|
302
|
+
clickedOnReadMore = "clickedOnReadMore",
|
|
287
303
|
/**
|
|
288
304
|
* Corresponds to {@link ClickedOnSubmitOrder}
|
|
289
305
|
*/
|
|
@@ -74,13 +74,17 @@ exports.ActionType = ActionType;
|
|
|
74
74
|
ActionType["clickedOnArtworkShippingUnitsDropdown"] = "clickedOnArtworkShippingUnitsDropdown";
|
|
75
75
|
ActionType["clickedOnArtworkShippingWeight"] = "clickedOnArtworkShippingWeight";
|
|
76
76
|
ActionType["clickedOnBuyNowCheckbox"] = "clickedOnBuyNowCheckbox";
|
|
77
|
+
ActionType["clickedOnDuplicateArtwork"] = "clickedOnDuplicateArtwork";
|
|
77
78
|
ActionType["clickedOnFramedMeasurements"] = "clickedOnFramedMeasurements";
|
|
78
79
|
ActionType["clickedOnFramedMeasurementsDropdown"] = "clickedOnFramedMeasurementsDropdown";
|
|
80
|
+
ActionType["clickedOnGalleryName"] = "clickedOnGalleryName";
|
|
81
|
+
ActionType["clickedOnLearnMore"] = "clickedOnLearnMore";
|
|
79
82
|
ActionType["clickedOnMakeOfferCheckbox"] = "clickedOnMakeOfferCheckbox";
|
|
80
|
-
ActionType["clickedOnDuplicateArtwork"] = "clickedOnDuplicateArtwork";
|
|
81
83
|
ActionType["clickedOnPagination"] = "clickedOnPagination";
|
|
82
84
|
ActionType["clickedOnPriceDisplayDropdown"] = "clickedOnPriceDisplayDropdown";
|
|
85
|
+
ActionType["clickedOnPrivateListing"] = "clickedOnPrivateListing";
|
|
83
86
|
ActionType["clickedPublish"] = "clickedPublish";
|
|
87
|
+
ActionType["clickedOnReadMore"] = "clickedOnReadMore";
|
|
84
88
|
ActionType["clickedOnSubmitOrder"] = "clickedOnSubmitOrder";
|
|
85
89
|
ActionType["clickedOrderPage"] = "clickedOrderPage";
|
|
86
90
|
ActionType["clickedOrderSummary"] = "clickedOrderSummary";
|
|
@@ -55,6 +55,7 @@ export declare enum OwnerType {
|
|
|
55
55
|
inboxConversation = "inboxConversation",
|
|
56
56
|
inboxInquiries = "inboxInquiries",
|
|
57
57
|
lotsByArtistsYouFollow = "lotsByArtistsYouFollow",
|
|
58
|
+
lotsForYou = "lotsForYou",
|
|
58
59
|
myCollection = "myCollection",
|
|
59
60
|
myCollectionAddArtworkArtist = "myCollectionAddArtworkArtist",
|
|
60
61
|
myCollectionArtwork = "myCollectionArtwork",
|
|
@@ -107,7 +108,7 @@ export declare enum OwnerType {
|
|
|
107
108
|
/**
|
|
108
109
|
* Owner types available in iOS/Android
|
|
109
110
|
*/
|
|
110
|
-
export type ScreenOwnerType = OwnerType.album | OwnerType.activities | OwnerType.activity | OwnerType.allArtistSeries | OwnerType.alerts | OwnerType.alertDetails | OwnerType.alertConfirmation | OwnerType.alertFilters | OwnerType.article | OwnerType.articles | OwnerType.artist | OwnerType.artistAuctionResults | OwnerType.artistSeries | OwnerType.artwork | OwnerType.artworkPriceFilter | OwnerType.artworkRecommendations | OwnerType.auctionResult | OwnerType.auctionResultsForArtistsYouFollow | OwnerType.auctions | OwnerType.cityGuideGuide | OwnerType.cityGuideMap | OwnerType.cityPicker | OwnerType.collection | OwnerType.consign | OwnerType.consignmentFlow | OwnerType.consignmentInquiry | OwnerType.consignmentSubmission | OwnerType.conversation | OwnerType.conversationMakeOfferConfirmArtwork | OwnerType.createAlert | OwnerType.editAlert | OwnerType.editProfile | OwnerType.explore | OwnerType.fair | OwnerType.fairArtworks | OwnerType.galleriesForYou | OwnerType.gene | OwnerType.home | OwnerType.inbox | OwnerType.inboxBids | OwnerType.inboxConversation | OwnerType.inboxInquiries | OwnerType.lotsByArtistsYouFollow | OwnerType.myCollection | OwnerType.myCollectionAddArtworkArtist | OwnerType.myCollectionArtwork | OwnerType.myCollectionArtwork | OwnerType.myCollectionArtworkAbout | OwnerType.myCollectionArtworkInsights | OwnerType.myCollectionInsights | OwnerType.myCollectionInsightsMedianAuctionPrice | OwnerType.myCollectionOnboarding | OwnerType.newWorksForYou | OwnerType.newWorksFromGalleriesYouFollow | OwnerType.onboarding | OwnerType.partner | OwnerType.priceDatabase | OwnerType.profile | OwnerType.recentlyViewed | OwnerType.sale | OwnerType.saleInformation | OwnerType.savedSearch | OwnerType.savedSearches | OwnerType.saves | OwnerType.savesAndFollows | OwnerType.search | OwnerType.sell | OwnerType.settings | OwnerType.show | OwnerType.shows | OwnerType.similarToRecentlyViewed | OwnerType.tag | OwnerType.upcomingAuctions | OwnerType.viewingRoom | OwnerType.viewingRoomArtworkPage | OwnerType.viewingRoomArtworks | OwnerType.viewingRoomList | OwnerType.worksForYou;
|
|
111
|
+
export type ScreenOwnerType = OwnerType.album | OwnerType.activities | OwnerType.activity | OwnerType.allArtistSeries | OwnerType.alerts | OwnerType.alertDetails | OwnerType.alertConfirmation | OwnerType.alertFilters | OwnerType.article | OwnerType.articles | OwnerType.artist | OwnerType.artistAuctionResults | OwnerType.artistSeries | OwnerType.artwork | OwnerType.artworkPriceFilter | OwnerType.artworkRecommendations | OwnerType.auctionResult | OwnerType.auctionResultsForArtistsYouFollow | OwnerType.auctions | OwnerType.cityGuideGuide | OwnerType.cityGuideMap | OwnerType.cityPicker | OwnerType.collection | OwnerType.consign | OwnerType.consignmentFlow | OwnerType.consignmentInquiry | OwnerType.consignmentSubmission | OwnerType.conversation | OwnerType.conversationMakeOfferConfirmArtwork | OwnerType.createAlert | OwnerType.editAlert | OwnerType.editProfile | OwnerType.explore | OwnerType.fair | OwnerType.fairArtworks | OwnerType.galleriesForYou | OwnerType.gene | OwnerType.home | OwnerType.inbox | OwnerType.inboxBids | OwnerType.inboxConversation | OwnerType.inboxInquiries | OwnerType.lotsByArtistsYouFollow | OwnerType.lotsForYou | OwnerType.myCollection | OwnerType.myCollectionAddArtworkArtist | OwnerType.myCollectionArtwork | OwnerType.myCollectionArtwork | OwnerType.myCollectionArtworkAbout | OwnerType.myCollectionArtworkInsights | OwnerType.myCollectionInsights | OwnerType.myCollectionInsightsMedianAuctionPrice | OwnerType.myCollectionOnboarding | OwnerType.newWorksForYou | OwnerType.newWorksFromGalleriesYouFollow | OwnerType.onboarding | OwnerType.partner | OwnerType.priceDatabase | OwnerType.profile | OwnerType.recentlyViewed | OwnerType.sale | OwnerType.saleInformation | OwnerType.savedSearch | OwnerType.savedSearches | OwnerType.saves | OwnerType.savesAndFollows | OwnerType.search | OwnerType.sell | OwnerType.settings | OwnerType.show | OwnerType.shows | OwnerType.similarToRecentlyViewed | OwnerType.tag | OwnerType.upcomingAuctions | OwnerType.viewingRoom | OwnerType.viewingRoomArtworkPage | OwnerType.viewingRoomArtworks | OwnerType.viewingRoomList | OwnerType.worksForYou;
|
|
111
112
|
/**
|
|
112
113
|
* Owner types available in web/mobile web
|
|
113
114
|
*/
|
|
@@ -73,6 +73,7 @@ exports.OwnerType = OwnerType;
|
|
|
73
73
|
OwnerType["inboxConversation"] = "inboxConversation";
|
|
74
74
|
OwnerType["inboxInquiries"] = "inboxInquiries";
|
|
75
75
|
OwnerType["lotsByArtistsYouFollow"] = "lotsByArtistsYouFollow";
|
|
76
|
+
OwnerType["lotsForYou"] = "lotsForYou";
|
|
76
77
|
OwnerType["myCollection"] = "myCollection";
|
|
77
78
|
OwnerType["myCollectionAddArtworkArtist"] = "myCollectionAddArtworkArtist";
|
|
78
79
|
OwnerType["myCollectionArtwork"] = "myCollectionArtwork";
|