@artsy/cohesion 4.243.0 → 4.245.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,29 @@
1
+ # v4.245.0 (Wed Mar 19 2025)
2
+
3
+ #### 🚀 Enhancement
4
+
5
+ - feat: add interface for TappedMenuItemGroup event [#571](https://github.com/artsy/cohesion/pull/571) ([@dblandin](https://github.com/dblandin))
6
+ - feat: add new OwnerType values to track existing account/settings screens [#570](https://github.com/artsy/cohesion/pull/570) ([@dblandin](https://github.com/dblandin))
7
+
8
+ #### Authors: 1
9
+
10
+ - devon blandin ([@dblandin](https://github.com/dblandin))
11
+
12
+ ---
13
+
14
+ # v4.244.0 (Sun Mar 16 2025)
15
+
16
+ #### 🚀 Enhancement
17
+
18
+ - feat(imports): Add CmsBatchImport events [#562](https://github.com/artsy/cohesion/pull/562) ([@damassi](https://github.com/damassi) [@leodmz](https://github.com/leodmz))
19
+
20
+ #### Authors: 2
21
+
22
+ - Christopher Pappas ([@damassi](https://github.com/damassi))
23
+ - Leo Demazeau ([@leodmz](https://github.com/leodmz))
24
+
25
+ ---
26
+
1
27
  # v4.243.0 (Fri Mar 14 2025)
2
28
 
3
29
  #### 🚀 Enhancement
@@ -0,0 +1,126 @@
1
+ /**
2
+ * Schemas describing CMS BatchImportFlow events
3
+ * @packageDocumentation
4
+ */
5
+ import { CmsContextModule } from "../Values/CmsContextModule";
6
+ import { CmsOwnerType } from "../Values/CmsOwnerType";
7
+ import { CmsActionType } from "./index";
8
+ /**
9
+ * A partner has clicked the import button and started the flow.
10
+ *
11
+ * @example
12
+ * ```
13
+ * {
14
+ * context_module: "batchImportFlow",
15
+ * context_page_owner_type: "batchImport",
16
+ * context_page_owner_id: "67b646ecbe87376bfeb3f962",
17
+ * label: "click import",
18
+ * referrer: ""
19
+ * }
20
+ * ```
21
+ */
22
+ export interface CmsBatchImportFlowClickImport {
23
+ context_module: CmsContextModule.batchImportFlow;
24
+ context_page_owner_type: CmsOwnerType.batchImport;
25
+ context_page_owner_id: string;
26
+ label: "click import works";
27
+ referrer: "";
28
+ }
29
+ /**
30
+ * A partner has clicked to add a CSV file.
31
+ *
32
+ * @example
33
+ * ```
34
+ * {
35
+ * context_module: "batchImportFlow",
36
+ * context_page_owner_type: "batchImport",
37
+ * context_page_owner_id: "67b646ecbe87376bfeb3f962",
38
+ * label: "click add CSV"
39
+ * }
40
+ * ```
41
+ */
42
+ export interface CmsBatchImportFlowClickAddCSV {
43
+ context_module: CmsContextModule.batchImportFlow;
44
+ context_page_owner_type: CmsOwnerType.batchImport;
45
+ context_page_owner_id: string;
46
+ label: "click add CSV";
47
+ }
48
+ /**
49
+ * A partner has clicked to download the template.
50
+ *
51
+ * @example
52
+ * ```
53
+ * {
54
+ * context_module: "batchImportFlow",
55
+ * context_page_owner_type: "batchImport",
56
+ * context_page_owner_id: "67b646ecbe87376bfeb3f962",
57
+ * label: "click download template"
58
+ * }
59
+ * ```
60
+ */
61
+ export interface CmsBatchImportFlowClickDownloadTemplate {
62
+ context_module: CmsContextModule.batchImportFlow;
63
+ context_page_owner_type: CmsOwnerType.batchImport;
64
+ context_page_owner_id: string;
65
+ label: "click download template";
66
+ }
67
+ /**
68
+ * Some artworks have missing information warnings.
69
+ *
70
+ * @example
71
+ * ```
72
+ * {
73
+ * event: "shownMissingInformation",
74
+ * context_page_owner_type: "batchImport",
75
+ * context_page_owner_id: "67b646ecbe87376bfeb3f962",
76
+ * // number of artworks with warnings
77
+ * value: 5
78
+ * }
79
+ * ```
80
+ */
81
+ export interface CmsBatchImportFlowShownMissingInformation {
82
+ event: CmsActionType.shownMissingInformation;
83
+ context_page_owner_type: CmsOwnerType.batchImport;
84
+ context_page_owner_id: string;
85
+ value: number;
86
+ }
87
+ /**
88
+ * Artists need matching during the batch import.
89
+ *
90
+ * @example
91
+ * ```
92
+ * {
93
+ * event: "artistNeedsMatching",
94
+ * context_page_owner_type: "batchImportArtistMatching",
95
+ * context_page_owner_id: "67b646ecbe87376bfeb3f962",
96
+ * // number of artists with missing matching
97
+ * value: 3
98
+ * }
99
+ * ```
100
+ */
101
+ export interface CmsBatchImportFlowArtistNeedsMatching {
102
+ event: CmsActionType.artistNeedsMatching;
103
+ context_page_owner_type: CmsOwnerType.batchImportArtistMatching;
104
+ context_page_owner_id: string;
105
+ value: number;
106
+ }
107
+ /**
108
+ * Partners click to exit the batch import flow
109
+ *
110
+ * @example
111
+ * ```
112
+ * {
113
+ * context_module: "batchImportFlow",
114
+ * context_page_owner_type: "batchImport",
115
+ * context_page_owner_id: "67b646ecbe87376bfeb3f962",
116
+ * label: "click import"
117
+ * }
118
+ * ```
119
+ */
120
+ export interface CmsBatchImportClickExit {
121
+ context_module: CmsContextModule.batchImportFlow;
122
+ context_page_owner_type: CmsOwnerType.batchImport;
123
+ context_page_owner_id: string;
124
+ label: "click exit";
125
+ }
126
+ export type CmsBatchImportFlow = CmsBatchImportFlowClickImport | CmsBatchImportFlowClickAddCSV | CmsBatchImportFlowClickDownloadTemplate | CmsBatchImportFlowShownMissingInformation | CmsBatchImportFlowArtistNeedsMatching | CmsBatchImportClickExit;
@@ -0,0 +1 @@
1
+ "use strict";
@@ -0,0 +1,22 @@
1
+ import { CmsBatchImportFlow } from "./BatchImportFlow";
2
+ /**
3
+ * List of valid schemas for CMS analytics actions
4
+ *
5
+ * Each event describes one ActionType
6
+ */
7
+ export type CmsEvent = CmsBatchImportFlow;
8
+ /**
9
+ * List of all CMS actions
10
+ *
11
+ * Each CmsActionType corresponds with a table in Redshift.
12
+ */
13
+ export declare enum CmsActionType {
14
+ /**
15
+ * Corresponds to {@link CmsBatchImportFlow}
16
+ */
17
+ artistNeedsMatching = "artistNeedsMatching",
18
+ /**
19
+ * Corresponds to {@link BatchImportFlow}
20
+ */
21
+ shownMissingInformation = "shownMissingInformation"
22
+ }
@@ -0,0 +1,25 @@
1
+ "use strict";
2
+
3
+ Object.defineProperty(exports, "__esModule", {
4
+ value: true
5
+ });
6
+ exports.CmsActionType = void 0;
7
+
8
+ /**
9
+ * List of valid schemas for CMS analytics actions
10
+ *
11
+ * Each event describes one ActionType
12
+ */
13
+
14
+ /**
15
+ * List of all CMS actions
16
+ *
17
+ * Each CmsActionType corresponds with a table in Redshift.
18
+ */
19
+ var CmsActionType;
20
+ exports.CmsActionType = CmsActionType;
21
+
22
+ (function (CmsActionType) {
23
+ CmsActionType["artistNeedsMatching"] = "artistNeedsMatching";
24
+ CmsActionType["shownMissingInformation"] = "shownMissingInformation";
25
+ })(CmsActionType || (exports.CmsActionType = CmsActionType = {}));
@@ -0,0 +1,9 @@
1
+ /**
2
+ * All context modules available for CMS
3
+ *
4
+ * A component where an action is triggered
5
+ * @packageDocumentation
6
+ */
7
+ export declare enum CmsContextModule {
8
+ batchImportFlow = "batchImportFlow"
9
+ }
@@ -0,0 +1,19 @@
1
+ "use strict";
2
+
3
+ Object.defineProperty(exports, "__esModule", {
4
+ value: true
5
+ });
6
+ exports.CmsContextModule = void 0;
7
+
8
+ /**
9
+ * All context modules available for CMS
10
+ *
11
+ * A component where an action is triggered
12
+ * @packageDocumentation
13
+ */
14
+ var CmsContextModule;
15
+ exports.CmsContextModule = CmsContextModule;
16
+
17
+ (function (CmsContextModule) {
18
+ CmsContextModule["batchImportFlow"] = "batchImportFlow";
19
+ })(CmsContextModule || (exports.CmsContextModule = CmsContextModule = {}));
@@ -0,0 +1,9 @@
1
+ /**
2
+ * All owner types available for CMS
3
+ *
4
+ * @packageDocumentation
5
+ */
6
+ export declare enum CmsOwnerType {
7
+ batchImport = "batchImport",
8
+ batchImportArtistMatching = "batchImportArtistMatching"
9
+ }
@@ -0,0 +1,19 @@
1
+ "use strict";
2
+
3
+ Object.defineProperty(exports, "__esModule", {
4
+ value: true
5
+ });
6
+ exports.CmsOwnerType = void 0;
7
+
8
+ /**
9
+ * All owner types available for CMS
10
+ *
11
+ * @packageDocumentation
12
+ */
13
+ var CmsOwnerType;
14
+ exports.CmsOwnerType = CmsOwnerType;
15
+
16
+ (function (CmsOwnerType) {
17
+ CmsOwnerType["batchImport"] = "batchImport";
18
+ CmsOwnerType["batchImportArtistMatching"] = "batchImportArtistMatching";
19
+ })(CmsOwnerType || (exports.CmsOwnerType = CmsOwnerType = {}));
@@ -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
+ }
@@ -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";
@@ -1,3 +1,6 @@
1
+ /**
2
+ * Web and iOS exports
3
+ */
1
4
  export * from "./Events";
2
5
  export * from "./Events/ActivityPanel";
3
6
  export * from "./Events/AddToCalendar";
@@ -29,3 +32,9 @@ export * from "./Values/Intent";
29
32
  export * from "./Values/OwnerType";
30
33
  export * from "./Values/PushNotificationType";
31
34
  export * from "./Values/Tab";
35
+ /**
36
+ * CMS-specific exports
37
+ */
38
+ export * from "./CMS/Events";
39
+ export * from "./CMS/Values/CmsContextModule";
40
+ export * from "./CMS/Values/CmsOwnerType";
@@ -374,4 +374,40 @@ Object.keys(_Tab).forEach(function (key) {
374
374
  return _Tab[key];
375
375
  }
376
376
  });
377
+ });
378
+
379
+ var _Events2 = require("./CMS/Events");
380
+
381
+ Object.keys(_Events2).forEach(function (key) {
382
+ if (key === "default" || key === "__esModule") return;
383
+ Object.defineProperty(exports, key, {
384
+ enumerable: true,
385
+ get: function get() {
386
+ return _Events2[key];
387
+ }
388
+ });
389
+ });
390
+
391
+ var _CmsContextModule = require("./CMS/Values/CmsContextModule");
392
+
393
+ Object.keys(_CmsContextModule).forEach(function (key) {
394
+ if (key === "default" || key === "__esModule") return;
395
+ Object.defineProperty(exports, key, {
396
+ enumerable: true,
397
+ get: function get() {
398
+ return _CmsContextModule[key];
399
+ }
400
+ });
401
+ });
402
+
403
+ var _CmsOwnerType = require("./CMS/Values/CmsOwnerType");
404
+
405
+ Object.keys(_CmsOwnerType).forEach(function (key) {
406
+ if (key === "default" || key === "__esModule") return;
407
+ Object.defineProperty(exports, key, {
408
+ enumerable: true,
409
+ get: function get() {
410
+ return _CmsOwnerType[key];
411
+ }
412
+ });
377
413
  });
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@artsy/cohesion",
3
- "version": "4.243.0",
3
+ "version": "4.245.0",
4
4
  "description": "Analytics schema",
5
5
  "main": "dist/index.js",
6
6
  "publishConfig": {