@artsy/cohesion 4.58.0 → 4.61.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 +36 -0
- package/dist/Schema/Events/Authentication.d.ts +31 -4
- package/dist/Schema/Events/Click.d.ts +33 -0
- package/dist/Schema/Events/index.d.ts +15 -3
- package/dist/Schema/Events/index.js +3 -0
- package/dist/Schema/Values/ContextModule.d.ts +4 -4
- package/dist/Schema/Values/ContextModule.js +3 -3
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,39 @@
|
|
|
1
|
+
# v4.61.0 (Tue Aug 09 2022)
|
|
2
|
+
|
|
3
|
+
#### 🚀 Enhancement
|
|
4
|
+
|
|
5
|
+
- feat(onboarding): add context module for onboarding follows and saves [#346](https://github.com/artsy/cohesion/pull/346) ([@TMcMeans](https://github.com/TMcMeans))
|
|
6
|
+
|
|
7
|
+
#### Authors: 1
|
|
8
|
+
|
|
9
|
+
- TanjieM ([@TMcMeans](https://github.com/TMcMeans))
|
|
10
|
+
|
|
11
|
+
---
|
|
12
|
+
|
|
13
|
+
# v4.60.0 (Tue Aug 09 2022)
|
|
14
|
+
|
|
15
|
+
#### 🚀 Enhancement
|
|
16
|
+
|
|
17
|
+
- [AS-3324] Adding event for balance account check [#345](https://github.com/artsy/cohesion/pull/345) ([@daytavares](https://github.com/daytavares))
|
|
18
|
+
|
|
19
|
+
#### Authors: 1
|
|
20
|
+
|
|
21
|
+
- Dayane Tavares ([@daytavares](https://github.com/daytavares))
|
|
22
|
+
|
|
23
|
+
---
|
|
24
|
+
|
|
25
|
+
# v4.59.0 (Thu Jul 28 2022)
|
|
26
|
+
|
|
27
|
+
#### 🚀 Enhancement
|
|
28
|
+
|
|
29
|
+
- [GRO-1153] Updates onboarding data [#344](https://github.com/artsy/cohesion/pull/344) ([@abhitip](https://github.com/abhitip))
|
|
30
|
+
|
|
31
|
+
#### Authors: 1
|
|
32
|
+
|
|
33
|
+
- Abhiti Prabahar ([@abhitip](https://github.com/abhitip))
|
|
34
|
+
|
|
35
|
+
---
|
|
36
|
+
|
|
1
37
|
# v4.58.0 (Tue Jul 26 2022)
|
|
2
38
|
|
|
3
39
|
#### 🚀 Enhancement
|
|
@@ -1,6 +1,5 @@
|
|
|
1
1
|
import { AuthContextModule, ContextModule } from "../Values/ContextModule";
|
|
2
2
|
import { AuthIntent } from "../Values/Intent";
|
|
3
|
-
import { PageOwnerType } from "../Values/OwnerType";
|
|
4
3
|
import { ActionType } from ".";
|
|
5
4
|
/**
|
|
6
5
|
* Schemas describing authentication events
|
|
@@ -163,14 +162,42 @@ export declare type AuthService = "apple" | "email" | "facebook" | "google";
|
|
|
163
162
|
* {
|
|
164
163
|
* action: "onboardingUserInputData",
|
|
165
164
|
* context_module: "onboardingInterests",
|
|
166
|
-
*
|
|
167
|
-
* data_input: "[learnAboutArt]"
|
|
165
|
+
* data_input: "[developingArtTastes]"
|
|
168
166
|
* }
|
|
169
167
|
* ```
|
|
170
168
|
*/
|
|
171
169
|
export interface OnboardingUserInputData {
|
|
172
170
|
action: ActionType.onboardingUserInputData;
|
|
173
171
|
context_module: ContextModule;
|
|
174
|
-
context_owner_type: PageOwnerType;
|
|
175
172
|
data_input: string;
|
|
176
173
|
}
|
|
174
|
+
/**
|
|
175
|
+
* A user starts the onboarding flow
|
|
176
|
+
*
|
|
177
|
+
* This schema describes events sent to Segment from [[startedOnboarding]]
|
|
178
|
+
*
|
|
179
|
+
* @example
|
|
180
|
+
* ```
|
|
181
|
+
* {
|
|
182
|
+
* action: "startedOnboarding",
|
|
183
|
+
* }
|
|
184
|
+
* ```
|
|
185
|
+
*/
|
|
186
|
+
export interface StartedOnboarding {
|
|
187
|
+
action: ActionType.startedOnboarding;
|
|
188
|
+
}
|
|
189
|
+
/**
|
|
190
|
+
* A user completes the onboarding flow
|
|
191
|
+
*
|
|
192
|
+
* This schema describes events sent to Segment from [[completedOnboarding]]
|
|
193
|
+
*
|
|
194
|
+
* @example
|
|
195
|
+
* ```
|
|
196
|
+
* {
|
|
197
|
+
* action: "completedOnboarding",
|
|
198
|
+
* }
|
|
199
|
+
* ```
|
|
200
|
+
*/
|
|
201
|
+
export interface CompletedOnboarding {
|
|
202
|
+
action: ActionType.completedOnboarding;
|
|
203
|
+
}
|
|
@@ -781,6 +781,39 @@ export interface ClickedPaymentDetails {
|
|
|
781
781
|
order_id: string;
|
|
782
782
|
subject: string;
|
|
783
783
|
}
|
|
784
|
+
/**
|
|
785
|
+
* After choosing Bank Transfer, when user clicks on save & continue
|
|
786
|
+
* on the payment page, the balance account is checked
|
|
787
|
+
*
|
|
788
|
+
* This schema describes events sent
|
|
789
|
+
* to Segment from [[clickedBalanceAccountCheck]]
|
|
790
|
+
*
|
|
791
|
+
* @example
|
|
792
|
+
* ```
|
|
793
|
+
* {
|
|
794
|
+
* action: "checkedAccountBalance",
|
|
795
|
+
* flow: "Make Offer",
|
|
796
|
+
* context_page_owner_type: "orders-payment",
|
|
797
|
+
* order_id: "407dd09f-4afd-4aad-a6cc-1d6704dc2b11"
|
|
798
|
+
* amount: 2000,
|
|
799
|
+
* currency: "USD"
|
|
800
|
+
* payment_method: "bank transfer"
|
|
801
|
+
* subject: "balance account check"
|
|
802
|
+
* outcome: "sucess"
|
|
803
|
+
* }
|
|
804
|
+
* ```
|
|
805
|
+
*/
|
|
806
|
+
export interface CheckedAccountBalance {
|
|
807
|
+
action: ActionType.checkedAccountBalance;
|
|
808
|
+
flow: string;
|
|
809
|
+
context_page_owner_type: string;
|
|
810
|
+
order_id: string;
|
|
811
|
+
amount: number;
|
|
812
|
+
currency: string;
|
|
813
|
+
payment_method: string;
|
|
814
|
+
subject: string;
|
|
815
|
+
outcome: string;
|
|
816
|
+
}
|
|
784
817
|
/**
|
|
785
818
|
* User selects existing shipping address when entering the orders
|
|
786
819
|
* checkout flow.
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { AddToCalendar } from "./AddToCalendar";
|
|
2
2
|
import { AuctionPageView, BidPageView, ClickedActiveBid, ClickedRegisterToBid, ConfirmBid, ConfirmRegistrationPageview, EnterLiveAuction, MaxBidSelected, RegistrationPageView, RegistrationSubmitted } from "./Auction";
|
|
3
|
-
import { AuthImpression, CreatedAccount, OnboardingUserInputData, ResetYourPassword, SuccessfullyLoggedIn } from "./Authentication";
|
|
4
|
-
import { ClickedAddNewShippingAddress, ClickedAddWorksToFair, ClickedAppDownload, ClickedArticleGroup, ClickedArtistGroup, ClickedArtistSeriesGroup, ClickedArtworkGroup, ClickedAuctionGroup, ClickedBuyerProtection, ClickedChangePage, ClickedChangePaymentMethod, ClickedChangeShippingAddress, ClickedChangeShippingMethod, ClickedCollectionGroup, ClickedCreateAlert, ClickedDeliveryMethod, ClickedEditArtwork, ClickedExpansionToggle, ClickedFairCard, ClickedFairGroup, ClickedGalleryGroup, ClickedLoadMore, ClickedMainArtworkGrid, ClickedNavigationTab, ClickedOfferActions, ClickedOfferOption, ClickedOnArtworkShippingUnitsDropdown, ClickedOnArtworkShippingWeight, ClickedOnFramedMeasurements, ClickedOnFramedMeasurementsDropdown, ClickedOnSubmitOrder, ClickedOrderPage, ClickedPartnerCard, ClickedPartnerLink, ClickedPaymentDetails, ClickedPaymentMethod, ClickedPromoSpace, ClickedSelectShippingOption, ClickedShippingAddress, ClickedShowGroup, ClickedShowMore, ClickedSnooze, ClickedVerifyIdentity, ClickedViewingRoomCard } from "./Click";
|
|
3
|
+
import { AuthImpression, CompletedOnboarding, CreatedAccount, OnboardingUserInputData, ResetYourPassword, StartedOnboarding, SuccessfullyLoggedIn } from "./Authentication";
|
|
4
|
+
import { ClickedAddNewShippingAddress, ClickedAddWorksToFair, ClickedAppDownload, ClickedArticleGroup, ClickedArtistGroup, ClickedArtistSeriesGroup, ClickedArtworkGroup, ClickedAuctionGroup, ClickedBuyerProtection, ClickedChangePage, ClickedChangePaymentMethod, ClickedChangeShippingAddress, ClickedChangeShippingMethod, ClickedCollectionGroup, ClickedCreateAlert, ClickedDeliveryMethod, ClickedEditArtwork, ClickedExpansionToggle, ClickedFairCard, ClickedFairGroup, ClickedGalleryGroup, ClickedLoadMore, ClickedMainArtworkGrid, ClickedNavigationTab, ClickedOfferActions, ClickedOfferOption, ClickedOnArtworkShippingUnitsDropdown, ClickedOnArtworkShippingWeight, ClickedOnFramedMeasurements, ClickedOnFramedMeasurementsDropdown, ClickedOnSubmitOrder, ClickedOrderPage, ClickedPartnerCard, ClickedPartnerLink, ClickedPaymentDetails, ClickedPaymentMethod, CheckedAccountBalance, ClickedPromoSpace, ClickedSelectShippingOption, ClickedShippingAddress, ClickedShowGroup, ClickedShowMore, ClickedSnooze, ClickedVerifyIdentity, ClickedViewingRoomCard } from "./Click";
|
|
5
5
|
import { ArtworkDetailsCompleted, ConsignmentSubmitted, SubmitAnotherArtwork, UploadPhotosCompleted, ViewArtworkMyCollection } from "./Consignments";
|
|
6
6
|
import { FocusedOnConversationMessageInput, SentConversationMessage, TappedInboxConversation, TappedMakeOffer, TappedViewOffer } from "./Conversations";
|
|
7
7
|
import { ExperimentViewed } from "./ExperimentViewed";
|
|
@@ -22,7 +22,7 @@ import { ToggledAccordion } from "./UserExperienceInteractions";
|
|
|
22
22
|
*
|
|
23
23
|
* Each event describes one ActionType
|
|
24
24
|
*/
|
|
25
|
-
export declare type Event = AddToCalendar | AddCollectedArtwork | ArtworkDetailsCompleted | AuctionPageView | AuctionResultsFilterParamsChanged | AuthImpression | BidPageView | CreatedAccount | ClickedActiveBid | ClickedAddNewShippingAddress | ClickedAddWorksToFair | ClickedAppDownload | ClickedArticleGroup | ClickedArtistGroup | ClickedArtistSeriesGroup | ClickedArtworkGroup | ClickedAuctionGroup | ClickedBuyerProtection | ClickedChangePage | ClickedChangePaymentMethod | ClickedChangeShippingAddress | ClickedChangeShippingMethod | ClickedCollectionGroup | ClickedCreateAlert | ClickedDeliveryMethod | ClickedEditArtwork | ClickedExpansionToggle | ClickedFairCard | ClickedFairGroup | ClickedGalleryGroup | ClickedLoadMore | ClickedMainArtworkGrid | ClickedNavigationTab | ClickedOfferOption | ClickedOnArtworkShippingWeight | ClickedOnArtworkShippingUnitsDropdown | ClickedOnFramedMeasurements | ClickedOnFramedMeasurementsDropdown | ClickedOnSubmitOrder | ClickedSnooze | ClickedPartnerCard | ClickedPartnerLink | ClickedPaymentMethod | ClickedPaymentDetails | ClickedPromoSpace | ClickedRegisterToBid | ClickedSelectShippingOption | ClickedShippingAddress | ClickedShowGroup | ClickedShowMore | ClickedVerifyIdentity | ClickedViewingRoomCard | ClickedOfferActions | ClickedOrderPage | CommercialFilterParamsChanged | ConfirmBid | ConfirmRegistrationPageview | ConsignmentArtistFailed | ConsignmentSubmitted | DeleteCollectedArtwork | DeletedSavedSearch | EditCollectedArtwork | EditedSavedSearch | EnterLiveAuction | ExperimentViewed | FocusedOnConversationMessageInput | FocusedOnSearchInput | FocusedOnPriceDatabaseSearchInput | FollowEvents | Impression | MaxBidSelected | OnboardingUserInputData | PriceDatabaseFilterParamsChanged | PromptForReview | RegistrationPageView | RegistrationSubmitted | ResetYourPassword | SaleScreenLoadComplete | Screen | SearchedPriceDatabase | SearchedWithNoResults | SelectedItemFromSearch | SelectedItemFromPriceDatabaseSearch | SentConversationMessage | SentRequestPriceEstimate | Share | SubmitAnotherArtwork | SuccessfullyLoggedIn | TappedArticleGroup | TappedArtistGroup | TappedArtistSeriesGroup | TappedArtworkGroup | TappedAuctionGroup | TappedAuctionResultGroup | TappedBid | TappedBuyNow | TappedCollectedArtwork | TappedCollectedArtworkImages | TappedCollectionGroup | TappedConsign | TappedContactGallery | TappedCreateAlert | TappedExploreGroup | TappedFairCard | TappedFairGroup | TappedInboxConversation | TappedInfoBubble | TappedLink | TappedNavigationTab | TappedMainArtworkGrid | TappedMakeOffer | TappedPartnerCard | TappedPromoSpace | TappedRequestPriceEstimate | TappedSell | TappedSellArtwork | TappedShowMore | TappedLearnMore | TappedSkip | TappedTabBar | TappedVerifyIdentity | TappedViewingRoomCard | TappedViewingRoomGroup | TappedViewOffer | TimeOnPage | ToggledAccordion | ToggledNotification | ToggledSavedSearch | UploadPhotosCompleted | ViewArtworkMyCollection;
|
|
25
|
+
export declare type Event = AddToCalendar | AddCollectedArtwork | ArtworkDetailsCompleted | AuctionPageView | AuctionResultsFilterParamsChanged | AuthImpression | BidPageView | CreatedAccount | ClickedActiveBid | ClickedAddNewShippingAddress | ClickedAddWorksToFair | ClickedAppDownload | ClickedArticleGroup | ClickedArtistGroup | ClickedArtistSeriesGroup | ClickedArtworkGroup | ClickedAuctionGroup | ClickedBuyerProtection | ClickedChangePage | ClickedChangePaymentMethod | ClickedChangeShippingAddress | ClickedChangeShippingMethod | ClickedCollectionGroup | ClickedCreateAlert | ClickedDeliveryMethod | ClickedEditArtwork | ClickedExpansionToggle | ClickedFairCard | ClickedFairGroup | ClickedGalleryGroup | ClickedLoadMore | ClickedMainArtworkGrid | ClickedNavigationTab | ClickedOfferOption | ClickedOnArtworkShippingWeight | ClickedOnArtworkShippingUnitsDropdown | ClickedOnFramedMeasurements | ClickedOnFramedMeasurementsDropdown | ClickedOnSubmitOrder | ClickedSnooze | ClickedPartnerCard | ClickedPartnerLink | ClickedPaymentMethod | ClickedPaymentDetails | CheckedAccountBalance | ClickedPromoSpace | ClickedRegisterToBid | ClickedSelectShippingOption | ClickedShippingAddress | ClickedShowGroup | ClickedShowMore | ClickedVerifyIdentity | ClickedViewingRoomCard | ClickedOfferActions | ClickedOrderPage | CommercialFilterParamsChanged | CompletedOnboarding | ConfirmBid | ConfirmRegistrationPageview | ConsignmentArtistFailed | ConsignmentSubmitted | DeleteCollectedArtwork | DeletedSavedSearch | EditCollectedArtwork | EditedSavedSearch | EnterLiveAuction | ExperimentViewed | FocusedOnConversationMessageInput | FocusedOnSearchInput | FocusedOnPriceDatabaseSearchInput | FollowEvents | Impression | MaxBidSelected | OnboardingUserInputData | PriceDatabaseFilterParamsChanged | PromptForReview | RegistrationPageView | RegistrationSubmitted | ResetYourPassword | SaleScreenLoadComplete | Screen | SearchedPriceDatabase | SearchedWithNoResults | SelectedItemFromSearch | SelectedItemFromPriceDatabaseSearch | SentConversationMessage | SentRequestPriceEstimate | Share | StartedOnboarding | SubmitAnotherArtwork | SuccessfullyLoggedIn | TappedArticleGroup | TappedArtistGroup | TappedArtistSeriesGroup | TappedArtworkGroup | TappedAuctionGroup | TappedAuctionResultGroup | TappedBid | TappedBuyNow | TappedCollectedArtwork | TappedCollectedArtworkImages | TappedCollectionGroup | TappedConsign | TappedContactGallery | TappedCreateAlert | TappedExploreGroup | TappedFairCard | TappedFairGroup | TappedInboxConversation | TappedInfoBubble | TappedLink | TappedNavigationTab | TappedMainArtworkGrid | TappedMakeOffer | TappedPartnerCard | TappedPromoSpace | TappedRequestPriceEstimate | TappedSell | TappedSellArtwork | TappedShowMore | TappedLearnMore | TappedSkip | TappedTabBar | TappedVerifyIdentity | TappedViewingRoomCard | TappedViewingRoomGroup | TappedViewOffer | TimeOnPage | ToggledAccordion | ToggledNotification | ToggledSavedSearch | UploadPhotosCompleted | ViewArtworkMyCollection;
|
|
26
26
|
/**
|
|
27
27
|
* The top-level actions an Event describes.
|
|
28
28
|
*
|
|
@@ -217,6 +217,10 @@ export declare enum ActionType {
|
|
|
217
217
|
/**
|
|
218
218
|
* Corresponds to {@link ClickedPaymentDetails}
|
|
219
219
|
*/
|
|
220
|
+
checkedAccountBalance = "checkedAccountBalance",
|
|
221
|
+
/**
|
|
222
|
+
* Corresponds to {@link CheckedAccountBalance}
|
|
223
|
+
*/
|
|
220
224
|
clickedPromoSpace = "clickedPromoSpace",
|
|
221
225
|
/**
|
|
222
226
|
* Corresponds to {@link ClickedRegisterToBid}
|
|
@@ -266,6 +270,10 @@ export declare enum ActionType {
|
|
|
266
270
|
* Corresponds to {@link CommercialFilterParamsChanged}
|
|
267
271
|
*/
|
|
268
272
|
commercialFilterParamsChanged = "commercialFilterParamsChanged",
|
|
273
|
+
/**
|
|
274
|
+
* Corresponds to {@link CompletedOnboarding}
|
|
275
|
+
*/
|
|
276
|
+
completedOnboarding = "completedOnboarding",
|
|
269
277
|
/**
|
|
270
278
|
* Corresponds to {@link ConfirmBid}
|
|
271
279
|
*/
|
|
@@ -418,6 +426,10 @@ export declare enum ActionType {
|
|
|
418
426
|
* Corresponds to {@link ExperimentViewed}
|
|
419
427
|
*/
|
|
420
428
|
experimentViewed = "experimentViewed",
|
|
429
|
+
/**
|
|
430
|
+
* Corresponds to {@link SuccessfullyLoggedIn}
|
|
431
|
+
*/
|
|
432
|
+
startedOnboarding = "startedOnboarding",
|
|
421
433
|
/**
|
|
422
434
|
* Corresponds to {@link SubmitAnotherArtwork}
|
|
423
435
|
*/
|
|
@@ -66,6 +66,7 @@ exports.ActionType = ActionType;
|
|
|
66
66
|
ActionType["clickedPlayVideo"] = "clickedPlayVideo";
|
|
67
67
|
ActionType["clickedPaymentMethod"] = "clickedPaymentMethod";
|
|
68
68
|
ActionType["clickedPaymentDetails"] = "clickedPaymentDetails";
|
|
69
|
+
ActionType["checkedAccountBalance"] = "checkedAccountBalance";
|
|
69
70
|
ActionType["clickedPromoSpace"] = "clickedPromoSpace";
|
|
70
71
|
ActionType["clickedRegisterToBid"] = "clickedRegisterToBid";
|
|
71
72
|
ActionType["clickedSelectShippingOption"] = "clickedSelectShippingOption";
|
|
@@ -79,6 +80,7 @@ exports.ActionType = ActionType;
|
|
|
79
80
|
ActionType["clickedOfferActions"] = "clickedOfferActions";
|
|
80
81
|
ActionType["clickedOrderPage"] = "clickedOrderPage";
|
|
81
82
|
ActionType["commercialFilterParamsChanged"] = "commercialFilterParamsChanged";
|
|
83
|
+
ActionType["completedOnboarding"] = "completedOnboarding";
|
|
82
84
|
ActionType["confirmBid"] = "confirmBid";
|
|
83
85
|
ActionType["confirmRegistrationPageview"] = "confirmRegistrationPageview";
|
|
84
86
|
ActionType["consignmentArtistFailed"] = "consignmentArtistFailed";
|
|
@@ -117,6 +119,7 @@ exports.ActionType = ActionType;
|
|
|
117
119
|
ActionType["sentRequestPriceEstimate"] = "sentRequestPriceEstimate";
|
|
118
120
|
ActionType["share"] = "share";
|
|
119
121
|
ActionType["experimentViewed"] = "experimentViewed";
|
|
122
|
+
ActionType["startedOnboarding"] = "startedOnboarding";
|
|
120
123
|
ActionType["submitAnotherArtwork"] = "submitAnotherArtwork";
|
|
121
124
|
ActionType["successfullyLoggedIn"] = "successfullyLoggedIn";
|
|
122
125
|
ActionType["tappedArticleGroup"] = "tappedArticleGroup";
|
|
@@ -104,10 +104,10 @@ export declare enum ContextModule {
|
|
|
104
104
|
newWorksByArtistsYouFollowRail = "newWorksByArtistsYouFollowRail",
|
|
105
105
|
newWorksForYouRail = "newWorksForYouRail",
|
|
106
106
|
newWorksByGalleriesYouFollowRail = "newWorksByGalleriesYouFollowRail",
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
onboardingGenes = "onboardingGenes",
|
|
107
|
+
onboardingActivity = "onboardingActivity",
|
|
108
|
+
onboardingCollectorLevel = "onboardingCollectorLevel",
|
|
110
109
|
onboardingInterests = "onboardingInterests",
|
|
110
|
+
onboardingFlow = "onboardingFlow",
|
|
111
111
|
ordersAccept = "ordersAccept",
|
|
112
112
|
ordersCounter = "ordersCounter",
|
|
113
113
|
ordersNewPayment = "ordersNewPayment",
|
|
@@ -174,4 +174,4 @@ export declare enum ContextModule {
|
|
|
174
174
|
/**
|
|
175
175
|
* Limited ContextModules available for web authentication events
|
|
176
176
|
*/
|
|
177
|
-
export declare type AuthContextModule = ContextModule.aboutTheWork | ContextModule.artistHeader | ContextModule.artistRecentlySold | ContextModule.artistSeriesRail | ContextModule.artistSeriesTab | ContextModule.artistsTab | ContextModule.artistsToFollowRail | ContextModule.artworkGrid | ContextModule.artworkImage | ContextModule.artworkSidebar | ContextModule.artworksTab | ContextModule.associatedViewingRoom | ContextModule.auctionHome | ContextModule.auctionLots | ContextModule.auctionRail | ContextModule.auctionResult | ContextModule.auctionResults | ContextModule.auctionResultComparableWorks | ContextModule.auctionSidebar | ContextModule.auctionsInfo | ContextModule.auctionTab | ContextModule.bannerPopUp | ContextModule.boothsTab | ContextModule.browseFair | ContextModule.categoryRail | ContextModule.collectionDescription | ContextModule.consignSubmissionFlow | ContextModule.currentShowsRail | ContextModule.fairInfo | ContextModule.fairOrganizerHeader | ContextModule.fairRail | ContextModule.fairsHeader | ContextModule.fairTab | ContextModule.featuredArtists | ContextModule.featuredArtistsRail | ContextModule.featuredGalleriesRail | ContextModule.footer | ContextModule.galleryTab | ContextModule.geneHeader | ContextModule.header | ContextModule.inquiry | ContextModule.intextTooltip | ContextModule.liveAuctionRoom | ContextModule.liveAuctionsRail | ContextModule.mainCarousel | ContextModule.minimalCTABanner | ContextModule.myCollectionAddArtworkAddArtist | ContextModule.otherWorksByArtistRail | ContextModule.otherWorksFromPartnerRail | ContextModule.otherWorksFromShowRail | ContextModule.otherWorksInAuctionRail | ContextModule.partnerHeader | ContextModule.pastFairs | ContextModule.popularArtistsRail | ContextModule.popUpModal | ContextModule.presentingFair | ContextModule.presentingPartner | ContextModule.priceEstimate | ContextModule.recentlyViewedRail | ContextModule.recommendedArtistsRail | ContextModule.relatedArtistsRail | ContextModule.relatedWorksRail | ContextModule.saveWorksCTA | ContextModule.showHeader | ContextModule.showInfo | ContextModule.showTab | ContextModule.standoutLots | ContextModule.tagHeader | ContextModule.topWorksRail | ContextModule.topTab | ContextModule.trendingArtistsRail | ContextModule.trendingLots | ContextModule.viewingRoom | ContextModule.worksByArtistsYouFollowRail | ContextModule.worksByPopularArtistsRail | ContextModule.worksForSaleRail;
|
|
177
|
+
export declare type AuthContextModule = ContextModule.aboutTheWork | ContextModule.artistHeader | ContextModule.artistRecentlySold | ContextModule.artistSeriesRail | ContextModule.artistSeriesTab | ContextModule.artistsTab | ContextModule.artistsToFollowRail | ContextModule.artworkGrid | ContextModule.artworkImage | ContextModule.artworkSidebar | ContextModule.artworksTab | ContextModule.associatedViewingRoom | ContextModule.auctionHome | ContextModule.auctionLots | ContextModule.auctionRail | ContextModule.auctionResult | ContextModule.auctionResults | ContextModule.auctionResultComparableWorks | ContextModule.auctionSidebar | ContextModule.auctionsInfo | ContextModule.auctionTab | ContextModule.bannerPopUp | ContextModule.boothsTab | ContextModule.browseFair | ContextModule.categoryRail | ContextModule.collectionDescription | ContextModule.consignSubmissionFlow | ContextModule.currentShowsRail | ContextModule.fairInfo | ContextModule.fairOrganizerHeader | ContextModule.fairRail | ContextModule.fairsHeader | ContextModule.fairTab | ContextModule.featuredArtists | ContextModule.featuredArtistsRail | ContextModule.featuredGalleriesRail | ContextModule.footer | ContextModule.galleryTab | ContextModule.geneHeader | ContextModule.header | ContextModule.inquiry | ContextModule.intextTooltip | ContextModule.liveAuctionRoom | ContextModule.liveAuctionsRail | ContextModule.mainCarousel | ContextModule.minimalCTABanner | ContextModule.myCollectionAddArtworkAddArtist | ContextModule.onboardingActivity | ContextModule.onboardingCollectorLevel | ContextModule.onboardingInterests | ContextModule.onboardingFlow | ContextModule.otherWorksByArtistRail | ContextModule.otherWorksFromPartnerRail | ContextModule.otherWorksFromShowRail | ContextModule.otherWorksInAuctionRail | ContextModule.partnerHeader | ContextModule.pastFairs | ContextModule.popularArtistsRail | ContextModule.popUpModal | ContextModule.presentingFair | ContextModule.presentingPartner | ContextModule.priceEstimate | ContextModule.recentlyViewedRail | ContextModule.recommendedArtistsRail | ContextModule.relatedArtistsRail | ContextModule.relatedWorksRail | ContextModule.saveWorksCTA | ContextModule.showHeader | ContextModule.showInfo | ContextModule.showTab | ContextModule.standoutLots | ContextModule.tagHeader | ContextModule.topWorksRail | ContextModule.topTab | ContextModule.trendingArtistsRail | ContextModule.trendingLots | ContextModule.viewingRoom | ContextModule.worksByArtistsYouFollowRail | ContextModule.worksByPopularArtistsRail | ContextModule.worksForSaleRail;
|
|
@@ -118,10 +118,10 @@ exports.ContextModule = ContextModule;
|
|
|
118
118
|
ContextModule["newWorksByArtistsYouFollowRail"] = "newWorksByArtistsYouFollowRail";
|
|
119
119
|
ContextModule["newWorksForYouRail"] = "newWorksForYouRail";
|
|
120
120
|
ContextModule["newWorksByGalleriesYouFollowRail"] = "newWorksByGalleriesYouFollowRail";
|
|
121
|
-
ContextModule["
|
|
122
|
-
ContextModule["
|
|
123
|
-
ContextModule["onboardingGenes"] = "onboardingGenes";
|
|
121
|
+
ContextModule["onboardingActivity"] = "onboardingActivity";
|
|
122
|
+
ContextModule["onboardingCollectorLevel"] = "onboardingCollectorLevel";
|
|
124
123
|
ContextModule["onboardingInterests"] = "onboardingInterests";
|
|
124
|
+
ContextModule["onboardingFlow"] = "onboardingFlow";
|
|
125
125
|
ContextModule["ordersAccept"] = "ordersAccept";
|
|
126
126
|
ContextModule["ordersCounter"] = "ordersCounter";
|
|
127
127
|
ContextModule["ordersNewPayment"] = "ordersNewPayment";
|