@artsy/cohesion 4.159.0 → 4.161.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 +24 -0
- package/dist/Schema/Events/Folio.d.ts +105 -0
- package/dist/Schema/Events/Folio.js +1 -0
- package/dist/Schema/Events/SavedSearch.d.ts +21 -0
- package/dist/Schema/Events/index.d.ts +27 -2
- package/dist/Schema/Events/index.js +6 -0
- package/dist/Schema/Values/ContextModule.d.ts +1 -0
- package/dist/Schema/Values/ContextModule.js +1 -0
- package/dist/Schema/Values/OwnerType.d.ts +1 -1
- package/dist/Schema/index.d.ts +1 -0
- package/dist/Schema/index.js +12 -0
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,27 @@
|
|
|
1
|
+
# v4.161.0 (Thu Dec 21 2023)
|
|
2
|
+
|
|
3
|
+
#### 🚀 Enhancement
|
|
4
|
+
|
|
5
|
+
- Folio tracking [#477](https://github.com/artsy/cohesion/pull/477) ([@louislecluse](https://github.com/louislecluse))
|
|
6
|
+
|
|
7
|
+
#### Authors: 1
|
|
8
|
+
|
|
9
|
+
- [@louislecluse](https://github.com/louislecluse)
|
|
10
|
+
|
|
11
|
+
---
|
|
12
|
+
|
|
13
|
+
# v4.160.0 (Wed Dec 20 2023)
|
|
14
|
+
|
|
15
|
+
#### 🚀 Enhancement
|
|
16
|
+
|
|
17
|
+
- ONYX(ONYX-588): add details for edit alert tracking [#476](https://github.com/artsy/cohesion/pull/476) ([@dariakoko](https://github.com/dariakoko))
|
|
18
|
+
|
|
19
|
+
#### Authors: 1
|
|
20
|
+
|
|
21
|
+
- Daria Kozlova ([@dariakoko](https://github.com/dariakoko))
|
|
22
|
+
|
|
23
|
+
---
|
|
24
|
+
|
|
1
25
|
# v4.159.0 (Fri Dec 08 2023)
|
|
2
26
|
|
|
3
27
|
#### 🚀 Enhancement
|
|
@@ -0,0 +1,105 @@
|
|
|
1
|
+
import { ScreenOwnerType } from "../Values/OwnerType";
|
|
2
|
+
import { ActionType } from ".";
|
|
3
|
+
/**
|
|
4
|
+
* Schema describing Folio related events
|
|
5
|
+
* @packageDocumentation
|
|
6
|
+
*/
|
|
7
|
+
/**
|
|
8
|
+
* A user sends an artwork/show/album from Folio via email
|
|
9
|
+
*
|
|
10
|
+
* This schema describes events sent to Segment from [[SentContent]]
|
|
11
|
+
*
|
|
12
|
+
* @example
|
|
13
|
+
* ```
|
|
14
|
+
* {
|
|
15
|
+
* action: "SentContent",
|
|
16
|
+
* context_screen_owner_type: "artwork",
|
|
17
|
+
* context_screen_owner_id: "id"
|
|
18
|
+
* context_screen_owner_slug: "slug"
|
|
19
|
+
* }
|
|
20
|
+
* ```
|
|
21
|
+
*/
|
|
22
|
+
export interface SentContent {
|
|
23
|
+
action: ActionType.sentContent;
|
|
24
|
+
context_screen_owner_type: ScreenOwnerType;
|
|
25
|
+
context_screen_owner_id?: string;
|
|
26
|
+
context_screen_owner_slug?: string;
|
|
27
|
+
}
|
|
28
|
+
/**
|
|
29
|
+
* A user creates an Album in Folio
|
|
30
|
+
*
|
|
31
|
+
* This schema describes events sent to Segment from [[createdAlbum]]
|
|
32
|
+
*
|
|
33
|
+
* @example
|
|
34
|
+
* ```
|
|
35
|
+
* {
|
|
36
|
+
* action: "createdAlbum",
|
|
37
|
+
* context_screen_owner_type: "artwork",
|
|
38
|
+
* context_screen_owner_id: "id"
|
|
39
|
+
* context_screen_owner_slug: "slug"
|
|
40
|
+
* }
|
|
41
|
+
* ```
|
|
42
|
+
*/
|
|
43
|
+
export interface CreatedAlbum {
|
|
44
|
+
action: ActionType.createdAlbum;
|
|
45
|
+
context_screen_owner_type: ScreenOwnerType;
|
|
46
|
+
context_screen_owner_id?: string;
|
|
47
|
+
context_screen_owner_slug?: string;
|
|
48
|
+
}
|
|
49
|
+
/**
|
|
50
|
+
* A user adds content to an Album
|
|
51
|
+
*
|
|
52
|
+
* This schema describes events sent to Segment from [[addedToAlbum]]
|
|
53
|
+
*
|
|
54
|
+
* @example
|
|
55
|
+
* ```
|
|
56
|
+
* {
|
|
57
|
+
* action: "addedToAlbum",
|
|
58
|
+
* context_screen_owner_type: "artwork",
|
|
59
|
+
* context_screen_owner_id: "id"
|
|
60
|
+
* context_screen_owner_slug: "slug"
|
|
61
|
+
* album_name: "My Album"
|
|
62
|
+
* }
|
|
63
|
+
* ```
|
|
64
|
+
*/
|
|
65
|
+
export interface AddedToAlbum {
|
|
66
|
+
action: ActionType.addedToAlbum;
|
|
67
|
+
context_screen_owner_type: ScreenOwnerType;
|
|
68
|
+
context_screen_owner_id?: string;
|
|
69
|
+
context_screen_owner_slug?: string;
|
|
70
|
+
album_name: string;
|
|
71
|
+
}
|
|
72
|
+
/**
|
|
73
|
+
* A user changes a setting in presentation mode
|
|
74
|
+
*
|
|
75
|
+
* This schema describes events sent to Segment from [[toggledPresentationModeSetting]]
|
|
76
|
+
*
|
|
77
|
+
* @example
|
|
78
|
+
* ```
|
|
79
|
+
* {
|
|
80
|
+
* action: "toggledPresentationModeSetting",
|
|
81
|
+
* label: "Hide Prices"
|
|
82
|
+
* enabled: True
|
|
83
|
+
* }
|
|
84
|
+
* ```
|
|
85
|
+
*/
|
|
86
|
+
export interface ToggledPresentationModeSetting {
|
|
87
|
+
action: ActionType.toggledPresentationModeSetting;
|
|
88
|
+
label: string;
|
|
89
|
+
enabled: boolean;
|
|
90
|
+
}
|
|
91
|
+
/**
|
|
92
|
+
* A user completes Folio offline sync
|
|
93
|
+
*
|
|
94
|
+
* This schema describes events sent to Segment from [[completedOfflineSync]]
|
|
95
|
+
*
|
|
96
|
+
* @example
|
|
97
|
+
* ```
|
|
98
|
+
* {
|
|
99
|
+
* action: "completedOfflineSync"
|
|
100
|
+
* }
|
|
101
|
+
* ```
|
|
102
|
+
*/
|
|
103
|
+
export interface CompletedOfflineSync {
|
|
104
|
+
action: ActionType.completedOfflineSync;
|
|
105
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
"use strict";
|
|
@@ -27,6 +27,25 @@ export interface EditedSavedSearch {
|
|
|
27
27
|
current: string;
|
|
28
28
|
changed: string;
|
|
29
29
|
}
|
|
30
|
+
/**
|
|
31
|
+
* A user edits an Alert from the edit alert screen on an app.
|
|
32
|
+
*
|
|
33
|
+
* This schema describes events sent to Segment from [[editedAlert]]
|
|
34
|
+
*
|
|
35
|
+
* @example
|
|
36
|
+
* ```
|
|
37
|
+
* {
|
|
38
|
+
* action: "editedAlert",
|
|
39
|
+
* context_screen_owner_type: "editAlert",
|
|
40
|
+
* saved_search_id: "58de681f275b2464fcdde097",
|
|
41
|
+
* }
|
|
42
|
+
* ```
|
|
43
|
+
*/
|
|
44
|
+
export interface EditedAlert {
|
|
45
|
+
action: ActionType.editedAlert;
|
|
46
|
+
context_screen_owner_type: ScreenOwnerType;
|
|
47
|
+
saved_search_id?: string;
|
|
48
|
+
}
|
|
30
49
|
/**
|
|
31
50
|
* A user deletes a Saved Search from the edit alert screen on an app.
|
|
32
51
|
*
|
|
@@ -38,6 +57,7 @@ export interface EditedSavedSearch {
|
|
|
38
57
|
* action: "deletedSavedSearch",
|
|
39
58
|
* context_screen_owner_type: "savedSearch",
|
|
40
59
|
* context_screen_owner_id: "58de681f275b2464fcdde097",
|
|
60
|
+
* saved_search_id: "search_id"
|
|
41
61
|
* }
|
|
42
62
|
* ```
|
|
43
63
|
*/
|
|
@@ -45,6 +65,7 @@ export interface DeletedSavedSearch {
|
|
|
45
65
|
action: ActionType.deletedSavedSearch;
|
|
46
66
|
context_screen_owner_type: ScreenOwnerType;
|
|
47
67
|
context_screen_owner_id?: string;
|
|
68
|
+
saved_search_id?: string;
|
|
48
69
|
}
|
|
49
70
|
/**
|
|
50
71
|
* User taps on a suggested saved search pill
|
|
@@ -10,6 +10,7 @@ import { FocusedOnConversationMessageInput, SentConversationMessage, TappedInbox
|
|
|
10
10
|
import { SavedCookieConsentPreferences } from "./CookieConsent";
|
|
11
11
|
import { ExperimentViewed } from "./ExperimentViewed";
|
|
12
12
|
import { AuctionResultsFilterParamsChanged, CommercialFilterParamsChanged, PriceDatabaseFilterParamsChanged, SelectedRecentPriceRange } from "./FilterAndSort";
|
|
13
|
+
import { AddedToAlbum, CompletedOfflineSync, CreatedAlbum, SentContent, ToggledPresentationModeSetting } from "./Folio";
|
|
13
14
|
import { TappedProductCapabilitiesGroup } from "./HomeFeedArtsyOnboarding";
|
|
14
15
|
import { MyCollectionOnboardingCompleted, TappedExploreMyCollection, VisitMyCollection, VisitMyCollectionOnboardingSlide } from "./HomeFeedMyCollectionOnboarding";
|
|
15
16
|
import { Impression } from "./Impression";
|
|
@@ -18,7 +19,7 @@ import { AddCollectedArtwork, DeleteCollectedArtwork, EditCollectedArtwork, Save
|
|
|
18
19
|
import { TappedMyCollectionInsightsMedianAuctionPriceChartCareerHighlight, TappedMyCollectionInsightsMedianAuctionPriceChartCategory, TappedMyCollectionInsightsMedianAuctionPriceChartTimeframe, TappedMyCollectionInsightsMedianAuctionRailItem } from "./MyCollectionInsights";
|
|
19
20
|
import { PromptForReview } from "./PromptForReview";
|
|
20
21
|
import { SearchedReverseImageWithNoResults, SearchedReverseImageWithResults, SelectedArtworkFromReverseImageSearch, TappedPickImageFromLibrary, TappedReverseImageSearch, TappedToggleCameraFlash } from "./ReverseImageSearch";
|
|
21
|
-
import { DeletedSavedSearch, EditedSavedSearch } from "./SavedSearch";
|
|
22
|
+
import { DeletedSavedSearch, EditedAlert, EditedSavedSearch } from "./SavedSearch";
|
|
22
23
|
import { FollowEvents } from "./SavesAndFollows";
|
|
23
24
|
import { AddressAutoCompletionResult, ConsignmentArtistFailed, EditedAutocompletedAddress, FocusedOnPriceDatabaseSearchInput, FocusedOnSearchInput, SearchedPriceDatabase, SearchedWithNoResults, SearchedWithResults, SelectedItemFromAddressAutoCompletion, SelectedItemFromPriceDatabaseSearch, SelectedItemFromSearch, SelectedSearchSuggestionQuickNavigationItem } from "./Search";
|
|
24
25
|
import { Share } from "./Share";
|
|
@@ -33,7 +34,7 @@ import { ViewedVideo } from "./Video";
|
|
|
33
34
|
*
|
|
34
35
|
* Each event describes one ActionType
|
|
35
36
|
*/
|
|
36
|
-
export type Event = AddedArtworkToArtworkList | AddToCalendar | AddCollectedArtwork | AddressAutoCompletionResult | ArtworkDetailsCompleted | AuctionPageView | AuctionResultsFilterParamsChanged | AuthImpression | BidPageView | CreatedAccount | CreatedArtworkList | ClickedActiveBid | ClickedActivityPanelNotificationItem | ClickedActivityPanelTab | ClickedAddFilters | ClickedAddNewShippingAddress | ClickedAddWorksToFair | ClickedAlertsFilters | ClickedAppDownload | ClickedArticleGroup | ClickedArtistGroup | ClickedArtistSeriesGroup | ClickedArtworkGroup | ClickedAuctionGroup | ClickedAuctionResultItem | ClickedBuyerProtection | ClickedChangePage | ClickedChangePaymentMethod | ClickedChangeShippingAddress | ClickedChangeShippingMethod | ClickedCollectionGroup | ClickedCreateAlert | ClickedDeliveryMethod | ClickedEditArtwork | ClickedExpandFilterPanel | ClickedExpansionToggle | ClickedFairCard | ClickedFairGroup | ClickedGalleryGroup | ClickedLoadMore | ClickedMainArtworkGrid | ClickedNavigationTab | ClickedNavBar | ClickedNotificationsBell | ClickedOfferOption | ClickedOnArtworkShippingWeight | ClickedOnArtworkShippingUnitsDropdown | ClickedOnBuyNowCheckbox | ClickedOnFramedMeasurements | ClickedOnFramedMeasurementsDropdown | ClickedOnMakeOfferCheckbox | ClickedOnDuplicateArtwork | ClickedOnPriceDisplayDropdown | ClickedPublish | ClickedOnSubmitOrder | ClickedSnooze | ClickedUploadArtwork | ClickedPartnerCard | ClickedPartnerLink | ClickedPaymentMethod | ClickedPaymentDetails | CheckedAccountBalance | ClickedPromoSpace | ClickedRegisterToBid | ClickedSelectShippingOption | ClickedShippingAddress | ClickedShowGroup | ClickedShowMore | ClickedVerifyIdentity | ClickedViewingRoomCard | ClickedOfferActions | ClickedOrderPage | ClickedOrderSummary | ClickedDismissInquiry | ClickedMarkSpam | ClickedMarkSold | ClickedConversationsFilter | ClickedValidationAddressOptions | ClickedCloseValidationAddressModal | CommercialFilterParamsChanged | CompletedOnboarding | ConfirmBid | ConfirmRegistrationPageview | ConsignmentArtistFailed | ConsignmentSubmitted | ContactInformationCompleted | DeleteCollectedArtwork | DeletedArtworkList | DeletedSavedSearch | EditCollectedArtwork | EditedArtworkList | EditedAutocompletedAddress | EditedSavedSearch | EditedUserProfile | EnterLiveAuction | ErrorMessageViewed | ExperimentViewed | ItemViewed | UploadSizeLimitExceeded | FocusedOnConversationMessageInput | FocusedOnSearchInput | FocusedOnPriceDatabaseSearchInput | FollowEvents | Impression | MaxBidSelected | MyCollectionOnboardingCompleted | OnboardingUserInputData | PriceDatabaseFilterParamsChanged | PromptForReview | RailViewed | ValidationAddressViewed | RegistrationPageView | RegistrationSubmitted | ResetYourPassword | SaleScreenLoadComplete | SaveCollectedArtwork | SavedCookieConsentPreferences | Screen | SearchedPriceDatabase | SearchedReverseImageWithNoResults | SearchedReverseImageWithResults | SearchedWithNoResults | SearchedWithResults | SelectedArtworkFromReverseImageSearch | SelectedItemFromSearch | SelectedItemFromPriceDatabaseSearch | SelectedItemFromAddressAutoCompletion | SelectedRecentPriceRange | SelectedSearchSuggestionQuickNavigationItem | SentConsignmentInquiry | SentConversationMessage | SentRequestPriceEstimate | Share | StartedOnboarding | SubmitAnotherArtwork | SuccessfullyLoggedIn | TappedActivityGroup | TappedArticleGroup | TappedArticleShare | TappedArtistGroup | TappedArtistSeriesGroup | TappedArtworkGroup | TappedAuctionGroup | TappedAuctionResultGroup | TappedBid | TappedBrowseSimilarArtworks | TappedBuyNow | TappedCollectedArtwork | TappedCollectedArtworkImages | TappedCollectionGroup | TappedConsign | TappedContactGallery | TappedConsignmentInquiry | TappedCreateAlert | TappedExploreGroup | TappedExploreMyCollection | TappedFairCard | TappedFairGroup | TappedInboxConversation | TappedInfoBubble | TappedLink | TappedNavigationTab | TappedMainArtworkGrid | TappedMakeOffer | TappedMyCollectionInsightsMedianAuctionRailItem | TappedMyCollectionInsightsMedianAuctionPriceChartCareerHighlight | TappedMyCollectionInsightsMedianAuctionPriceChartCategory | TappedMyCollectionInsightsMedianAuctionPriceChartTimeframe | TappedPartnerCard | TappedPickImageFromLibrary | TappedProductCapabilitiesGroup | TappedPromoSpace | TappedRequestPriceEstimate | TappedReverseImageSearch | TappedSell | TappedSellArtwork | TappedShowMore | TappedLearnMore | TappedSkip | TappedTabBar | TappedToggleCameraFlash | TappedVerifyIdentity | TappedViewingRoomCard | TappedViewingRoomGroup | TappedViewOffer | TimeOnPage | ToggledAccordion | ToggledNotification | ToggledSavedSearch | TooltipViewed | UploadPhotosCompleted | ViewArtworkMyCollection | ViewedArtworkList | ViewedVideo | VisitMyCollection | VisitMyCollectionOnboardingSlide;
|
|
37
|
+
export type Event = AddedArtworkToArtworkList | AddedToAlbum | AddToCalendar | AddCollectedArtwork | AddressAutoCompletionResult | ArtworkDetailsCompleted | AuctionPageView | AuctionResultsFilterParamsChanged | AuthImpression | BidPageView | CreatedAccount | CreatedArtworkList | ClickedActiveBid | ClickedActivityPanelNotificationItem | ClickedActivityPanelTab | ClickedAddFilters | ClickedAddNewShippingAddress | ClickedAddWorksToFair | ClickedAlertsFilters | ClickedAppDownload | ClickedArticleGroup | ClickedArtistGroup | ClickedArtistSeriesGroup | ClickedArtworkGroup | ClickedAuctionGroup | ClickedAuctionResultItem | ClickedBuyerProtection | ClickedChangePage | ClickedChangePaymentMethod | ClickedChangeShippingAddress | ClickedChangeShippingMethod | ClickedCollectionGroup | ClickedCreateAlert | ClickedDeliveryMethod | ClickedEditArtwork | ClickedExpandFilterPanel | ClickedExpansionToggle | ClickedFairCard | ClickedFairGroup | ClickedGalleryGroup | ClickedLoadMore | ClickedMainArtworkGrid | ClickedNavigationTab | ClickedNavBar | ClickedNotificationsBell | ClickedOfferOption | ClickedOnArtworkShippingWeight | ClickedOnArtworkShippingUnitsDropdown | ClickedOnBuyNowCheckbox | ClickedOnFramedMeasurements | ClickedOnFramedMeasurementsDropdown | ClickedOnMakeOfferCheckbox | ClickedOnDuplicateArtwork | ClickedOnPriceDisplayDropdown | ClickedPublish | ClickedOnSubmitOrder | ClickedSnooze | ClickedUploadArtwork | ClickedPartnerCard | ClickedPartnerLink | ClickedPaymentMethod | ClickedPaymentDetails | CheckedAccountBalance | ClickedPromoSpace | ClickedRegisterToBid | ClickedSelectShippingOption | ClickedShippingAddress | ClickedShowGroup | ClickedShowMore | ClickedVerifyIdentity | ClickedViewingRoomCard | ClickedOfferActions | ClickedOrderPage | ClickedOrderSummary | ClickedDismissInquiry | ClickedMarkSpam | ClickedMarkSold | ClickedConversationsFilter | ClickedValidationAddressOptions | ClickedCloseValidationAddressModal | CommercialFilterParamsChanged | CompletedOfflineSync | CompletedOnboarding | ConfirmBid | ConfirmRegistrationPageview | ConsignmentArtistFailed | ConsignmentSubmitted | ContactInformationCompleted | CreatedAlbum | DeleteCollectedArtwork | EditedAlert | DeletedArtworkList | DeletedSavedSearch | EditCollectedArtwork | EditedArtworkList | EditedAutocompletedAddress | EditedSavedSearch | EditedUserProfile | EnterLiveAuction | ErrorMessageViewed | ExperimentViewed | ItemViewed | UploadSizeLimitExceeded | FocusedOnConversationMessageInput | FocusedOnSearchInput | FocusedOnPriceDatabaseSearchInput | FollowEvents | Impression | MaxBidSelected | MyCollectionOnboardingCompleted | OnboardingUserInputData | PriceDatabaseFilterParamsChanged | PromptForReview | RailViewed | ValidationAddressViewed | RegistrationPageView | RegistrationSubmitted | ResetYourPassword | SaleScreenLoadComplete | SaveCollectedArtwork | SavedCookieConsentPreferences | Screen | SearchedPriceDatabase | SearchedReverseImageWithNoResults | SearchedReverseImageWithResults | SearchedWithNoResults | SearchedWithResults | SelectedArtworkFromReverseImageSearch | SelectedItemFromSearch | SelectedItemFromPriceDatabaseSearch | SelectedItemFromAddressAutoCompletion | SelectedRecentPriceRange | SelectedSearchSuggestionQuickNavigationItem | SentContent | SentConsignmentInquiry | SentConversationMessage | SentRequestPriceEstimate | Share | StartedOnboarding | SubmitAnotherArtwork | SuccessfullyLoggedIn | TappedActivityGroup | TappedArticleGroup | TappedArticleShare | TappedArtistGroup | TappedArtistSeriesGroup | TappedArtworkGroup | TappedAuctionGroup | TappedAuctionResultGroup | TappedBid | TappedBrowseSimilarArtworks | TappedBuyNow | TappedCollectedArtwork | TappedCollectedArtworkImages | TappedCollectionGroup | TappedConsign | TappedContactGallery | TappedConsignmentInquiry | TappedCreateAlert | TappedExploreGroup | TappedExploreMyCollection | TappedFairCard | TappedFairGroup | TappedInboxConversation | TappedInfoBubble | TappedLink | TappedNavigationTab | TappedMainArtworkGrid | TappedMakeOffer | TappedMyCollectionInsightsMedianAuctionRailItem | TappedMyCollectionInsightsMedianAuctionPriceChartCareerHighlight | TappedMyCollectionInsightsMedianAuctionPriceChartCategory | TappedMyCollectionInsightsMedianAuctionPriceChartTimeframe | TappedPartnerCard | TappedPickImageFromLibrary | TappedProductCapabilitiesGroup | TappedPromoSpace | TappedRequestPriceEstimate | TappedReverseImageSearch | TappedSell | TappedSellArtwork | TappedShowMore | TappedLearnMore | TappedSkip | TappedTabBar | TappedToggleCameraFlash | TappedVerifyIdentity | TappedViewingRoomCard | TappedViewingRoomGroup | TappedViewOffer | TimeOnPage | ToggledAccordion | ToggledNotification | ToggledPresentationModeSetting | ToggledSavedSearch | TooltipViewed | UploadPhotosCompleted | ViewArtworkMyCollection | ViewedArtworkList | ViewedVideo | VisitMyCollection | VisitMyCollectionOnboardingSlide;
|
|
37
38
|
/**
|
|
38
39
|
* The top-level actions an Event describes.
|
|
39
40
|
*
|
|
@@ -44,6 +45,10 @@ export declare enum ActionType {
|
|
|
44
45
|
* Corresponds to {@link AddedArtworkToArtworkList}
|
|
45
46
|
*/
|
|
46
47
|
addedArtworkToArtworkList = "addedArtworkToArtworkList",
|
|
48
|
+
/**
|
|
49
|
+
* Corresponds to {@link AddedToAlbum}
|
|
50
|
+
*/
|
|
51
|
+
addedToAlbum = "addedToAlbum",
|
|
47
52
|
/**
|
|
48
53
|
* Corresponds to {@link AddArtworkDetails}
|
|
49
54
|
*/
|
|
@@ -392,6 +397,10 @@ export declare enum ActionType {
|
|
|
392
397
|
* Corresponds to {@link CommercialFilterParamsChanged}
|
|
393
398
|
*/
|
|
394
399
|
commercialFilterParamsChanged = "commercialFilterParamsChanged",
|
|
400
|
+
/**
|
|
401
|
+
* Corresponds to {@link CompletedOfflineSync}
|
|
402
|
+
*/
|
|
403
|
+
completedOfflineSync = "completedOfflineSync",
|
|
395
404
|
/**
|
|
396
405
|
* Corresponds to {@link CompletedOnboarding}
|
|
397
406
|
*/
|
|
@@ -420,6 +429,10 @@ export declare enum ActionType {
|
|
|
420
429
|
* Corresponds to {@link ContactInformationCompleted}
|
|
421
430
|
*/
|
|
422
431
|
contactInformationCompleted = "contactInformationCompleted",
|
|
432
|
+
/**
|
|
433
|
+
* Corresponds to {@link CreatedAlbum}
|
|
434
|
+
*/
|
|
435
|
+
createdAlbum = "createdAlbum",
|
|
423
436
|
/**
|
|
424
437
|
* Corresponds to {@link CreatedAccount}
|
|
425
438
|
*/
|
|
@@ -452,6 +465,10 @@ export declare enum ActionType {
|
|
|
452
465
|
* Corresponds to {@link EditedArtworkList}
|
|
453
466
|
*/
|
|
454
467
|
editedArtworkList = "editedArtworkList",
|
|
468
|
+
/**
|
|
469
|
+
* Corresponds to {@link editedAlert}
|
|
470
|
+
*/
|
|
471
|
+
editedAlert = "editedAlert",
|
|
455
472
|
/**
|
|
456
473
|
* Corresponds to {@link EditedSavedSearch}
|
|
457
474
|
*/
|
|
@@ -576,6 +593,10 @@ export declare enum ActionType {
|
|
|
576
593
|
* Corresponds to {@link SelectedSearchSuggestionQuickNavigationItem}
|
|
577
594
|
*/
|
|
578
595
|
selectedSearchSuggestionQuickNavigationItem = "selectedSearchSuggestionQuickNavigationItem",
|
|
596
|
+
/**
|
|
597
|
+
* Corresponds to {@link SentContent}
|
|
598
|
+
*/
|
|
599
|
+
sentContent = "sentContent",
|
|
579
600
|
/**
|
|
580
601
|
* Corresponds to {@link SearchedPriceDatabase}
|
|
581
602
|
*/
|
|
@@ -904,6 +925,10 @@ export declare enum ActionType {
|
|
|
904
925
|
* Corresponds to {@link ToggledNotification}
|
|
905
926
|
*/
|
|
906
927
|
toggledNotification = "toggledNotification",
|
|
928
|
+
/**
|
|
929
|
+
* Corresponds to {@link ToggledPresentationModeSetting}
|
|
930
|
+
*/
|
|
931
|
+
toggledPresentationModeSetting = "toggledPresentationModeSetting",
|
|
907
932
|
/**
|
|
908
933
|
* Corresponds to {@link ToggledSavedSearch}
|
|
909
934
|
*/
|
|
@@ -21,6 +21,7 @@ exports.ActionType = ActionType;
|
|
|
21
21
|
|
|
22
22
|
(function (ActionType) {
|
|
23
23
|
ActionType["addedArtworkToArtworkList"] = "addedArtworkToArtworkList";
|
|
24
|
+
ActionType["addedToAlbum"] = "addedToAlbum";
|
|
24
25
|
ActionType["addArtworkDetails"] = "addArtworkDetails";
|
|
25
26
|
ActionType["addCollectedArtwork"] = "addCollectedArtwork";
|
|
26
27
|
ActionType["addressAutoCompletionResult"] = "addressAutoCompletionResult";
|
|
@@ -108,6 +109,7 @@ exports.ActionType = ActionType;
|
|
|
108
109
|
ActionType["clickedGene"] = "clickedGene";
|
|
109
110
|
ActionType["clickedHighlightAchievement"] = "clickedHighlightAchievement";
|
|
110
111
|
ActionType["commercialFilterParamsChanged"] = "commercialFilterParamsChanged";
|
|
112
|
+
ActionType["completedOfflineSync"] = "completedOfflineSync";
|
|
111
113
|
ActionType["completedOnboarding"] = "completedOnboarding";
|
|
112
114
|
ActionType["confirmBid"] = "confirmBid";
|
|
113
115
|
ActionType["confirmRegistrationPageview"] = "confirmRegistrationPageview";
|
|
@@ -115,6 +117,7 @@ exports.ActionType = ActionType;
|
|
|
115
117
|
ActionType["consignmentSubmitted"] = "consignmentSubmitted";
|
|
116
118
|
ActionType["contactGallery"] = "contactGallery";
|
|
117
119
|
ActionType["contactInformationCompleted"] = "contactInformationCompleted";
|
|
120
|
+
ActionType["createdAlbum"] = "createdAlbum";
|
|
118
121
|
ActionType["createdAccount"] = "createdAccount";
|
|
119
122
|
ActionType["createdArtworkList"] = "createdArtworkList";
|
|
120
123
|
ActionType["deleteCollectedArtwork"] = "deleteCollectedArtwork";
|
|
@@ -123,6 +126,7 @@ exports.ActionType = ActionType;
|
|
|
123
126
|
ActionType["editCollectedArtwork"] = "editCollectedArtwork";
|
|
124
127
|
ActionType["editedAutocompletedAddress"] = "editedAutocompletedAddress";
|
|
125
128
|
ActionType["editedArtworkList"] = "editedArtworkList";
|
|
129
|
+
ActionType["editedAlert"] = "editedAlert";
|
|
126
130
|
ActionType["editedSavedSearch"] = "editedSavedSearch";
|
|
127
131
|
ActionType["editedUserProfile"] = "editedUserProfile";
|
|
128
132
|
ActionType["enterLiveAuction"] = "enterLiveAuction";
|
|
@@ -154,6 +158,7 @@ exports.ActionType = ActionType;
|
|
|
154
158
|
ActionType["savedCookieConsentPreferences"] = "savedCookieConsentPreferences";
|
|
155
159
|
ActionType["screen"] = "screen";
|
|
156
160
|
ActionType["selectedSearchSuggestionQuickNavigationItem"] = "selectedSearchSuggestionQuickNavigationItem";
|
|
161
|
+
ActionType["sentContent"] = "sentContent";
|
|
157
162
|
ActionType["searchedPriceDatabase"] = "searchedPriceDatabase";
|
|
158
163
|
ActionType["searchedReverseImageWithNoResults"] = "searchedReverseImageWithNoResults";
|
|
159
164
|
ActionType["searchedReverseImageWithResults"] = "searchedReverseImageWithResults";
|
|
@@ -236,6 +241,7 @@ exports.ActionType = ActionType;
|
|
|
236
241
|
ActionType["timeOnPage"] = "timeOnPage";
|
|
237
242
|
ActionType["toggledAccordion"] = "toggledAccordion";
|
|
238
243
|
ActionType["toggledNotification"] = "toggledNotification";
|
|
244
|
+
ActionType["toggledPresentationModeSetting"] = "toggledPresentationModeSetting";
|
|
239
245
|
ActionType["toggledSavedSearch"] = "toggledSavedSearch";
|
|
240
246
|
ActionType["tooltipViewed"] = "tooltipViewed";
|
|
241
247
|
ActionType["unfollowedArtist"] = "unfollowedArtist";
|
|
@@ -76,6 +76,7 @@ export declare enum ContextModule {
|
|
|
76
76
|
currentAuctions = "currentAuctions",
|
|
77
77
|
currentShowsRail = "currentShowsRail",
|
|
78
78
|
doMoreOnArtsy = "doMoreOnArtsy",
|
|
79
|
+
editAlert = "editAlert",
|
|
79
80
|
exhibitorsTab = "exhibitorsTab",
|
|
80
81
|
fairCard = "fairCard",
|
|
81
82
|
fairHome = "fairHome",
|
|
@@ -90,6 +90,7 @@ exports.ContextModule = ContextModule;
|
|
|
90
90
|
ContextModule["currentAuctions"] = "currentAuctions";
|
|
91
91
|
ContextModule["currentShowsRail"] = "currentShowsRail";
|
|
92
92
|
ContextModule["doMoreOnArtsy"] = "doMoreOnArtsy";
|
|
93
|
+
ContextModule["editAlert"] = "editAlert";
|
|
93
94
|
ContextModule["exhibitorsTab"] = "exhibitorsTab";
|
|
94
95
|
ContextModule["fairCard"] = "fairCard";
|
|
95
96
|
ContextModule["fairHome"] = "fairHome";
|
|
@@ -104,7 +104,7 @@ export declare enum OwnerType {
|
|
|
104
104
|
/**
|
|
105
105
|
* Owner types available in iOS/Android
|
|
106
106
|
*/
|
|
107
|
-
export type ScreenOwnerType = OwnerType.activities | OwnerType.allArtistSeries | OwnerType.alerts | OwnerType.alertDetails | OwnerType.alertConfirmation | OwnerType.alertFilters | OwnerType.article | OwnerType.articles | OwnerType.artist | OwnerType.artistAuctionResults | OwnerType.artistSeries | OwnerType.artwork | OwnerType.artworkPriceFilter | OwnerType.artworkRecommendations | OwnerType.auctionResult | OwnerType.auctionResultsForArtistsYouFollow | OwnerType.auctions | OwnerType.cityGuideGuide | OwnerType.cityGuideMap | OwnerType.cityPicker | OwnerType.collection | OwnerType.consign | OwnerType.consignmentFlow | OwnerType.consignmentInquiry | OwnerType.consignmentSubmission | OwnerType.conversation | OwnerType.conversationMakeOfferConfirmArtwork | OwnerType.createAlert | OwnerType.editProfile | OwnerType.explore | OwnerType.fair | OwnerType.fairArtworks | OwnerType.galleriesForYou | OwnerType.gene | OwnerType.home | OwnerType.inbox | OwnerType.inboxBids | OwnerType.inboxConversation | OwnerType.inboxInquiries | OwnerType.lotsByArtistsYouFollow | OwnerType.myCollection | OwnerType.myCollectionAddArtworkArtist | OwnerType.myCollectionArtwork | OwnerType.myCollectionArtwork | OwnerType.myCollectionArtworkAbout | OwnerType.myCollectionArtworkInsights | OwnerType.myCollectionInsights | OwnerType.myCollectionInsightsMedianAuctionPrice | OwnerType.myCollectionOnboarding | OwnerType.newWorksForYou | OwnerType.newWorksFromGalleriesYouFollow | OwnerType.onboarding | OwnerType.partner | OwnerType.priceDatabase | OwnerType.profile | OwnerType.recentlyViewed | OwnerType.reverseImageSearch | OwnerType.sale | OwnerType.saleInformation | OwnerType.savedSearch | OwnerType.savedSearches | OwnerType.saves | OwnerType.savesAndFollows | OwnerType.search | OwnerType.sell | OwnerType.show | OwnerType.shows | OwnerType.similarToRecentlyViewed | OwnerType.tag | OwnerType.upcomingAuctions | OwnerType.viewingRoom | OwnerType.viewingRoomArtworkPage | OwnerType.viewingRoomArtworks | OwnerType.viewingRoomList | OwnerType.worksForYou;
|
|
107
|
+
export type ScreenOwnerType = OwnerType.activities | OwnerType.allArtistSeries | OwnerType.alerts | OwnerType.alertDetails | OwnerType.alertConfirmation | OwnerType.alertFilters | OwnerType.article | OwnerType.articles | OwnerType.artist | OwnerType.artistAuctionResults | OwnerType.artistSeries | OwnerType.artwork | OwnerType.artworkPriceFilter | OwnerType.artworkRecommendations | OwnerType.auctionResult | OwnerType.auctionResultsForArtistsYouFollow | OwnerType.auctions | OwnerType.cityGuideGuide | OwnerType.cityGuideMap | OwnerType.cityPicker | OwnerType.collection | OwnerType.consign | OwnerType.consignmentFlow | OwnerType.consignmentInquiry | OwnerType.consignmentSubmission | OwnerType.conversation | OwnerType.conversationMakeOfferConfirmArtwork | OwnerType.createAlert | OwnerType.editAlert | OwnerType.editProfile | OwnerType.explore | OwnerType.fair | OwnerType.fairArtworks | OwnerType.galleriesForYou | OwnerType.gene | OwnerType.home | OwnerType.inbox | OwnerType.inboxBids | OwnerType.inboxConversation | OwnerType.inboxInquiries | OwnerType.lotsByArtistsYouFollow | OwnerType.myCollection | OwnerType.myCollectionAddArtworkArtist | OwnerType.myCollectionArtwork | OwnerType.myCollectionArtwork | OwnerType.myCollectionArtworkAbout | OwnerType.myCollectionArtworkInsights | OwnerType.myCollectionInsights | OwnerType.myCollectionInsightsMedianAuctionPrice | OwnerType.myCollectionOnboarding | OwnerType.newWorksForYou | OwnerType.newWorksFromGalleriesYouFollow | OwnerType.onboarding | OwnerType.partner | OwnerType.priceDatabase | OwnerType.profile | OwnerType.recentlyViewed | OwnerType.reverseImageSearch | OwnerType.sale | OwnerType.saleInformation | OwnerType.savedSearch | OwnerType.savedSearches | OwnerType.saves | OwnerType.savesAndFollows | OwnerType.search | OwnerType.sell | OwnerType.show | OwnerType.shows | OwnerType.similarToRecentlyViewed | OwnerType.tag | OwnerType.upcomingAuctions | OwnerType.viewingRoom | OwnerType.viewingRoomArtworkPage | OwnerType.viewingRoomArtworks | OwnerType.viewingRoomList | OwnerType.worksForYou;
|
|
108
108
|
/**
|
|
109
109
|
* Owner types available in web/mobile web
|
|
110
110
|
*/
|
package/dist/Schema/index.d.ts
CHANGED
|
@@ -7,6 +7,7 @@ export * from "./Events/CollectorProfile";
|
|
|
7
7
|
export * from "./Events/Conversations";
|
|
8
8
|
export * from "./Events/ExperimentViewed";
|
|
9
9
|
export * from "./Events/FilterAndSort";
|
|
10
|
+
export * from "./Events/Folio";
|
|
10
11
|
export * from "./Events/HomeFeedArtsyOnboarding";
|
|
11
12
|
export * from "./Events/Impression";
|
|
12
13
|
export * from "./Events/ImpressionTracking";
|
package/dist/Schema/index.js
CHANGED
|
@@ -112,6 +112,18 @@ Object.keys(_FilterAndSort).forEach(function (key) {
|
|
|
112
112
|
});
|
|
113
113
|
});
|
|
114
114
|
|
|
115
|
+
var _Folio = require("./Events/Folio");
|
|
116
|
+
|
|
117
|
+
Object.keys(_Folio).forEach(function (key) {
|
|
118
|
+
if (key === "default" || key === "__esModule") return;
|
|
119
|
+
Object.defineProperty(exports, key, {
|
|
120
|
+
enumerable: true,
|
|
121
|
+
get: function get() {
|
|
122
|
+
return _Folio[key];
|
|
123
|
+
}
|
|
124
|
+
});
|
|
125
|
+
});
|
|
126
|
+
|
|
115
127
|
var _HomeFeedArtsyOnboarding = require("./Events/HomeFeedArtsyOnboarding");
|
|
116
128
|
|
|
117
129
|
Object.keys(_HomeFeedArtsyOnboarding).forEach(function (key) {
|