@artsy/cohesion 4.34.1 → 4.37.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/Auction.d.ts +59 -0
- package/dist/Schema/Events/Auction.js +1 -0
- package/dist/Schema/Events/index.d.ts +41 -3
- package/dist/Schema/Events/index.js +9 -0
- package/dist/Schema/Values/OwnerType.d.ts +1 -0
- package/dist/Schema/Values/OwnerType.js +1 -0
- 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,39 @@
|
|
|
1
|
+
# v4.37.0 (Tue Mar 15 2022)
|
|
2
|
+
|
|
3
|
+
#### 🚀 Enhancement
|
|
4
|
+
|
|
5
|
+
- chore: add ExperimentViewed to events [#311](https://github.com/artsy/cohesion/pull/311) ([@gkartalis](https://github.com/gkartalis))
|
|
6
|
+
|
|
7
|
+
#### Authors: 1
|
|
8
|
+
|
|
9
|
+
- George Kartalis ([@gkartalis](https://github.com/gkartalis))
|
|
10
|
+
|
|
11
|
+
---
|
|
12
|
+
|
|
13
|
+
# v4.36.0 (Mon Mar 14 2022)
|
|
14
|
+
|
|
15
|
+
#### 🚀 Enhancement
|
|
16
|
+
|
|
17
|
+
- feat(auction): Add auction events [#310](https://github.com/artsy/cohesion/pull/310) ([@damassi](https://github.com/damassi))
|
|
18
|
+
|
|
19
|
+
#### Authors: 1
|
|
20
|
+
|
|
21
|
+
- Christopher Pappas ([@damassi](https://github.com/damassi))
|
|
22
|
+
|
|
23
|
+
---
|
|
24
|
+
|
|
25
|
+
# v4.35.0 (Fri Mar 11 2022)
|
|
26
|
+
|
|
27
|
+
#### 🚀 Enhancement
|
|
28
|
+
|
|
29
|
+
- fix: add missing export for ExperimentViewed [#309](https://github.com/artsy/cohesion/pull/309) ([@mc-jones](https://github.com/mc-jones))
|
|
30
|
+
|
|
31
|
+
#### Authors: 1
|
|
32
|
+
|
|
33
|
+
- Matt Jones ([@mc-jones](https://github.com/mc-jones))
|
|
34
|
+
|
|
35
|
+
---
|
|
36
|
+
|
|
1
37
|
# v4.34.1 (Wed Mar 09 2022)
|
|
2
38
|
|
|
3
39
|
#### 🐛 Bug Fix
|
|
@@ -0,0 +1,59 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Schema describing 'auction/id' events
|
|
3
|
+
* @packageDocumentation
|
|
4
|
+
*/
|
|
5
|
+
import { ContextModule } from "../Values/ContextModule";
|
|
6
|
+
import { OwnerType } from "../Values/OwnerType";
|
|
7
|
+
import { ActionType } from ".";
|
|
8
|
+
export interface BidPageView {
|
|
9
|
+
action: ActionType.bidPageView;
|
|
10
|
+
artwork_slug: string;
|
|
11
|
+
auction_slug: string;
|
|
12
|
+
sale_id: string;
|
|
13
|
+
user_id: string;
|
|
14
|
+
}
|
|
15
|
+
export interface ClickedActiveBid {
|
|
16
|
+
action: ActionType.clickedActiveBid;
|
|
17
|
+
artwork_slug: string;
|
|
18
|
+
auction_slug: string;
|
|
19
|
+
user_id: string;
|
|
20
|
+
}
|
|
21
|
+
export interface ClickedRegisterToBid {
|
|
22
|
+
action: ActionType.clickedRegisterToBid;
|
|
23
|
+
context_module: ContextModule.auctionHome;
|
|
24
|
+
context_owner_id: string;
|
|
25
|
+
context_owner_slug: string;
|
|
26
|
+
context_owner_type: OwnerType.auction;
|
|
27
|
+
}
|
|
28
|
+
export interface ConfirmBid {
|
|
29
|
+
action: ActionType.confirmBid;
|
|
30
|
+
bidder_id: string;
|
|
31
|
+
bidder_position_id: string;
|
|
32
|
+
}
|
|
33
|
+
export interface ConfirmRegistrationPageview {
|
|
34
|
+
action: ActionType.confirmRegistrationPageview;
|
|
35
|
+
context_module: ContextModule.auctionHome;
|
|
36
|
+
}
|
|
37
|
+
export interface EnterLiveAuction {
|
|
38
|
+
action: ActionType.enterLiveAuction;
|
|
39
|
+
context_module: ContextModule.auctionHome;
|
|
40
|
+
destination_path: string;
|
|
41
|
+
subject: string;
|
|
42
|
+
}
|
|
43
|
+
export interface MaxBidSelected {
|
|
44
|
+
action: ActionType.maxBidSelected;
|
|
45
|
+
bidder_id: string;
|
|
46
|
+
selected_max_bid_minor: number;
|
|
47
|
+
}
|
|
48
|
+
export interface RegistrationPageView {
|
|
49
|
+
action: ActionType.registrationPageView;
|
|
50
|
+
context_module: ContextModule.auctionHome;
|
|
51
|
+
}
|
|
52
|
+
export interface RegistrationSubmitted {
|
|
53
|
+
action: ActionType.registrationSubmitted;
|
|
54
|
+
auction_slug: string;
|
|
55
|
+
auction_state: string;
|
|
56
|
+
bidder_id: string;
|
|
57
|
+
sale_id: string;
|
|
58
|
+
user_id: string;
|
|
59
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
"use strict";
|
|
@@ -1,8 +1,10 @@
|
|
|
1
1
|
import { AddToCalendar } from "./AddToCalendar";
|
|
2
|
+
import { BidPageView, ClickedActiveBid, ClickedRegisterToBid, ConfirmBid, ConfirmRegistrationPageview, EnterLiveAuction, MaxBidSelected, RegistrationPageView, RegistrationSubmitted } from "./Auction";
|
|
2
3
|
import { AuthImpression, CreatedAccount, OnboardingUserInputData, ResetYourPassword, SuccessfullyLoggedIn } from "./Authentication";
|
|
3
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, ClickedOfferOption, ClickedOnArtworkShippingUnitsDropdown, ClickedOnArtworkShippingWeight, ClickedOnFramedMeasurements, ClickedOnFramedMeasurementsDropdown, ClickedOnSubmitOrder, ClickedPartnerCard, ClickedPromoSpace, ClickedSelectShippingOption, ClickedShippingAddress, ClickedShowGroup, ClickedShowMore, ClickedSnooze, ClickedVerifyIdentity, ClickedViewingRoomCard } from "./Click";
|
|
4
5
|
import { ArtworkDetailsCompleted, ConsignmentSubmitted, SubmitAnotherArtwork, UploadPhotosCompleted, ViewArtworkMyCollection } from "./Consignments";
|
|
5
6
|
import { FocusedOnConversationMessageInput, SentConversationMessage, TappedInboxConversation, TappedMakeOffer, TappedViewOffer } from "./Conversations";
|
|
7
|
+
import { ExperimentViewed } from "./ExperimentViewed";
|
|
6
8
|
import { AuctionResultsFilterParamsChanged, CommercialFilterParamsChanged, PriceDatabaseFilterParamsChanged } from "./FilterAndSort";
|
|
7
9
|
import { AddCollectedArtwork, DeleteCollectedArtwork, EditCollectedArtwork, TappedCollectedArtwork, TappedCollectedArtworkImages, TappedRequestPriceEstimate } from "./MyCollection";
|
|
8
10
|
import { PromptForReview } from "./PromptForReview";
|
|
@@ -19,7 +21,7 @@ import { ToggledAccordion } from "./UserExperienceInteractions";
|
|
|
19
21
|
*
|
|
20
22
|
* Each event describes one ActionType
|
|
21
23
|
*/
|
|
22
|
-
export declare type Event = AddToCalendar | AddCollectedArtwork | ArtworkDetailsCompleted | AuctionResultsFilterParamsChanged | AuthImpression | CreatedAccount | 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 | ClickedPromoSpace | ClickedSelectShippingOption | ClickedShippingAddress | ClickedShowGroup | ClickedShowMore | ClickedVerifyIdentity | ClickedViewingRoomCard | CommercialFilterParamsChanged | ConsignmentArtistFailed | ConsignmentSubmitted | DeleteCollectedArtwork | DeletedSavedSearch | EditCollectedArtwork | EditedSavedSearch | FocusedOnConversationMessageInput | FocusedOnSearchInput | FocusedOnPriceDatabaseSearchInput | FollowEvents | OnboardingUserInputData | PriceDatabaseFilterParamsChanged | PromptForReview | ResetYourPassword | SaleScreenLoadComplete | Screen | SearchedPriceDatabase | SearchedWithNoResults | SelectedItemFromSearch | SelectedItemFromPriceDatabaseSearch | SentConversationMessage | 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 | TappedShowMore | TappedTabBar | TappedVerifyIdentity | TappedViewingRoomCard | TappedViewingRoomGroup | TappedViewOffer | TimeOnPage | ToggledAccordion | ToggledNotification | ToggledSavedSearch | UploadPhotosCompleted | ViewArtworkMyCollection;
|
|
24
|
+
export declare type Event = AddToCalendar | AddCollectedArtwork | ArtworkDetailsCompleted | 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 | ClickedPromoSpace | ClickedRegisterToBid | ClickedSelectShippingOption | ClickedShippingAddress | ClickedShowGroup | ClickedShowMore | ClickedVerifyIdentity | ClickedViewingRoomCard | CommercialFilterParamsChanged | ConfirmBid | ConfirmRegistrationPageview | ConsignmentArtistFailed | ConsignmentSubmitted | DeleteCollectedArtwork | DeletedSavedSearch | EditCollectedArtwork | EditedSavedSearch | EnterLiveAuction | ExperimentViewed | FocusedOnConversationMessageInput | FocusedOnSearchInput | FocusedOnPriceDatabaseSearchInput | FollowEvents | MaxBidSelected | OnboardingUserInputData | PriceDatabaseFilterParamsChanged | PromptForReview | RegistrationPageView | RegistrationSubmitted | ResetYourPassword | SaleScreenLoadComplete | Screen | SearchedPriceDatabase | SearchedWithNoResults | SelectedItemFromSearch | SelectedItemFromPriceDatabaseSearch | SentConversationMessage | 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 | TappedShowMore | TappedTabBar | TappedVerifyIdentity | TappedViewingRoomCard | TappedViewingRoomGroup | TappedViewOffer | TimeOnPage | ToggledAccordion | ToggledNotification | ToggledSavedSearch | UploadPhotosCompleted | ViewArtworkMyCollection;
|
|
23
25
|
/**
|
|
24
26
|
* The top-level actions an Event describes.
|
|
25
27
|
*
|
|
@@ -46,6 +48,14 @@ export declare enum ActionType {
|
|
|
46
48
|
* Corresponds to {@link AuctionResultsFilterParamsChanged}
|
|
47
49
|
*/
|
|
48
50
|
auctionResultsFilterParamsChanged = "auctionResultsFilterParamsChanged",
|
|
51
|
+
/**
|
|
52
|
+
* Corresponds to {@link BidPageView}
|
|
53
|
+
*/
|
|
54
|
+
bidPageView = "bidPageView",
|
|
55
|
+
/**
|
|
56
|
+
* Corresponds to {@link ClickedActiveBid}
|
|
57
|
+
*/
|
|
58
|
+
clickedActiveBid = "clickedActiveBid",
|
|
49
59
|
/**
|
|
50
60
|
* Corresponds to {@link ClickedAddNewShippingAddress}
|
|
51
61
|
*/
|
|
@@ -179,6 +189,10 @@ export declare enum ActionType {
|
|
|
179
189
|
* Corresponds to {@link ClickedPromoSpace}
|
|
180
190
|
*/
|
|
181
191
|
clickedPromoSpace = "clickedPromoSpace",
|
|
192
|
+
/**
|
|
193
|
+
* Corresponds to {@link ClickedRegisterToBid}
|
|
194
|
+
*/
|
|
195
|
+
clickedRegisterToBid = "clickedRegisterToBid",
|
|
182
196
|
/**
|
|
183
197
|
* Corresponds to {@link ClickedSelectShippingOption}
|
|
184
198
|
*/
|
|
@@ -207,6 +221,14 @@ export declare enum ActionType {
|
|
|
207
221
|
* Corresponds to {@link CommercialFilterParamsChanged}
|
|
208
222
|
*/
|
|
209
223
|
commercialFilterParamsChanged = "commercialFilterParamsChanged",
|
|
224
|
+
/**
|
|
225
|
+
* Corresponds to {@link ConfirmBid}
|
|
226
|
+
*/
|
|
227
|
+
confirmBid = "confirmBid",
|
|
228
|
+
/**
|
|
229
|
+
* Corresponds to {@link ConfirmRegistrationPageview}
|
|
230
|
+
*/
|
|
231
|
+
confirmRegistrationPageview = "confirmRegistrationPageview",
|
|
210
232
|
/**
|
|
211
233
|
* Corresponds to {@link ConsignmentArtistFailed}
|
|
212
234
|
*/
|
|
@@ -243,6 +265,10 @@ export declare enum ActionType {
|
|
|
243
265
|
* Corresponds to {@link EditedSavedSearch}
|
|
244
266
|
*/
|
|
245
267
|
editedSavedSearch = "editedSavedSearch",
|
|
268
|
+
/**
|
|
269
|
+
* Corresponds to {@link EnterLiveAuction}
|
|
270
|
+
*/
|
|
271
|
+
enterLiveAuction = "enterLiveAuction",
|
|
246
272
|
/**
|
|
247
273
|
* Corresponds to {@link FocusedOnConversationMessageInput}
|
|
248
274
|
*/
|
|
@@ -271,6 +297,10 @@ export declare enum ActionType {
|
|
|
271
297
|
* Corresponds to {@link FollowedPartner}
|
|
272
298
|
*/
|
|
273
299
|
followedPartner = "followedPartner",
|
|
300
|
+
/**
|
|
301
|
+
* Corresponds to {@link MaxBidSelected}
|
|
302
|
+
*/
|
|
303
|
+
maxBidSelected = "maxBidSelected",
|
|
274
304
|
/**
|
|
275
305
|
* Corresponds to {@link OnboardingUserInputData}
|
|
276
306
|
*/
|
|
@@ -283,6 +313,14 @@ export declare enum ActionType {
|
|
|
283
313
|
* Corresponds to {@link PromptForReview}
|
|
284
314
|
*/
|
|
285
315
|
promptForReview = "promptForReview",
|
|
316
|
+
/**
|
|
317
|
+
* Corresponds to {@link RegistrationPageView}
|
|
318
|
+
*/
|
|
319
|
+
registrationPageView = "registrationPageView",
|
|
320
|
+
/**
|
|
321
|
+
* Corresponds to {@link RegistrationSubmitted}
|
|
322
|
+
*/
|
|
323
|
+
registrationSubmitted = "registrationSubmitted",
|
|
286
324
|
/**
|
|
287
325
|
* Corresponds to {@link ResetYourPassword}
|
|
288
326
|
*/
|
|
@@ -448,8 +486,8 @@ export declare enum ActionType {
|
|
|
448
486
|
*/
|
|
449
487
|
tappedRegisterToBid = "tappedRegisterToBid",
|
|
450
488
|
/**
|
|
451
|
-
|
|
452
|
-
|
|
489
|
+
* Corresponds to {@link TappedRequestPriceEstimate}
|
|
490
|
+
*/
|
|
453
491
|
tappedRequestPriceEstimate = "tappedRequestPriceEstimate",
|
|
454
492
|
/**
|
|
455
493
|
* Corresponds to {@link TappedSell}
|
|
@@ -25,6 +25,8 @@ exports.ActionType = ActionType;
|
|
|
25
25
|
ActionType["addCollectedArtwork"] = "addCollectedArtwork";
|
|
26
26
|
ActionType["artworkDetailsCompleted"] = "artworkDetailsCompleted";
|
|
27
27
|
ActionType["auctionResultsFilterParamsChanged"] = "auctionResultsFilterParamsChanged";
|
|
28
|
+
ActionType["bidPageView"] = "bidPageView";
|
|
29
|
+
ActionType["clickedActiveBid"] = "clickedActiveBid";
|
|
28
30
|
ActionType["clickedAddNewShippingAddress"] = "clickedAddNewShippingAddress";
|
|
29
31
|
ActionType["clickedAddWorksToFair"] = "clickedAddWorksToFair";
|
|
30
32
|
ActionType["clickedAppDownload"] = "clickedAppDownload";
|
|
@@ -58,6 +60,7 @@ exports.ActionType = ActionType;
|
|
|
58
60
|
ActionType["clickedSnooze"] = "clickedSnooze";
|
|
59
61
|
ActionType["clickedPartnerCard"] = "clickedPartnerCard";
|
|
60
62
|
ActionType["clickedPromoSpace"] = "clickedPromoSpace";
|
|
63
|
+
ActionType["clickedRegisterToBid"] = "clickedRegisterToBid";
|
|
61
64
|
ActionType["clickedSelectShippingOption"] = "clickedSelectShippingOption";
|
|
62
65
|
ActionType["clickedShippingAddress"] = "clickedShippingAddress";
|
|
63
66
|
ActionType["clickedShowGroup"] = "clickedShowGroup";
|
|
@@ -65,6 +68,8 @@ exports.ActionType = ActionType;
|
|
|
65
68
|
ActionType["clickedVerifyIdentity"] = "clickedVerifyIdentity";
|
|
66
69
|
ActionType["clickedViewingRoomCard"] = "clickedViewingRoomCard";
|
|
67
70
|
ActionType["commercialFilterParamsChanged"] = "commercialFilterParamsChanged";
|
|
71
|
+
ActionType["confirmBid"] = "confirmBid";
|
|
72
|
+
ActionType["confirmRegistrationPageview"] = "confirmRegistrationPageview";
|
|
68
73
|
ActionType["consignmentArtistFailed"] = "consignmentArtistFailed";
|
|
69
74
|
ActionType["consignmentSubmitted"] = "consignmentSubmitted";
|
|
70
75
|
ActionType["contactInformationCompleted"] = "contactInformationCompleted";
|
|
@@ -74,6 +79,7 @@ exports.ActionType = ActionType;
|
|
|
74
79
|
ActionType["deletedSavedSearch"] = "deletedSavedSearch";
|
|
75
80
|
ActionType["editCollectedArtwork"] = "editCollectedArtwork";
|
|
76
81
|
ActionType["editedSavedSearch"] = "editedSavedSearch";
|
|
82
|
+
ActionType["enterLiveAuction"] = "enterLiveAuction";
|
|
77
83
|
ActionType["focusedOnConversationMessageInput"] = "focusedOnConversationMessageInput";
|
|
78
84
|
ActionType["focusedOnSearchInput"] = "focusedOnSearchInput";
|
|
79
85
|
ActionType["focusedOnPriceDatabaseSearchInput"] = "focusedOnPriceDatabaseSearchInput";
|
|
@@ -81,9 +87,12 @@ exports.ActionType = ActionType;
|
|
|
81
87
|
ActionType["followedFair"] = "followedFair";
|
|
82
88
|
ActionType["followedGene"] = "followedGene";
|
|
83
89
|
ActionType["followedPartner"] = "followedPartner";
|
|
90
|
+
ActionType["maxBidSelected"] = "maxBidSelected";
|
|
84
91
|
ActionType["onboardingUserInputData"] = "onboardingUserInputData";
|
|
85
92
|
ActionType["priceDatabaseFilterParamsChanged"] = "priceDatabaseFilterParamsChanged";
|
|
86
93
|
ActionType["promptForReview"] = "promptForReview";
|
|
94
|
+
ActionType["registrationPageView"] = "registrationPageView";
|
|
95
|
+
ActionType["registrationSubmitted"] = "registrationSubmitted";
|
|
87
96
|
ActionType["resetYourPassword"] = "resetYourPassword";
|
|
88
97
|
ActionType["saleScreenLoadComplete"] = "saleScreenLoadComplete";
|
|
89
98
|
ActionType["screen"] = "screen";
|
|
@@ -12,6 +12,7 @@ export declare enum OwnerType {
|
|
|
12
12
|
artistAuctionResults = "artistAuctionResults",
|
|
13
13
|
artistSeries = "artistSeries",
|
|
14
14
|
artwork = "artwork",
|
|
15
|
+
auction = "auction",
|
|
15
16
|
auctionResult = "auctionResult",
|
|
16
17
|
auctionResultsForArtistsYouFollow = "auctionResultsForArtistsYouFollow",
|
|
17
18
|
auctionResultsRail = "auctionResultsRail",
|
|
@@ -30,6 +30,7 @@ exports.OwnerType = OwnerType;
|
|
|
30
30
|
OwnerType["artistAuctionResults"] = "artistAuctionResults";
|
|
31
31
|
OwnerType["artistSeries"] = "artistSeries";
|
|
32
32
|
OwnerType["artwork"] = "artwork";
|
|
33
|
+
OwnerType["auction"] = "auction";
|
|
33
34
|
OwnerType["auctionResult"] = "auctionResult";
|
|
34
35
|
OwnerType["auctionResultsForArtistsYouFollow"] = "auctionResultsForArtistsYouFollow";
|
|
35
36
|
OwnerType["auctionResultsRail"] = "auctionResultsRail";
|
package/dist/Schema/index.d.ts
CHANGED
|
@@ -3,6 +3,7 @@ export * from "./Events/AddToCalendar";
|
|
|
3
3
|
export * from "./Events/Authentication";
|
|
4
4
|
export * from "./Events/Click";
|
|
5
5
|
export * from "./Events/Conversations";
|
|
6
|
+
export * from "./Events/ExperimentViewed";
|
|
6
7
|
export * from "./Events/Inquiries";
|
|
7
8
|
export * from "./Events/FilterAndSort";
|
|
8
9
|
export * from "./Events/MyCollection";
|
package/dist/Schema/index.js
CHANGED
|
@@ -64,6 +64,18 @@ Object.keys(_Conversations).forEach(function (key) {
|
|
|
64
64
|
});
|
|
65
65
|
});
|
|
66
66
|
|
|
67
|
+
var _ExperimentViewed = require("./Events/ExperimentViewed");
|
|
68
|
+
|
|
69
|
+
Object.keys(_ExperimentViewed).forEach(function (key) {
|
|
70
|
+
if (key === "default" || key === "__esModule") return;
|
|
71
|
+
Object.defineProperty(exports, key, {
|
|
72
|
+
enumerable: true,
|
|
73
|
+
get: function get() {
|
|
74
|
+
return _ExperimentViewed[key];
|
|
75
|
+
}
|
|
76
|
+
});
|
|
77
|
+
});
|
|
78
|
+
|
|
67
79
|
var _Inquiries = require("./Events/Inquiries");
|
|
68
80
|
|
|
69
81
|
Object.keys(_Inquiries).forEach(function (key) {
|