@artsy/cohesion 4.160.0 → 4.162.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/index.d.ts +22 -26
- package/dist/Schema/Events/index.js +5 -6
- package/dist/Schema/Values/OwnerType.d.ts +1 -2
- package/dist/Schema/Values/OwnerType.js +0 -1
- package/dist/Schema/index.d.ts +1 -1
- package/dist/Schema/index.js +12 -12
- package/package.json +1 -1
- package/dist/Schema/Events/ReverseImageSearch.d.ts +0 -158
- /package/dist/Schema/Events/{ReverseImageSearch.js → Folio.js} +0 -0
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,27 @@
|
|
|
1
|
+
# v4.162.0 (Thu Jan 04 2024)
|
|
2
|
+
|
|
3
|
+
#### 🚀 Enhancement
|
|
4
|
+
|
|
5
|
+
- chore(ONYX-535): Clean up analytic events related to TinEye (reverse image) search [#478](https://github.com/artsy/cohesion/pull/478) ([@dariakoko](https://github.com/dariakoko))
|
|
6
|
+
|
|
7
|
+
#### Authors: 1
|
|
8
|
+
|
|
9
|
+
- Daria Kozlova ([@dariakoko](https://github.com/dariakoko))
|
|
10
|
+
|
|
11
|
+
---
|
|
12
|
+
|
|
13
|
+
# v4.161.0 (Thu Dec 21 2023)
|
|
14
|
+
|
|
15
|
+
#### 🚀 Enhancement
|
|
16
|
+
|
|
17
|
+
- Folio tracking [#477](https://github.com/artsy/cohesion/pull/477) ([@louislecluse](https://github.com/louislecluse))
|
|
18
|
+
|
|
19
|
+
#### Authors: 1
|
|
20
|
+
|
|
21
|
+
- [@louislecluse](https://github.com/louislecluse)
|
|
22
|
+
|
|
23
|
+
---
|
|
24
|
+
|
|
1
25
|
# v4.160.0 (Wed Dec 20 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
|
+
}
|
|
@@ -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";
|
|
@@ -17,7 +18,6 @@ import { ErrorMessageViewed, ItemViewed, RailViewed, TooltipViewed, ValidationAd
|
|
|
17
18
|
import { AddCollectedArtwork, DeleteCollectedArtwork, EditCollectedArtwork, SaveCollectedArtwork, SentRequestPriceEstimate, TappedCollectedArtwork, TappedCollectedArtworkImages, TappedRequestPriceEstimate } from "./MyCollection";
|
|
18
19
|
import { TappedMyCollectionInsightsMedianAuctionPriceChartCareerHighlight, TappedMyCollectionInsightsMedianAuctionPriceChartCategory, TappedMyCollectionInsightsMedianAuctionPriceChartTimeframe, TappedMyCollectionInsightsMedianAuctionRailItem } from "./MyCollectionInsights";
|
|
19
20
|
import { PromptForReview } from "./PromptForReview";
|
|
20
|
-
import { SearchedReverseImageWithNoResults, SearchedReverseImageWithResults, SelectedArtworkFromReverseImageSearch, TappedPickImageFromLibrary, TappedReverseImageSearch, TappedToggleCameraFlash } from "./ReverseImageSearch";
|
|
21
21
|
import { DeletedSavedSearch, EditedAlert, EditedSavedSearch } from "./SavedSearch";
|
|
22
22
|
import { FollowEvents } from "./SavesAndFollows";
|
|
23
23
|
import { AddressAutoCompletionResult, ConsignmentArtistFailed, EditedAutocompletedAddress, FocusedOnPriceDatabaseSearchInput, FocusedOnSearchInput, SearchedPriceDatabase, SearchedWithNoResults, SearchedWithResults, SelectedItemFromAddressAutoCompletion, SelectedItemFromPriceDatabaseSearch, SelectedItemFromSearch, SelectedSearchSuggestionQuickNavigationItem } from "./Search";
|
|
@@ -33,7 +33,7 @@ import { ViewedVideo } from "./Video";
|
|
|
33
33
|
*
|
|
34
34
|
* Each event describes one ActionType
|
|
35
35
|
*/
|
|
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 | 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 |
|
|
36
|
+
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 | SearchedWithNoResults | SearchedWithResults | 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 | TappedProductCapabilitiesGroup | TappedPromoSpace | TappedRequestPriceEstimate | TappedSell | TappedSellArtwork | TappedShowMore | TappedLearnMore | TappedSkip | TappedTabBar | TappedVerifyIdentity | TappedViewingRoomCard | TappedViewingRoomGroup | TappedViewOffer | TimeOnPage | ToggledAccordion | ToggledNotification | ToggledPresentationModeSetting | ToggledSavedSearch | TooltipViewed | UploadPhotosCompleted | ViewArtworkMyCollection | ViewedArtworkList | ViewedVideo | VisitMyCollection | VisitMyCollectionOnboardingSlide;
|
|
37
37
|
/**
|
|
38
38
|
* The top-level actions an Event describes.
|
|
39
39
|
*
|
|
@@ -44,6 +44,10 @@ export declare enum ActionType {
|
|
|
44
44
|
* Corresponds to {@link AddedArtworkToArtworkList}
|
|
45
45
|
*/
|
|
46
46
|
addedArtworkToArtworkList = "addedArtworkToArtworkList",
|
|
47
|
+
/**
|
|
48
|
+
* Corresponds to {@link AddedToAlbum}
|
|
49
|
+
*/
|
|
50
|
+
addedToAlbum = "addedToAlbum",
|
|
47
51
|
/**
|
|
48
52
|
* Corresponds to {@link AddArtworkDetails}
|
|
49
53
|
*/
|
|
@@ -392,6 +396,10 @@ export declare enum ActionType {
|
|
|
392
396
|
* Corresponds to {@link CommercialFilterParamsChanged}
|
|
393
397
|
*/
|
|
394
398
|
commercialFilterParamsChanged = "commercialFilterParamsChanged",
|
|
399
|
+
/**
|
|
400
|
+
* Corresponds to {@link CompletedOfflineSync}
|
|
401
|
+
*/
|
|
402
|
+
completedOfflineSync = "completedOfflineSync",
|
|
395
403
|
/**
|
|
396
404
|
* Corresponds to {@link CompletedOnboarding}
|
|
397
405
|
*/
|
|
@@ -420,6 +428,10 @@ export declare enum ActionType {
|
|
|
420
428
|
* Corresponds to {@link ContactInformationCompleted}
|
|
421
429
|
*/
|
|
422
430
|
contactInformationCompleted = "contactInformationCompleted",
|
|
431
|
+
/**
|
|
432
|
+
* Corresponds to {@link CreatedAlbum}
|
|
433
|
+
*/
|
|
434
|
+
createdAlbum = "createdAlbum",
|
|
423
435
|
/**
|
|
424
436
|
* Corresponds to {@link CreatedAccount}
|
|
425
437
|
*/
|
|
@@ -581,17 +593,13 @@ export declare enum ActionType {
|
|
|
581
593
|
*/
|
|
582
594
|
selectedSearchSuggestionQuickNavigationItem = "selectedSearchSuggestionQuickNavigationItem",
|
|
583
595
|
/**
|
|
584
|
-
* Corresponds to {@link
|
|
596
|
+
* Corresponds to {@link SentContent}
|
|
585
597
|
*/
|
|
586
|
-
|
|
598
|
+
sentContent = "sentContent",
|
|
587
599
|
/**
|
|
588
|
-
* Corresponds to {@link
|
|
589
|
-
*/
|
|
590
|
-
searchedReverseImageWithNoResults = "searchedReverseImageWithNoResults",
|
|
591
|
-
/**
|
|
592
|
-
* Corresponds to {@link SearchedReverseImageWithResults}
|
|
600
|
+
* Corresponds to {@link SearchedPriceDatabase}
|
|
593
601
|
*/
|
|
594
|
-
|
|
602
|
+
searchedPriceDatabase = "searchedPriceDatabase",
|
|
595
603
|
/**
|
|
596
604
|
* Corresponds to {@link SearchedWithNoResults}
|
|
597
605
|
*/
|
|
@@ -608,10 +616,6 @@ export declare enum ActionType {
|
|
|
608
616
|
* Corresponds to {@link selectArtworkFromGrid}
|
|
609
617
|
*/
|
|
610
618
|
selectArtworkFromGrid = "selectArtworkFromGrid",
|
|
611
|
-
/**
|
|
612
|
-
* Corresponds to {@link SelectedArtworkFromReverseImageSearch}
|
|
613
|
-
*/
|
|
614
|
-
selectedArtworkFromReverseImageSearch = "selectedArtworkFromReverseImageSearch",
|
|
615
619
|
/**
|
|
616
620
|
* Corresponds to {@link SelectedItemFromPriceDatabaseSearch}
|
|
617
621
|
*/
|
|
@@ -812,10 +816,6 @@ export declare enum ActionType {
|
|
|
812
816
|
* Corresponds to {@link TappedPartnerCard}
|
|
813
817
|
*/
|
|
814
818
|
tappedPartnerCard = "tappedPartnerCard",
|
|
815
|
-
/**
|
|
816
|
-
* Corresponds to {@link TappedPickImageFromLibrary}
|
|
817
|
-
*/
|
|
818
|
-
tappedPickImageFromLibrary = "tappedPickImageFromLibrary",
|
|
819
819
|
/**
|
|
820
820
|
* Corresponds to {@link TappedProductCapabilitiesGroup}
|
|
821
821
|
*/
|
|
@@ -832,10 +832,6 @@ export declare enum ActionType {
|
|
|
832
832
|
* Corresponds to {@link TappedRequestPriceEstimate}
|
|
833
833
|
*/
|
|
834
834
|
tappedRequestPriceEstimate = "tappedRequestPriceEstimate",
|
|
835
|
-
/**
|
|
836
|
-
* Corresponds to {@link TappedReverseImageSearch}
|
|
837
|
-
*/
|
|
838
|
-
tappedReverseImageSearch = "tappedReverseImageSearch",
|
|
839
835
|
/**
|
|
840
836
|
* Corresponds to {@link TappedSell}
|
|
841
837
|
*/
|
|
@@ -860,10 +856,6 @@ export declare enum ActionType {
|
|
|
860
856
|
* Corresponds to {@link TappedTabBar}
|
|
861
857
|
*/
|
|
862
858
|
tappedTabBar = "tappedTabBar",
|
|
863
|
-
/**
|
|
864
|
-
* Corresponds to {@link TappedToggleCameraFlash}
|
|
865
|
-
*/
|
|
866
|
-
tappedToggleCameraFlash = "tappedToggleCameraFlash",
|
|
867
859
|
/**
|
|
868
860
|
* Corresponds to {@link TappedUploadAnotherArtwork}
|
|
869
861
|
*/
|
|
@@ -908,6 +900,10 @@ export declare enum ActionType {
|
|
|
908
900
|
* Corresponds to {@link ToggledNotification}
|
|
909
901
|
*/
|
|
910
902
|
toggledNotification = "toggledNotification",
|
|
903
|
+
/**
|
|
904
|
+
* Corresponds to {@link ToggledPresentationModeSetting}
|
|
905
|
+
*/
|
|
906
|
+
toggledPresentationModeSetting = "toggledPresentationModeSetting",
|
|
911
907
|
/**
|
|
912
908
|
* Corresponds to {@link ToggledSavedSearch}
|
|
913
909
|
*/
|
|
@@ -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";
|
|
@@ -155,14 +158,12 @@ exports.ActionType = ActionType;
|
|
|
155
158
|
ActionType["savedCookieConsentPreferences"] = "savedCookieConsentPreferences";
|
|
156
159
|
ActionType["screen"] = "screen";
|
|
157
160
|
ActionType["selectedSearchSuggestionQuickNavigationItem"] = "selectedSearchSuggestionQuickNavigationItem";
|
|
161
|
+
ActionType["sentContent"] = "sentContent";
|
|
158
162
|
ActionType["searchedPriceDatabase"] = "searchedPriceDatabase";
|
|
159
|
-
ActionType["searchedReverseImageWithNoResults"] = "searchedReverseImageWithNoResults";
|
|
160
|
-
ActionType["searchedReverseImageWithResults"] = "searchedReverseImageWithResults";
|
|
161
163
|
ActionType["searchedWithNoResults"] = "searchedWithNoResults";
|
|
162
164
|
ActionType["searchedWithResults"] = "searchedWithResults";
|
|
163
165
|
ActionType["selectArtistFromSearch"] = "selectArtistFromSearch";
|
|
164
166
|
ActionType["selectArtworkFromGrid"] = "selectArtworkFromGrid";
|
|
165
|
-
ActionType["selectedArtworkFromReverseImageSearch"] = "selectedArtworkFromReverseImageSearch";
|
|
166
167
|
ActionType["clickedConversationsFilter"] = "clickedConversationsFilter";
|
|
167
168
|
ActionType["selectedItemFromPriceDatabaseSearch"] = "selectedItemFromPriceDatabaseSearch";
|
|
168
169
|
ActionType["selectedItemFromSearch"] = "selectedItemFromSearch";
|
|
@@ -213,19 +214,16 @@ exports.ActionType = ActionType;
|
|
|
213
214
|
ActionType["tappedMyCollectionInsightsMedianAuctionRailItem"] = "tappedMyCollectionInsightsMedianAuctionRailItem";
|
|
214
215
|
ActionType["tappedNavigationTab"] = "tappedNavigationTab";
|
|
215
216
|
ActionType["tappedPartnerCard"] = "tappedPartnerCard";
|
|
216
|
-
ActionType["tappedPickImageFromLibrary"] = "tappedPickImageFromLibrary";
|
|
217
217
|
ActionType["tappedProductCapabilitiesGroup"] = "tappedProductCapabilitiesGroup";
|
|
218
218
|
ActionType["tappedPromoSpace"] = "tappedPromoSpace";
|
|
219
219
|
ActionType["tappedRegisterToBid"] = "tappedRegisterToBid";
|
|
220
220
|
ActionType["tappedRequestPriceEstimate"] = "tappedRequestPriceEstimate";
|
|
221
|
-
ActionType["tappedReverseImageSearch"] = "tappedReverseImageSearch";
|
|
222
221
|
ActionType["tappedSell"] = "tappedSell";
|
|
223
222
|
ActionType["tappedSellArtwork"] = "tappedSellArtwork";
|
|
224
223
|
ActionType["tappedShowGroup"] = "tappedShowGroup";
|
|
225
224
|
ActionType["tappedShowMore"] = "tappedShowMore";
|
|
226
225
|
ActionType["tappedSkip"] = "tappedSkip";
|
|
227
226
|
ActionType["tappedTabBar"] = "tappedTabBar";
|
|
228
|
-
ActionType["tappedToggleCameraFlash"] = "tappedToggleCameraFlash";
|
|
229
227
|
ActionType["tappedUploadAnotherArtwork"] = "tappedUploadAnotherArtwork";
|
|
230
228
|
ActionType["tappedVerifyIdentity"] = "tappedVerifyIdentity";
|
|
231
229
|
ActionType["tappedViewingRoomCard"] = "tappedViewingRoomCard";
|
|
@@ -237,6 +235,7 @@ exports.ActionType = ActionType;
|
|
|
237
235
|
ActionType["timeOnPage"] = "timeOnPage";
|
|
238
236
|
ActionType["toggledAccordion"] = "toggledAccordion";
|
|
239
237
|
ActionType["toggledNotification"] = "toggledNotification";
|
|
238
|
+
ActionType["toggledPresentationModeSetting"] = "toggledPresentationModeSetting";
|
|
240
239
|
ActionType["toggledSavedSearch"] = "toggledSavedSearch";
|
|
241
240
|
ActionType["tooltipViewed"] = "tooltipViewed";
|
|
242
241
|
ActionType["unfollowedArtist"] = "unfollowedArtist";
|
|
@@ -79,7 +79,6 @@ export declare enum OwnerType {
|
|
|
79
79
|
priceDatabase = "priceDatabase",
|
|
80
80
|
profile = "profile",
|
|
81
81
|
recentlyViewed = "recentlyViewed",
|
|
82
|
-
reverseImageSearch = "reverseImageSearch",
|
|
83
82
|
sale = "sale",
|
|
84
83
|
saleInformation = "saleInformation",
|
|
85
84
|
savedSearch = "savedSearch",
|
|
@@ -104,7 +103,7 @@ export declare enum OwnerType {
|
|
|
104
103
|
/**
|
|
105
104
|
* Owner types available in iOS/Android
|
|
106
105
|
*/
|
|
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.
|
|
106
|
+
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.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
107
|
/**
|
|
109
108
|
* Owner types available in web/mobile web
|
|
110
109
|
*/
|
|
@@ -97,7 +97,6 @@ exports.OwnerType = OwnerType;
|
|
|
97
97
|
OwnerType["priceDatabase"] = "priceDatabase";
|
|
98
98
|
OwnerType["profile"] = "profile";
|
|
99
99
|
OwnerType["recentlyViewed"] = "recentlyViewed";
|
|
100
|
-
OwnerType["reverseImageSearch"] = "reverseImageSearch";
|
|
101
100
|
OwnerType["sale"] = "sale";
|
|
102
101
|
OwnerType["saleInformation"] = "saleInformation";
|
|
103
102
|
OwnerType["savedSearch"] = "savedSearch";
|
package/dist/Schema/index.d.ts
CHANGED
|
@@ -7,13 +7,13 @@ 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";
|
|
13
14
|
export * from "./Events/Inquiries";
|
|
14
15
|
export * from "./Events/MyCollection";
|
|
15
16
|
export * from "./Events/MyCollectionInsights";
|
|
16
|
-
export * from "./Events/ReverseImageSearch";
|
|
17
17
|
export * from "./Events/SavedSearch";
|
|
18
18
|
export * from "./Events/SavesAndFollows";
|
|
19
19
|
export * from "./Events/Search";
|
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) {
|
|
@@ -184,18 +196,6 @@ Object.keys(_MyCollectionInsights).forEach(function (key) {
|
|
|
184
196
|
});
|
|
185
197
|
});
|
|
186
198
|
|
|
187
|
-
var _ReverseImageSearch = require("./Events/ReverseImageSearch");
|
|
188
|
-
|
|
189
|
-
Object.keys(_ReverseImageSearch).forEach(function (key) {
|
|
190
|
-
if (key === "default" || key === "__esModule") return;
|
|
191
|
-
Object.defineProperty(exports, key, {
|
|
192
|
-
enumerable: true,
|
|
193
|
-
get: function get() {
|
|
194
|
-
return _ReverseImageSearch[key];
|
|
195
|
-
}
|
|
196
|
-
});
|
|
197
|
-
});
|
|
198
|
-
|
|
199
199
|
var _SavedSearch = require("./Events/SavedSearch");
|
|
200
200
|
|
|
201
201
|
Object.keys(_SavedSearch).forEach(function (key) {
|
package/package.json
CHANGED
|
@@ -1,158 +0,0 @@
|
|
|
1
|
-
import { ScreenOwnerType } from "../Values/OwnerType";
|
|
2
|
-
import { ActionType } from ".";
|
|
3
|
-
/**
|
|
4
|
-
* Schema describing 'Reverse Image Search' events
|
|
5
|
-
* @packageDocumentation
|
|
6
|
-
*/
|
|
7
|
-
/**
|
|
8
|
-
* A user taps the reverse image search button on a fair or show screen
|
|
9
|
-
*
|
|
10
|
-
* This schema describes events sent to Segment from [[tappedReverseImageSearch]]
|
|
11
|
-
*
|
|
12
|
-
* @example
|
|
13
|
-
* ```
|
|
14
|
-
* {
|
|
15
|
-
* action: "tappedReverseImageSearch",
|
|
16
|
-
* context_screen_owner_type: "reverseImageSearch",
|
|
17
|
-
* owner_type: "fair",
|
|
18
|
-
* owner_id: "6303add6f2f46c000d17c449",
|
|
19
|
-
* owner_slug: "spring-slash-break-art-show-2022"
|
|
20
|
-
* }
|
|
21
|
-
* ```
|
|
22
|
-
*/
|
|
23
|
-
export interface TappedReverseImageSearch {
|
|
24
|
-
action: ActionType.tappedReverseImageSearch;
|
|
25
|
-
context_screen_owner_type: ScreenOwnerType;
|
|
26
|
-
owner_type: ScreenOwnerType;
|
|
27
|
-
owner_id: string;
|
|
28
|
-
owner_slug: string;
|
|
29
|
-
}
|
|
30
|
-
/**
|
|
31
|
-
* A user taps the flash button on the reverse image search camera screen
|
|
32
|
-
*
|
|
33
|
-
* This schema describes events sent to Segment from [[tappedToggleCameraFlash]]
|
|
34
|
-
*
|
|
35
|
-
* @example
|
|
36
|
-
* ```
|
|
37
|
-
* {
|
|
38
|
-
* action: "tappedToggleCameraFlash",
|
|
39
|
-
* context_screen_owner_type: "reverseImageSearch"
|
|
40
|
-
* owner_type: "fair",
|
|
41
|
-
* owner_id: "6303add6f2f46c000d17c449",
|
|
42
|
-
* owner_slug: "spring-slash-break-art-show-2022",
|
|
43
|
-
* }
|
|
44
|
-
* ```
|
|
45
|
-
*/
|
|
46
|
-
export interface TappedToggleCameraFlash {
|
|
47
|
-
action: ActionType.tappedToggleCameraFlash;
|
|
48
|
-
context_screen_owner_type: ScreenOwnerType;
|
|
49
|
-
owner_type: ScreenOwnerType;
|
|
50
|
-
owner_id: string;
|
|
51
|
-
owner_slug: string;
|
|
52
|
-
}
|
|
53
|
-
/**
|
|
54
|
-
* A user taps the library button on the reverse image search camera screen
|
|
55
|
-
*
|
|
56
|
-
* This schema describes events sent to Segment from [[tappedPickImageFromLibrary]]
|
|
57
|
-
*
|
|
58
|
-
* @example
|
|
59
|
-
* ```
|
|
60
|
-
* {
|
|
61
|
-
* action: "tappedPickImageFromLibrary",
|
|
62
|
-
* context_screen_owner_type: "reverseImageSearch"
|
|
63
|
-
* owner_type: "fair",
|
|
64
|
-
* owner_id: "6303add6f2f46c000d17c449",
|
|
65
|
-
* owner_slug: "spring-slash-break-art-show-2022",
|
|
66
|
-
* }
|
|
67
|
-
* ```
|
|
68
|
-
*/
|
|
69
|
-
export interface TappedPickImageFromLibrary {
|
|
70
|
-
action: ActionType.tappedPickImageFromLibrary;
|
|
71
|
-
context_screen_owner_type: ScreenOwnerType;
|
|
72
|
-
owner_type: ScreenOwnerType;
|
|
73
|
-
owner_id: string;
|
|
74
|
-
owner_slug: string;
|
|
75
|
-
}
|
|
76
|
-
/**
|
|
77
|
-
* A user searches with a reverse image query with results
|
|
78
|
-
*
|
|
79
|
-
* This schema describes events sent to Segment from [[searchedReverseImageWithResults]]
|
|
80
|
-
*
|
|
81
|
-
* @example
|
|
82
|
-
* ```
|
|
83
|
-
* {
|
|
84
|
-
* action: "searchedReverseImageWithResults",
|
|
85
|
-
* context_screen_owner_type: "reverseImageSearch",
|
|
86
|
-
* owner_type: "fair",
|
|
87
|
-
* owner_id: "6303add6f2f46c000d17c449",
|
|
88
|
-
* owner_slug: "spring-slash-break-art-show-2022",
|
|
89
|
-
* total_matches_count: 3
|
|
90
|
-
* artwork_ids: "5f7190cc9e4a6f000d02085c,60b755f8052e35000f05820d,611ab14f3bb0e9000fc1a057"
|
|
91
|
-
* }
|
|
92
|
-
* ```
|
|
93
|
-
*/
|
|
94
|
-
export interface SearchedReverseImageWithResults {
|
|
95
|
-
action: ActionType.searchedReverseImageWithResults;
|
|
96
|
-
context_screen_owner_type?: ScreenOwnerType;
|
|
97
|
-
owner_type: ScreenOwnerType;
|
|
98
|
-
owner_id: string;
|
|
99
|
-
owner_slug: string;
|
|
100
|
-
total_matches_count: number;
|
|
101
|
-
artwork_ids: string;
|
|
102
|
-
}
|
|
103
|
-
/**
|
|
104
|
-
* A user searches with a reverse image query with no results
|
|
105
|
-
*
|
|
106
|
-
* This schema describes events sent to Segment from [[searchedReverseImageWithNoResults]]
|
|
107
|
-
*
|
|
108
|
-
* @example
|
|
109
|
-
* ```
|
|
110
|
-
* {
|
|
111
|
-
* action: "searchedReverseImageWithNoResults",
|
|
112
|
-
* context_screen_owner_type: "reverseImageSearch",
|
|
113
|
-
* owner_type: "fair",
|
|
114
|
-
* owner_id: "6303add6f2f46c000d17c449",
|
|
115
|
-
* owner_slug: "spring-slash-break-art-show-2022"
|
|
116
|
-
* }
|
|
117
|
-
* ```
|
|
118
|
-
*/
|
|
119
|
-
export interface SearchedReverseImageWithNoResults {
|
|
120
|
-
action: ActionType.searchedReverseImageWithNoResults;
|
|
121
|
-
context_screen_owner_type: ScreenOwnerType;
|
|
122
|
-
owner_type: ScreenOwnerType;
|
|
123
|
-
owner_id: string;
|
|
124
|
-
owner_slug: string;
|
|
125
|
-
}
|
|
126
|
-
/**
|
|
127
|
-
* A user selects an artwork from reverse image search results
|
|
128
|
-
*
|
|
129
|
-
* This schema describes events sent to Segment from [[selectedArtworkFromReverseImageSearch]]
|
|
130
|
-
*
|
|
131
|
-
* @example
|
|
132
|
-
* ```
|
|
133
|
-
* {
|
|
134
|
-
* action: "selectedArtworkFromReverseImageSearch",
|
|
135
|
-
* context_screen_owner_type: "reverseImageSearch",
|
|
136
|
-
* destination_owner_type: "artwork",
|
|
137
|
-
* destination_owner_id: "5f7190cc9e4a6f000d02085c",
|
|
138
|
-
* destination_owner_slug: "kaarina-kaikkonen-i-no-longer-hear-you-singing",
|
|
139
|
-
* owner_type: "fair",
|
|
140
|
-
* owner_id: "6303add6f2f46c000d17c449",
|
|
141
|
-
* owner_slug: "spring-slash-break-art-show-2022"
|
|
142
|
-
* total_matches_count: 3,
|
|
143
|
-
* position: 1
|
|
144
|
-
* }
|
|
145
|
-
* ```
|
|
146
|
-
*/
|
|
147
|
-
export interface SelectedArtworkFromReverseImageSearch {
|
|
148
|
-
action: ActionType.selectedArtworkFromReverseImageSearch;
|
|
149
|
-
context_screen_owner_type: ScreenOwnerType;
|
|
150
|
-
destination_owner_type: ScreenOwnerType;
|
|
151
|
-
destination_owner_id?: string;
|
|
152
|
-
destination_owner_slug: string;
|
|
153
|
-
owner_type: ScreenOwnerType;
|
|
154
|
-
owner_id: string;
|
|
155
|
-
owner_slug: string;
|
|
156
|
-
total_matches_count: number;
|
|
157
|
-
position: number;
|
|
158
|
-
}
|
|
File without changes
|