@artsy/cohesion 4.244.0 → 4.246.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md CHANGED
@@ -1,3 +1,28 @@
1
+ # v4.246.0 (Mon Mar 24 2025)
2
+
3
+ #### 🚀 Enhancement
4
+
5
+ - fix(batch-import): Use action instead of event [#572](https://github.com/artsy/cohesion/pull/572) ([@damassi](https://github.com/damassi))
6
+
7
+ #### Authors: 1
8
+
9
+ - Christopher Pappas ([@damassi](https://github.com/damassi))
10
+
11
+ ---
12
+
13
+ # v4.245.0 (Wed Mar 19 2025)
14
+
15
+ #### 🚀 Enhancement
16
+
17
+ - feat: add interface for TappedMenuItemGroup event [#571](https://github.com/artsy/cohesion/pull/571) ([@dblandin](https://github.com/dblandin))
18
+ - feat: add new OwnerType values to track existing account/settings screens [#570](https://github.com/artsy/cohesion/pull/570) ([@dblandin](https://github.com/dblandin))
19
+
20
+ #### Authors: 1
21
+
22
+ - devon blandin ([@dblandin](https://github.com/dblandin))
23
+
24
+ ---
25
+
1
26
  # v4.244.0 (Sun Mar 16 2025)
2
27
 
3
28
  #### 🚀 Enhancement
@@ -11,6 +11,7 @@ import { CmsActionType } from "./index";
11
11
  * @example
12
12
  * ```
13
13
  * {
14
+ * action: "click",
14
15
  * context_module: "batchImportFlow",
15
16
  * context_page_owner_type: "batchImport",
16
17
  * context_page_owner_id: "67b646ecbe87376bfeb3f962",
@@ -20,6 +21,7 @@ import { CmsActionType } from "./index";
20
21
  * ```
21
22
  */
22
23
  export interface CmsBatchImportFlowClickImport {
24
+ action: "click";
23
25
  context_module: CmsContextModule.batchImportFlow;
24
26
  context_page_owner_type: CmsOwnerType.batchImport;
25
27
  context_page_owner_id: string;
@@ -32,6 +34,7 @@ export interface CmsBatchImportFlowClickImport {
32
34
  * @example
33
35
  * ```
34
36
  * {
37
+ * action: "click",
35
38
  * context_module: "batchImportFlow",
36
39
  * context_page_owner_type: "batchImport",
37
40
  * context_page_owner_id: "67b646ecbe87376bfeb3f962",
@@ -40,6 +43,7 @@ export interface CmsBatchImportFlowClickImport {
40
43
  * ```
41
44
  */
42
45
  export interface CmsBatchImportFlowClickAddCSV {
46
+ action: "click";
43
47
  context_module: CmsContextModule.batchImportFlow;
44
48
  context_page_owner_type: CmsOwnerType.batchImport;
45
49
  context_page_owner_id: string;
@@ -51,6 +55,7 @@ export interface CmsBatchImportFlowClickAddCSV {
51
55
  * @example
52
56
  * ```
53
57
  * {
58
+ * action: "click",
54
59
  * context_module: "batchImportFlow",
55
60
  * context_page_owner_type: "batchImport",
56
61
  * context_page_owner_id: "67b646ecbe87376bfeb3f962",
@@ -59,18 +64,39 @@ export interface CmsBatchImportFlowClickAddCSV {
59
64
  * ```
60
65
  */
61
66
  export interface CmsBatchImportFlowClickDownloadTemplate {
67
+ action: "click";
62
68
  context_module: CmsContextModule.batchImportFlow;
63
69
  context_page_owner_type: CmsOwnerType.batchImport;
64
70
  context_page_owner_id: string;
65
71
  label: "click download template";
66
72
  }
73
+ /**
74
+ * An error occurred during CSV import.
75
+ *
76
+ * @example
77
+ * ```
78
+ * {
79
+ * action: "csvImportError",
80
+ * context_page_owner_type: "batchImport",
81
+ * context_page_owner_id: "67b646ecbe87376bfeb3f962",
82
+ * // list of errors
83
+ * value: [ "error1", "error2" ]
84
+ * }
85
+ * ```
86
+ */
87
+ export interface CmsBatchImportFlowImportError {
88
+ action: CmsActionType.csvImportError;
89
+ context_page_owner_type: CmsOwnerType.batchImport;
90
+ context_page_owner_id: string;
91
+ value: string[];
92
+ }
67
93
  /**
68
94
  * Some artworks have missing information warnings.
69
95
  *
70
96
  * @example
71
97
  * ```
72
98
  * {
73
- * event: "shownMissingInformation",
99
+ * action: "shownMissingInformation",
74
100
  * context_page_owner_type: "batchImport",
75
101
  * context_page_owner_id: "67b646ecbe87376bfeb3f962",
76
102
  * // number of artworks with warnings
@@ -79,7 +105,7 @@ export interface CmsBatchImportFlowClickDownloadTemplate {
79
105
  * ```
80
106
  */
81
107
  export interface CmsBatchImportFlowShownMissingInformation {
82
- event: CmsActionType.shownMissingInformation;
108
+ action: CmsActionType.shownMissingInformation;
83
109
  context_page_owner_type: CmsOwnerType.batchImport;
84
110
  context_page_owner_id: string;
85
111
  value: number;
@@ -90,7 +116,7 @@ export interface CmsBatchImportFlowShownMissingInformation {
90
116
  * @example
91
117
  * ```
92
118
  * {
93
- * event: "artistNeedsMatching",
119
+ * action: "artistNeedsMatching",
94
120
  * context_page_owner_type: "batchImportArtistMatching",
95
121
  * context_page_owner_id: "67b646ecbe87376bfeb3f962",
96
122
  * // number of artists with missing matching
@@ -99,18 +125,40 @@ export interface CmsBatchImportFlowShownMissingInformation {
99
125
  * ```
100
126
  */
101
127
  export interface CmsBatchImportFlowArtistNeedsMatching {
102
- event: CmsActionType.artistNeedsMatching;
128
+ action: CmsActionType.artistNeedsMatching;
103
129
  context_page_owner_type: CmsOwnerType.batchImportArtistMatching;
104
130
  context_page_owner_id: string;
105
131
  value: number;
106
132
  }
133
+ /**
134
+ * Partners click to see highlighted warning / error
135
+ *
136
+ * @example
137
+ * ```
138
+ * {
139
+ * action: "click",
140
+ * context_module: "batchImportFlow",
141
+ * context_page_owner_type: "batchImport",
142
+ * context_page_owner_id: "67b646ecbe87376bfeb3f962",
143
+ * label: "click import"
144
+ * }
145
+ * ```
146
+ */
147
+ export interface CmsBatchImportClickSeeWarning {
148
+ action: "click";
149
+ context_module: CmsContextModule.batchImportFlow;
150
+ context_page_owner_type: CmsOwnerType.batchImport;
151
+ context_page_owner_id: string;
152
+ label: "click see warning csv";
153
+ }
107
154
  /**
108
155
  * Partners click to exit the batch import flow
109
156
  *
110
157
  * @example
111
158
  * ```
112
159
  * {
113
- * context_module: "batchImportFlow",
160
+ * action: "click",
161
+ * context_module: "batchImportFlow",
114
162
  * context_page_owner_type: "batchImport",
115
163
  * context_page_owner_id: "67b646ecbe87376bfeb3f962",
116
164
  * label: "click import"
@@ -118,6 +166,7 @@ export interface CmsBatchImportFlowArtistNeedsMatching {
118
166
  * ```
119
167
  */
120
168
  export interface CmsBatchImportClickExit {
169
+ action: "click";
121
170
  context_module: CmsContextModule.batchImportFlow;
122
171
  context_page_owner_type: CmsOwnerType.batchImport;
123
172
  context_page_owner_id: string;
@@ -15,6 +15,10 @@ export declare enum CmsActionType {
15
15
  * Corresponds to {@link CmsBatchImportFlow}
16
16
  */
17
17
  artistNeedsMatching = "artistNeedsMatching",
18
+ /**
19
+ * Corresponds to {@link CmsBatchImportFlow}
20
+ */
21
+ csvImportError = "csvImportError",
18
22
  /**
19
23
  * Corresponds to {@link BatchImportFlow}
20
24
  */
@@ -21,5 +21,6 @@ exports.CmsActionType = CmsActionType;
21
21
 
22
22
  (function (CmsActionType) {
23
23
  CmsActionType["artistNeedsMatching"] = "artistNeedsMatching";
24
+ CmsActionType["csvImportError"] = "csvImportError";
24
25
  CmsActionType["shownMissingInformation"] = "shownMissingInformation";
25
26
  })(CmsActionType || (exports.CmsActionType = CmsActionType = {}));
@@ -1291,3 +1291,26 @@ export interface TappedNavigationPillsGroup extends TappedEntityGroup {
1291
1291
  href: string;
1292
1292
  title: string;
1293
1293
  }
1294
+ /**
1295
+ * A user an item within a menu item group
1296
+ *
1297
+ * This schema describes events sent to Segment from [[tappedMenuItemGroup]]
1298
+ *
1299
+ * @example
1300
+ * ```
1301
+ * {
1302
+ * action: "tappedMenuItemGroup",
1303
+ * context_module: "accountSettings",
1304
+ * context_screen_owner_type: "artist",
1305
+ * position: "6",
1306
+ * subject: "Dark Mode",
1307
+ * }
1308
+ * ```
1309
+ */
1310
+ export interface TappedMenuItemGroup {
1311
+ action: ActionType.tappedMenuItemGroup;
1312
+ context_module?: ContextModule;
1313
+ context_screen_owner_type: ScreenOwnerType;
1314
+ position: number;
1315
+ subject: string;
1316
+ }
@@ -14,7 +14,7 @@ import { AddedToAlbum, CompletedOfflineSync, CreatedAlbum, SentContent, ToggledP
14
14
  import { TappedProductCapabilitiesGroup } from "./HomeFeedArtsyOnboarding";
15
15
  import { MyCollectionOnboardingCompleted, TappedExploreMyCollection, VisitMyCollection, VisitMyCollectionOnboardingSlide } from "./HomeFeedMyCollectionOnboarding";
16
16
  import { Impression } from "./Impression";
17
- import { BannerViewed, CreateAlertReminderMessageViewed, EditProfileModalViewed, ErrorMessageViewed, ItemViewed, RailViewed, SendOffersBannerViewed, SendOffersErrorMessage, SendOffersModalViewed, ShippingEstimateViewed, TooltipViewed, ProgressiveOnboardingTooltipViewed, ValidationAddressViewed } from "./ImpressionTracking";
17
+ import { BannerViewed, CreateAlertReminderMessageViewed, EditProfileModalViewed, ErrorMessageViewed, ItemViewed, ProgressiveOnboardingTooltipViewed, RailViewed, SendOffersBannerViewed, SendOffersErrorMessage, SendOffersModalViewed, ShippingEstimateViewed, TooltipViewed, ValidationAddressViewed } from "./ImpressionTracking";
18
18
  import { AddCollectedArtwork, DeleteCollectedArtwork, EditCollectedArtwork, SaveCollectedArtwork, SentRequestPriceEstimate, TappedCollectedArtwork, TappedCollectedArtworkImages, TappedMyCollectionAddArtworkArtist, TappedRequestPriceEstimate } from "./MyCollection";
19
19
  import { TappedMyCollectionInsightsMedianAuctionPriceChartCareerHighlight, TappedMyCollectionInsightsMedianAuctionPriceChartCategory, TappedMyCollectionInsightsMedianAuctionPriceChartTimeframe, TappedMyCollectionInsightsMedianAuctionRailItem } from "./MyCollectionInsights";
20
20
  import { PromptForReview } from "./PromptForReview";
@@ -24,7 +24,7 @@ import { AddressAutoCompletionResult, ConsignmentArtistFailed, EditedAutocomplet
24
24
  import { ClickedOpenInNewTabButton, ClickedShareButton, Share } from "./Share";
25
25
  import { SwipedInfiniteDiscoveryArtwork } from "./Swipe";
26
26
  import { SaleScreenLoadComplete, Screen, TimeOnPage } from "./System";
27
- import { TappedActivityGroup, TappedArticleGroup, TappedArticleShare, TappedArtistGroup, TappedArtistSeriesGroup, TappedArtworkGroup, TappedAuctionGroup, TappedAuctionResultGroup, TappedBid, TappedBrowseSimilarArtworks, TappedBuyNow, TappedCardGroup, TappedChangePaymentMethod, TappedClearTask, TappedCollectionGroup, TappedConsign, TappedConsignmentInquiry, TappedContactGallery, TappedCreateAlert, TappedExploreGroup, TappedFairCard, TappedFairGroup, TappedGlobalSearchBar, TappedInfoBubble, TappedLearnMore, TappedLink, TappedMainArtworkGrid, TappedNavigationPillsGroup, TappedNavigationTab, TappedPartnerCard, TappedPromoSpace, TappedSell, TappedSellArtwork, TappedShowMore, TappedSkip, TappedTabBar, TappedTaskGroup, TappedVerifyIdentity, TappedViewingRoomCard, TappedViewingRoomGroup, TappedViewWork } from "./Tap";
27
+ import { TappedActivityGroup, TappedArticleGroup, TappedArticleShare, TappedArtistGroup, TappedArtistSeriesGroup, TappedArtworkGroup, TappedAuctionGroup, TappedAuctionResultGroup, TappedBid, TappedBrowseSimilarArtworks, TappedBuyNow, TappedCardGroup, TappedChangePaymentMethod, TappedClearTask, TappedCollectionGroup, TappedConsign, TappedConsignmentInquiry, TappedContactGallery, TappedCreateAlert, TappedExploreGroup, TappedFairCard, TappedFairGroup, TappedGlobalSearchBar, TappedInfoBubble, TappedLearnMore, TappedLink, TappedMainArtworkGrid, TappedMenuItemGroup, TappedNavigationPillsGroup, TappedNavigationTab, TappedPartnerCard, TappedPromoSpace, TappedSell, TappedSellArtwork, TappedShowMore, TappedSkip, TappedTabBar, TappedTaskGroup, TappedVerifyIdentity, TappedViewingRoomCard, TappedViewingRoomGroup, TappedViewWork } from "./Tap";
28
28
  import { ToggledNotification, ToggledSavedSearch } from "./Toggle";
29
29
  import { UploadSizeLimitExceeded } from "./UploadSizeLimitExceeded";
30
30
  import { ToggledAccordion } from "./UserExperienceInteractions";
@@ -34,7 +34,7 @@ import { ViewedVideo } from "./Video";
34
34
  *
35
35
  * Each event describes one ActionType
36
36
  */
37
- export type Event = AddCollectedArtwork | AddedArtworkToArtworkList | AddedToAlbum | AddressAutoCompletionResult | AddToCalendar | ArtworkDetailsCompleted | AuctionPageView | AuctionResultsFilterParamsChanged | AuthImpression | BannerViewed | BidPageView | CheckedAccountBalance | ClickedActiveBid | ClickedActivityPanelNotificationItem | ClickedActivityPanelTab | ClickedAddFilters | ClickedAddMissingArtworksDetails | ClickedAddNewShippingAddress | ClickedAddWorksToFair | ClickedAlertsFilters | ClickedAppDownload | ClickedArticleGroup | ClickedArtistGroup | ClickedArtistSeriesGroup | ClickedArtworkGroup | ClickedAuctionGroup | ClickedAuctionResultItem | ClickedBid | ClickedBuyerProtection | ClickedBuyNow | ClickedCancelExpressCheckout | ClickedChangePage | ClickedChangePaymentMethod | ClickedChangeShippingAddress | ClickedChangeShippingMethod | ClickedCloseValidationAddressModal | ClickedCollectionGroup | ClickedContactGallery | ClickedConversationsFilter | ClickedCreateAlert | ClickedDeliveryMethod | ClickedDismissInquiry | ClickedDownloadAppFooter | ClickedDownloadAppHeader | ClickedEditArtwork | ClickedEditAlert | ClickedEstimateShippingCost | ClickedExpandFilterPanel | ClickedExpansionToggle | ClickedExpressCheckout | ClickedFairCard | ClickedFairGroup | ClickedGalleryGroup | ClickedHeroUnitGroup | ClickedLoadMore | ClickedMainArtworkGrid | ClickedMakeOffer | ClickedMarketingModal | ClickedMarkSold | ClickedMarkSpam | ClickedNavBar | ClickedNavigationTab | ClickedNotificationsBell | ClickedOfferActions | ClickedOfferOption | ClickedOnArtworkShippingUnitsDropdown | ClickedOnArtworkShippingWeight | ClickedOnBuyNowCheckbox | ClickedOnDuplicateArtwork | ClickedOnFramedMeasurements | ClickedOnFramedMeasurementsDropdown | ClickedOnLearnMore | ClickedOnMakeOfferCheckbox | ClickedOnPagination | ClickedOnPriceDisplayDropdown | ClickedOnReadMore | ClickedOnSubmitOrder | ClickedOrderPage | ClickedOrderSummary | ClickedOpenInNewTabButton | ClickedPartnerCard | ClickedPartnerLink | ClickedPaymentDetails | ClickedPaymentMethod | ClickedPromoSpace | ClickedPublish | ClickedRegisterToBid | ClickedSelectShippingOption | ClickedSendPartnerOffer | ClickedShareButton | ClickedShippingAddress | ClickedShowGroup | ClickedShowMore | ClickedSnooze | ClickedStartPartnerOffer | ClickedUpdateArtwork | ClickedUploadArtwork | ClickedValidationAddressOptions | ClickedVerifyIdentity | ClickedViewingRoomCard | ClickedViewWork | CommercialFilterParamsChanged | CommercialFilterSelectedAll | CompletedOfflineSync | CompletedOnboarding | ConfirmBid | ConfirmRegistrationPageview | ConsignmentArtistFailed | ConsignmentSubmitted | ContactInformationCompleted | CreatedAccount | CreateAlertReminderMessageViewed | CreatedAlbum | CreatedArtworkList | DeleteCollectedArtwork | DeletedArtworkList | DeletedSavedSearch | EditCollectedArtwork | EditedAlert | EditedArtworkList | EditedAutocompletedAddress | EditedSavedSearch | EditedUserProfile | EditProfileModalViewed | EnterLiveAuction | ErrorMessageViewed | ExperimentViewed | FocusedOnConversationMessageInput | FocusedOnPriceDatabaseSearchInput | FocusedOnSearchInput | FollowEvents | Impression | ItemViewed | MaxBidSelected | MyCollectionOnboardingCompleted | OnboardingUserInputData | PriceDatabaseFilterParamsChanged | PromptForReview | RailViewed | RegistrationPageView | RegistrationSubmitted | ResetYourPassword | SaleScreenLoadComplete | SaveCollectedArtwork | SavedCookieConsentPreferences | Screen | SearchedPriceDatabase | SearchedWithNoResults | SearchedWithResults | SelectedItemFromAddressAutoCompletion | SelectedItemFromPriceDatabaseSearch | SelectedItemFromSearch | SelectedRecentPriceRange | SelectedSearchSuggestionQuickNavigationItem | SendOffersBannerViewed | SendOffersErrorMessage | SendOffersModalViewed | SentConsignmentInquiry | SentContent | SentConversationMessage | SentRequestPriceEstimate | Share | ShippingEstimateViewed | StartedOnboarding | SubmitAnotherArtwork | SuccessfullyLoggedIn | SwipedInfiniteDiscoveryArtwork | TappedActivityGroup | TappedArticleGroup | TappedArticleShare | TappedArtistGroup | TappedArtistSeriesGroup | TappedArtworkGroup | TappedAuctionGroup | TappedAuctionResultGroup | TappedBid | TappedBrowseSimilarArtworks | TappedBuyNow | TappedCardGroup | TappedChangePaymentMethod | TappedClearTask | TappedCollectedArtwork | TappedCollectedArtworkImages | TappedCollectionGroup | TappedConsign | TappedConsignmentInquiry | TappedContactGallery | TappedCreateAlert | TappedExploreGroup | TappedExploreMyCollection | TappedFairCard | TappedFairGroup | TappedGlobalSearchBar | TappedInboxConversation | TappedInfoBubble | TappedLearnMore | TappedLink | TappedMainArtworkGrid | TappedMakeOffer | TappedMyCollectionAddArtworkArtist | TappedMyCollectionInsightsMedianAuctionPriceChartCareerHighlight | TappedMyCollectionInsightsMedianAuctionPriceChartCategory | TappedMyCollectionInsightsMedianAuctionPriceChartTimeframe | TappedMyCollectionInsightsMedianAuctionRailItem | TappedNavigationPillsGroup | TappedNavigationTab | TappedNotificationsBell | TappedPartnerCard | TappedProductCapabilitiesGroup | TappedPromoSpace | TappedRequestPriceEstimate | TappedSell | TappedSellArtwork | TappedShowMore | TappedSkip | TappedTabBar | TappedTaskGroup | TappedVerifyIdentity | TappedViewingRoomCard | TappedViewingRoomGroup | TappedViewOffer | TappedViewWork | TimeOnPage | ToggledAccordion | ToggledNotification | ToggledPresentationModeSetting | ToggledSavedSearch | TooltipViewed | ProgressiveOnboardingTooltipViewed | UploadPhotosCompleted | UploadSizeLimitExceeded | ValidationAddressViewed | ViewArtworkMyCollection | ViewedArtworkList | ViewedSharedArtworkList | ViewedVideo | VisitMyCollection | VisitMyCollectionOnboardingSlide;
37
+ export type Event = AddCollectedArtwork | AddedArtworkToArtworkList | AddedToAlbum | AddressAutoCompletionResult | AddToCalendar | ArtworkDetailsCompleted | AuctionPageView | AuctionResultsFilterParamsChanged | AuthImpression | BannerViewed | BidPageView | CheckedAccountBalance | ClickedActiveBid | ClickedActivityPanelNotificationItem | ClickedActivityPanelTab | ClickedAddFilters | ClickedAddMissingArtworksDetails | ClickedAddNewShippingAddress | ClickedAddWorksToFair | ClickedAlertsFilters | ClickedAppDownload | ClickedArticleGroup | ClickedArtistGroup | ClickedArtistSeriesGroup | ClickedArtworkGroup | ClickedAuctionGroup | ClickedAuctionResultItem | ClickedBid | ClickedBuyerProtection | ClickedBuyNow | ClickedCancelExpressCheckout | ClickedChangePage | ClickedChangePaymentMethod | ClickedChangeShippingAddress | ClickedChangeShippingMethod | ClickedCloseValidationAddressModal | ClickedCollectionGroup | ClickedContactGallery | ClickedConversationsFilter | ClickedCreateAlert | ClickedDeliveryMethod | ClickedDismissInquiry | ClickedDownloadAppFooter | ClickedDownloadAppHeader | ClickedEditArtwork | ClickedEditAlert | ClickedEstimateShippingCost | ClickedExpandFilterPanel | ClickedExpansionToggle | ClickedExpressCheckout | ClickedFairCard | ClickedFairGroup | ClickedGalleryGroup | ClickedHeroUnitGroup | ClickedLoadMore | ClickedMainArtworkGrid | ClickedMakeOffer | ClickedMarketingModal | ClickedMarkSold | ClickedMarkSpam | ClickedNavBar | ClickedNavigationTab | ClickedNotificationsBell | ClickedOfferActions | ClickedOfferOption | ClickedOnArtworkShippingUnitsDropdown | ClickedOnArtworkShippingWeight | ClickedOnBuyNowCheckbox | ClickedOnDuplicateArtwork | ClickedOnFramedMeasurements | ClickedOnFramedMeasurementsDropdown | ClickedOnLearnMore | ClickedOnMakeOfferCheckbox | ClickedOnPagination | ClickedOnPriceDisplayDropdown | ClickedOnReadMore | ClickedOnSubmitOrder | ClickedOrderPage | ClickedOrderSummary | ClickedOpenInNewTabButton | ClickedPartnerCard | ClickedPartnerLink | ClickedPaymentDetails | ClickedPaymentMethod | ClickedPromoSpace | ClickedPublish | ClickedRegisterToBid | ClickedSelectShippingOption | ClickedSendPartnerOffer | ClickedShareButton | ClickedShippingAddress | ClickedShowGroup | ClickedShowMore | ClickedSnooze | ClickedStartPartnerOffer | ClickedUpdateArtwork | ClickedUploadArtwork | ClickedValidationAddressOptions | ClickedVerifyIdentity | ClickedViewingRoomCard | ClickedViewWork | CommercialFilterParamsChanged | CommercialFilterSelectedAll | CompletedOfflineSync | CompletedOnboarding | ConfirmBid | ConfirmRegistrationPageview | ConsignmentArtistFailed | ConsignmentSubmitted | ContactInformationCompleted | CreatedAccount | CreateAlertReminderMessageViewed | CreatedAlbum | CreatedArtworkList | DeleteCollectedArtwork | DeletedArtworkList | DeletedSavedSearch | EditCollectedArtwork | EditedAlert | EditedArtworkList | EditedAutocompletedAddress | EditedSavedSearch | EditedUserProfile | EditProfileModalViewed | EnterLiveAuction | ErrorMessageViewed | ExperimentViewed | FocusedOnConversationMessageInput | FocusedOnPriceDatabaseSearchInput | FocusedOnSearchInput | FollowEvents | Impression | ItemViewed | MaxBidSelected | MyCollectionOnboardingCompleted | OnboardingUserInputData | PriceDatabaseFilterParamsChanged | PromptForReview | RailViewed | RegistrationPageView | RegistrationSubmitted | ResetYourPassword | SaleScreenLoadComplete | SaveCollectedArtwork | SavedCookieConsentPreferences | Screen | SearchedPriceDatabase | SearchedWithNoResults | SearchedWithResults | SelectedItemFromAddressAutoCompletion | SelectedItemFromPriceDatabaseSearch | SelectedItemFromSearch | SelectedRecentPriceRange | SelectedSearchSuggestionQuickNavigationItem | SendOffersBannerViewed | SendOffersErrorMessage | SendOffersModalViewed | SentConsignmentInquiry | SentContent | SentConversationMessage | SentRequestPriceEstimate | Share | ShippingEstimateViewed | StartedOnboarding | SubmitAnotherArtwork | SuccessfullyLoggedIn | SwipedInfiniteDiscoveryArtwork | TappedActivityGroup | TappedArticleGroup | TappedArticleShare | TappedArtistGroup | TappedArtistSeriesGroup | TappedArtworkGroup | TappedAuctionGroup | TappedAuctionResultGroup | TappedBid | TappedBrowseSimilarArtworks | TappedBuyNow | TappedCardGroup | TappedChangePaymentMethod | TappedClearTask | TappedCollectedArtwork | TappedCollectedArtworkImages | TappedCollectionGroup | TappedConsign | TappedConsignmentInquiry | TappedContactGallery | TappedCreateAlert | TappedExploreGroup | TappedExploreMyCollection | TappedFairCard | TappedFairGroup | TappedGlobalSearchBar | TappedInboxConversation | TappedInfoBubble | TappedLearnMore | TappedLink | TappedMainArtworkGrid | TappedMakeOffer | TappedMenuItemGroup | TappedMyCollectionAddArtworkArtist | TappedMyCollectionInsightsMedianAuctionPriceChartCareerHighlight | TappedMyCollectionInsightsMedianAuctionPriceChartCategory | TappedMyCollectionInsightsMedianAuctionPriceChartTimeframe | TappedMyCollectionInsightsMedianAuctionRailItem | TappedNavigationPillsGroup | TappedNavigationTab | TappedNotificationsBell | TappedPartnerCard | TappedProductCapabilitiesGroup | TappedPromoSpace | TappedRequestPriceEstimate | TappedSell | TappedSellArtwork | TappedShowMore | TappedSkip | TappedTabBar | TappedTaskGroup | TappedVerifyIdentity | TappedViewingRoomCard | TappedViewingRoomGroup | TappedViewOffer | TappedViewWork | TimeOnPage | ToggledAccordion | ToggledNotification | ToggledPresentationModeSetting | ToggledSavedSearch | TooltipViewed | ProgressiveOnboardingTooltipViewed | UploadPhotosCompleted | UploadSizeLimitExceeded | ValidationAddressViewed | ViewArtworkMyCollection | ViewedArtworkList | ViewedSharedArtworkList | ViewedVideo | VisitMyCollection | VisitMyCollectionOnboardingSlide;
38
38
  /**
39
39
  * The top-level actions an Event describes.
40
40
  *
@@ -957,6 +957,10 @@ export declare enum ActionType {
957
957
  * Corresponds to {@link TappedMenuItem}
958
958
  */
959
959
  tappeMenuItem = "tappeMenuItem",
960
+ /**
961
+ * Corresponds to {@link TappedMenuItemGroup}
962
+ */
963
+ tappedMenuItemGroup = "tappedMenuItemGroup",
960
964
  /**
961
965
  * Corresponds to {@link TappedMyCollectionAddArtworkArtist}
962
966
  */
@@ -249,6 +249,7 @@ exports.ActionType = ActionType;
249
249
  ActionType["tappedMainArtworkGrid"] = "tappedMainArtworkGrid";
250
250
  ActionType["tappedMakeOffer"] = "tappedMakeOffer";
251
251
  ActionType["tappeMenuItem"] = "tappeMenuItem";
252
+ ActionType["tappedMenuItemGroup"] = "tappedMenuItemGroup";
252
253
  ActionType["tappedMyCollectionAddArtworkArtist"] = "tappedMyCollectionAddArtworkArtist";
253
254
  ActionType["tappedMyCollectionInsightsMedianAuctionPriceChartCareerHighlight"] = "tappedMyCollectionInsightsMedianAuctionPriceChartCareerHighlight";
254
255
  ActionType["tappedMyCollectionInsightsMedianAuctionPriceChartCategory"] = "TappedMyCollectionInsightsMedianAuctionPriceChartCategory";
@@ -8,6 +8,8 @@ export declare enum ContextModule {
8
8
  aboutTheWork = "aboutTheWork",
9
9
  aboutThisAuction = "aboutThisAuction",
10
10
  account = "account",
11
+ accountSettings = "accountSettings",
12
+ accountTransactions = "accountTransactions",
11
13
  activity = "activity",
12
14
  activityRail = "activityRail",
13
15
  actNow = "actNow",
@@ -238,4 +240,4 @@ export declare enum ContextModule {
238
240
  /**
239
241
  * Limited ContextModules available for web authentication events
240
242
  */
241
- export type AuthContextModule = ContextModule.aboutTheWork | ContextModule.activity | ContextModule.articleTab | ContextModule.artistHeader | ContextModule.artistRecentlySold | ContextModule.artistSeriesRail | ContextModule.artistSeriesTab | ContextModule.artistsTab | ContextModule.artistsToFollowRail | 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.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;
243
+ 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.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.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;
@@ -22,6 +22,8 @@ exports.ContextModule = ContextModule;
22
22
  ContextModule["aboutTheWork"] = "aboutTheWork";
23
23
  ContextModule["aboutThisAuction"] = "aboutThisAuction";
24
24
  ContextModule["account"] = "account";
25
+ ContextModule["accountSettings"] = "accountSettings";
26
+ ContextModule["accountTransactions"] = "accountTransactions";
25
27
  ContextModule["activity"] = "activity";
26
28
  ContextModule["activityRail"] = "activityRail";
27
29
  ContextModule["actNow"] = "actNow";
@@ -4,6 +4,20 @@
4
4
  * @packageDocumentation
5
5
  */
6
6
  export declare enum OwnerType {
7
+ about = "about",
8
+ account = "account",
9
+ accountDarkMode = "accountDarkMode",
10
+ accountDeleteMyAccount = "accountDeleteMyAccount",
11
+ accountEmail = "accountEmail",
12
+ accountNotifications = "accountNotifications",
13
+ accountOrders = "accountOrders",
14
+ accountPassword = "accountPassword",
15
+ accountPayment = "accountPayment",
16
+ accountAddPayment = "accountAddPayment",
17
+ accountPersonalDataRequest = "accountPersonalDataRequest",
18
+ accountPhoneNumber = "accountPhoneNumber",
19
+ accountPriceRange = "accountPriceRange",
20
+ accountSettings = "accountSettings",
7
21
  activities = "activities",
8
22
  activity = "activity",
9
23
  album = "album",
@@ -140,7 +154,7 @@ export declare enum OwnerType {
140
154
  /**
141
155
  * Owner types available in iOS/Android
142
156
  */
143
- export type ScreenOwnerType = OwnerType.activities | OwnerType.activity | OwnerType.album | OwnerType.alertConfirmation | OwnerType.alertDetails | OwnerType.alertFilters | OwnerType.alerts | OwnerType.alertsInfoModal | OwnerType.allArtistSeries | OwnerType.article | OwnerType.articles | OwnerType.artist | OwnerType.artistArticles | 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.collectionsCategory | OwnerType.confirmYourBid | 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.favorites | OwnerType.featuredFairs | OwnerType.follows | OwnerType.galleriesForYou | OwnerType.gene | OwnerType.home | OwnerType.inbox | OwnerType.inboxBids | OwnerType.inboxConversation | OwnerType.inboxInquiries | OwnerType.infiniteDiscoveryArtwork | OwnerType.infiniteDiscoveryOnboarding | OwnerType.lotsByArtistsYouFollow | OwnerType.lotsForYou | OwnerType.marketNews | OwnerType.myCollection | OwnerType.myCollectionAddArtworkArtist | OwnerType.myCollectionArtwork | OwnerType.myCollectionArtwork | OwnerType.myCollectionArtworkAbout | OwnerType.myCollectionArtworkInsights | OwnerType.myCollectionInsights | OwnerType.myCollectionInsightsMedianAuctionPrice | OwnerType.myCollectionOnboarding | OwnerType.newWorksForYou | OwnerType.newWorksFromGalleriesYouFollow | OwnerType.notification | OwnerType.onboarding | OwnerType.partner | OwnerType.priceDatabase | OwnerType.profile | OwnerType.quickLinks | OwnerType.recentlyViewed | OwnerType.sale | OwnerType.saleInformation | OwnerType.savedSearch | OwnerType.savedSearches | OwnerType.saves | OwnerType.savesAndFollows | OwnerType.savesInfoModal | OwnerType.search | OwnerType.sell | OwnerType.settings | OwnerType.show | OwnerType.shows | OwnerType.similarToRecentlyViewed | OwnerType.submitArtworkStepAddDetails | OwnerType.submitArtworkStepAddDimensions | OwnerType.submitArtworkStepAddPhoneNumber | OwnerType.submitArtworkStepAddPhotos | OwnerType.submitArtworkStepAddtionalDocuments | OwnerType.submitArtworkStepAddTitle | OwnerType.submitArtworkStepArtistRejected | OwnerType.submitArtworkStepCompleteYourSubmission | OwnerType.submitArtworkStepCompleteYourSubmissionPostApproval | OwnerType.submitArtworkStepCondition | OwnerType.submitArtworkStepFrameInformation | OwnerType.submitArtworkStepPurchaseHistory | OwnerType.submitArtworkStepSelectArtist | OwnerType.submitArtworkStepSelectArtworkMyCollectionArtwork | OwnerType.submitArtworkStepShippingLocation | OwnerType.submitArtworkStepStart | OwnerType.tag | OwnerType.upcomingAuctions | OwnerType.viewingRoom | OwnerType.viewingRoomArtworkPage | OwnerType.viewingRoomArtworks | OwnerType.viewingRoomList | OwnerType.worksForYou | OwnerType.yourMaxBid;
157
+ export type ScreenOwnerType = OwnerType.about | OwnerType.account | OwnerType.accountDarkMode | OwnerType.accountDeleteMyAccount | OwnerType.accountEmail | OwnerType.accountNotifications | OwnerType.accountOrders | OwnerType.accountPassword | OwnerType.accountPayment | OwnerType.accountAddPayment | OwnerType.accountPersonalDataRequest | OwnerType.accountPhoneNumber | OwnerType.accountPriceRange | OwnerType.accountSettings | OwnerType.activities | OwnerType.activity | OwnerType.album | OwnerType.alertConfirmation | OwnerType.alertDetails | OwnerType.alertFilters | OwnerType.alerts | OwnerType.alertsInfoModal | OwnerType.allArtistSeries | OwnerType.article | OwnerType.articles | OwnerType.artist | OwnerType.artistArticles | 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.collectionsCategory | OwnerType.confirmYourBid | 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.favorites | OwnerType.featuredFairs | OwnerType.follows | OwnerType.galleriesForYou | OwnerType.gene | OwnerType.home | OwnerType.inbox | OwnerType.inboxBids | OwnerType.inboxConversation | OwnerType.inboxInquiries | OwnerType.infiniteDiscoveryArtwork | OwnerType.infiniteDiscoveryOnboarding | OwnerType.lotsByArtistsYouFollow | OwnerType.lotsForYou | OwnerType.marketNews | OwnerType.myCollection | OwnerType.myCollectionAddArtworkArtist | OwnerType.myCollectionArtwork | OwnerType.myCollectionArtwork | OwnerType.myCollectionArtworkAbout | OwnerType.myCollectionArtworkInsights | OwnerType.myCollectionInsights | OwnerType.myCollectionInsightsMedianAuctionPrice | OwnerType.myCollectionOnboarding | OwnerType.newWorksForYou | OwnerType.newWorksFromGalleriesYouFollow | OwnerType.notification | OwnerType.onboarding | OwnerType.partner | OwnerType.priceDatabase | OwnerType.profile | OwnerType.quickLinks | OwnerType.recentlyViewed | OwnerType.sale | OwnerType.saleInformation | OwnerType.savedSearch | OwnerType.savedSearches | OwnerType.saves | OwnerType.savesAndFollows | OwnerType.savesInfoModal | OwnerType.search | OwnerType.sell | OwnerType.settings | OwnerType.show | OwnerType.shows | OwnerType.similarToRecentlyViewed | OwnerType.submitArtworkStepAddDetails | OwnerType.submitArtworkStepAddDimensions | OwnerType.submitArtworkStepAddPhoneNumber | OwnerType.submitArtworkStepAddPhotos | OwnerType.submitArtworkStepAddtionalDocuments | OwnerType.submitArtworkStepAddTitle | OwnerType.submitArtworkStepArtistRejected | OwnerType.submitArtworkStepCompleteYourSubmission | OwnerType.submitArtworkStepCompleteYourSubmissionPostApproval | OwnerType.submitArtworkStepCondition | OwnerType.submitArtworkStepFrameInformation | OwnerType.submitArtworkStepPurchaseHistory | OwnerType.submitArtworkStepSelectArtist | OwnerType.submitArtworkStepSelectArtworkMyCollectionArtwork | OwnerType.submitArtworkStepShippingLocation | OwnerType.submitArtworkStepStart | OwnerType.tag | OwnerType.upcomingAuctions | OwnerType.viewingRoom | OwnerType.viewingRoomArtworkPage | OwnerType.viewingRoomArtworks | OwnerType.viewingRoomList | OwnerType.worksForYou | OwnerType.yourMaxBid;
144
158
  /**
145
159
  * Owner types available in web/mobile web
146
160
  */
@@ -22,6 +22,20 @@ var OwnerType;
22
22
  exports.OwnerType = OwnerType;
23
23
 
24
24
  (function (OwnerType) {
25
+ OwnerType["about"] = "about";
26
+ OwnerType["account"] = "account";
27
+ OwnerType["accountDarkMode"] = "accountDarkMode";
28
+ OwnerType["accountDeleteMyAccount"] = "accountDeleteMyAccount";
29
+ OwnerType["accountEmail"] = "accountEmail";
30
+ OwnerType["accountNotifications"] = "accountNotifications";
31
+ OwnerType["accountOrders"] = "accountOrders";
32
+ OwnerType["accountPassword"] = "accountPassword";
33
+ OwnerType["accountPayment"] = "accountPayment";
34
+ OwnerType["accountAddPayment"] = "accountAddPayment";
35
+ OwnerType["accountPersonalDataRequest"] = "accountPersonalDataRequest";
36
+ OwnerType["accountPhoneNumber"] = "accountPhoneNumber";
37
+ OwnerType["accountPriceRange"] = "accountPriceRange";
38
+ OwnerType["accountSettings"] = "accountSettings";
25
39
  OwnerType["activities"] = "activities";
26
40
  OwnerType["activity"] = "activity";
27
41
  OwnerType["album"] = "album";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@artsy/cohesion",
3
- "version": "4.244.0",
3
+ "version": "4.246.0",
4
4
  "description": "Analytics schema",
5
5
  "main": "dist/index.js",
6
6
  "publishConfig": {