@artsy/cohesion 4.195.0 → 4.197.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md CHANGED
@@ -1,3 +1,27 @@
1
+ # v4.197.0 (Mon Aug 05 2024)
2
+
3
+ #### 🚀 Enhancement
4
+
5
+ - feat: Add submitArtworkStepCompleteYourSubmissionPostApproval owner type [#517](https://github.com/artsy/cohesion/pull/517) ([@olerichter00](https://github.com/olerichter00))
6
+
7
+ #### Authors: 1
8
+
9
+ - Ole ([@olerichter00](https://github.com/olerichter00))
10
+
11
+ ---
12
+
13
+ # v4.196.0 (Tue Jul 30 2024)
14
+
15
+ #### 🚀 Enhancement
16
+
17
+ - chore(EMI-1969): Collector signals schema [#516](https://github.com/artsy/cohesion/pull/516) ([@erikdstock](https://github.com/erikdstock))
18
+
19
+ #### Authors: 1
20
+
21
+ - Erik ([@erikdstock](https://github.com/erikdstock))
22
+
23
+ ---
24
+
1
25
  # v4.195.0 (Mon Jul 22 2024)
2
26
 
3
27
  #### 🚀 Enhancement
@@ -169,11 +169,15 @@ export interface ClickedArtistSeriesGroup extends ClickedEntityGroup {
169
169
  * destination_page_owner_slug: "romain-jacquet-lagreze-makeshift-garden-hong-kong",
170
170
  * horizontal_slide_position: 1,
171
171
  * type: "thumbnail"
172
+ * signal_labels: ["Limited-Time Offer"],
172
173
  * }
173
174
  * ```
174
175
  */
175
176
  export interface ClickedArtworkGroup extends ClickedEntityGroup {
176
177
  action: ActionType.clickedArtworkGroup;
178
+ signal_labels?: string[];
179
+ signal_lot_watcher_count?: number;
180
+ signal_bid_count?: number;
177
181
  }
178
182
  /**
179
183
  * A user clicks a grouping of auctions on web
@@ -191,11 +195,16 @@ export interface ClickedArtworkGroup extends ClickedEntityGroup {
191
195
  * destination_page_owner_slug: "forum-auctions-colour-theory-4",
192
196
  * horizontal_slide_position: 3,
193
197
  * type: "thumbnail"
198
+ * signal_lot_watcher_count: 2,
199
+ * signal_bid_count: 1
194
200
  * }
195
201
  * ```
196
202
  */
197
203
  export interface ClickedAuctionGroup extends ClickedEntityGroup {
198
204
  action: ActionType.clickedAuctionGroup;
205
+ signal_labels?: string[];
206
+ signal_lot_watcher_count?: number;
207
+ signal_bid_count?: number;
199
208
  }
200
209
  /**
201
210
  * A user clicks a result of auctions on web
@@ -276,6 +285,7 @@ export interface ClickedBuyerProtection {
276
285
  * context_owner_id: "6164889300d643000db86504",
277
286
  * impulse_conversation_id: "198",
278
287
  * flow: "Buy now" | "Partner offer"
288
+ * signal_labels: ["Limited-Time Offer"],
279
289
  * }
280
290
  * ```
281
291
  */
@@ -286,6 +296,57 @@ export interface ClickedBuyNow {
286
296
  context_owner_id: string;
287
297
  impulse_conversation_id?: string;
288
298
  flow?: string;
299
+ signal_labels?: string[];
300
+ signal_lot_watcher_count?: number;
301
+ signal_bid_count?: number;
302
+ }
303
+ /**
304
+ * User clicks "Contact Gallery" on an artwork page (BNMO)
305
+ *
306
+ * This schema describes events sent to Segment from [[clickedContactGallery]]
307
+ * @example
308
+ * ```
309
+ * {
310
+ * action: "clickedContactGallery",
311
+ * context_owner_type: "Artwork",
312
+ * context_owner_slug: "radna-segal-pearl",
313
+ * context_owner_id: "6164889300d643000db86504",
314
+ * signal_labels: ["Limited-Time Offer"],
315
+ * }
316
+ * ```
317
+ */
318
+ export interface ClickedContactGallery {
319
+ action: ActionType.tappedContactGallery;
320
+ context_owner_type: OwnerType;
321
+ context_owner_slug: string;
322
+ context_owner_id: string;
323
+ signal_labels?: string[];
324
+ signal_lot_watcher_count?: number;
325
+ signal_bid_count?: number;
326
+ }
327
+ /** A user taps "Bid" on an artwork page inside an Auction
328
+ *
329
+ * This schema describes events sent to Segment from [[tappedBid]]
330
+ *
331
+ * @example
332
+ * ```
333
+ * {
334
+ * action: "clickedBid",
335
+ * context_owner_type: "Artwork",
336
+ * context_owner_slug: "radna-segal-pearl",
337
+ * context_owner_id: "6164889300d643000db86504",
338
+ * signal_lot_watcher_count: 2,
339
+ * signal_bid_count: 1
340
+ * }
341
+ */
342
+ export interface ClickedBid {
343
+ action: ActionType.clickedBid;
344
+ context_owner_type: OwnerType;
345
+ context_owner_id: string;
346
+ context_owner_slug: string;
347
+ signal_labels?: string[];
348
+ signal_lot_watcher_count?: number;
349
+ signal_bid_count?: number;
289
350
  }
290
351
  /**
291
352
  * User clicks on Change Payment Method on the orders review page.
@@ -509,6 +570,7 @@ export interface ClickedFairCard {
509
570
  * destination_page_owner_id: "53188b0d8b3b8192bb0005ae",
510
571
  * destination_page_owner_slug: "damien-hirst-anatomy-of-an-angel",
511
572
  * type: "thumbnail"
573
+ * signal_labels: ["Limited-Time Offer"],
512
574
  * }
513
575
  * ```
514
576
  */
@@ -524,6 +586,9 @@ export interface ClickedMainArtworkGrid {
524
586
  type: "thumbnail";
525
587
  position?: number;
526
588
  sort?: string;
589
+ signal_labels?: string[];
590
+ signal_lot_watcher_count?: number;
591
+ signal_bid_count?: number;
527
592
  }
528
593
  /**
529
594
  * A user clicks on a navigation tab on web.
@@ -102,11 +102,15 @@ export interface TappedArtistSeriesGroup extends TappedEntityGroup {
102
102
  * horizontal_slide_position: 1,
103
103
  * module_height: "single",
104
104
  * type: "thumbnail"
105
+ * signal_labels: ["Limited-Time Offer"],
105
106
  * }
106
107
  * ```
107
108
  */
108
109
  export interface TappedArtworkGroup extends TappedEntityGroup {
109
110
  action: ActionType.tappedArtworkGroup;
111
+ signal_labels?: string[];
112
+ signal_lot_watcher_count?: number;
113
+ signal_bid_count?: number;
110
114
  }
111
115
  /**
112
116
  * A user taps a grouping of auctions on iOS
@@ -125,11 +129,16 @@ export interface TappedArtworkGroup extends TappedEntityGroup {
125
129
  * horizontal_slide_position: 3,
126
130
  * module_height: "double",
127
131
  * type: "thumbnail"
132
+ * signal_lot_watcher_count: 2,
133
+ * signal_bid_count: 1
128
134
  * }
129
135
  * ```
130
136
  */
131
137
  export interface TappedAuctionGroup extends TappedEntityGroup {
132
138
  action: ActionType.tappedAuctionGroup;
139
+ signal_labels?: string[];
140
+ signal_lot_watcher_count?: number;
141
+ signal_bid_count?: number;
133
142
  }
134
143
  /**
135
144
  * A user taps a grouping of auction results on iOS
@@ -376,6 +385,7 @@ export interface TappedInfoBubble {
376
385
  * destination_screen_owner_id: "53188b0d8b3b8192bb0005ae",
377
386
  * destination_screen_owner_slug: "damien-hirst-anatomy-of-an-angel",
378
387
  * type: "thumbnail"
388
+ * signal_labels: ["Limited-Time Offer"],
379
389
  * }
380
390
  * ```
381
391
  */
@@ -393,6 +403,9 @@ export interface TappedMainArtworkGrid {
393
403
  sort?: string;
394
404
  type: "thumbnail";
395
405
  query?: string;
406
+ signal_labels?: string[];
407
+ signal_lot_watcher_count?: number;
408
+ signal_bid_count?: number;
396
409
  }
397
410
  /**
398
411
  * A user taps the promo space on the iOS home screen
@@ -712,6 +725,8 @@ export interface TappedCreateAlert {
712
725
  * context_owner_type: "Artwork",
713
726
  * context_owner_slug: "radna-segal-pearl",
714
727
  * context_owner_id: "6164889300d643000db86504",
728
+ * signal_lot_watcher_count: 2,
729
+ * signal_bid_count: 1
715
730
  * }
716
731
  * ```
717
732
  */
@@ -720,6 +735,9 @@ export interface TappedBid {
720
735
  context_owner_type: ScreenOwnerType;
721
736
  context_owner_id: string;
722
737
  context_owner_slug: string;
738
+ signal_labels?: string[];
739
+ signal_lot_watcher_count?: number;
740
+ signal_bid_count?: number;
723
741
  }
724
742
  /**
725
743
  * A user taps "Purchase" on an artwork page (BNMO)
@@ -735,6 +753,7 @@ export interface TappedBid {
735
753
  * context_owner_id: "6164889300d643000db86504",
736
754
  * impulse_conversation_id: "198",
737
755
  * flow: "Buy now" | "Partner offer"
756
+ * signal_labels: ["Limited-Time Offer"],
738
757
  * }
739
758
  * ```
740
759
  */
@@ -745,6 +764,9 @@ export interface TappedBuyNow {
745
764
  context_owner_slug: string;
746
765
  impulse_conversation_id?: string;
747
766
  flow?: "Buy now" | "Partner offer";
767
+ signal_labels?: string[];
768
+ signal_lot_watcher_count?: number;
769
+ signal_bid_count?: number;
748
770
  }
749
771
  /**
750
772
  * A user taps on 'Contact Gallery' on an artwork page
@@ -758,7 +780,7 @@ export interface TappedBuyNow {
758
780
  * context_owner_type: "Artwork",
759
781
  * context_owner_slug: "radna-segal-pearl",
760
782
  * context_owner_id: "6164889300d643000db86504",
761
-
783
+ * signal_labels: ["Limited-Time Offer"],
762
784
  * }
763
785
  * ```
764
786
  */
@@ -767,6 +789,9 @@ export interface TappedContactGallery {
767
789
  context_owner_type: OwnerType;
768
790
  context_owner_slug: string;
769
791
  context_owner_id: string;
792
+ signal_labels?: string[];
793
+ signal_lot_watcher_count?: number;
794
+ signal_bid_count?: number;
770
795
  }
771
796
  /**
772
797
  * A user taps a Skip button on My Collection add artwork flow
@@ -3,7 +3,7 @@ import { AddToCalendar } from "./AddToCalendar";
3
3
  import { AddedArtworkToArtworkList, CreatedArtworkList, DeletedArtworkList, EditedArtworkList, ViewedArtworkList } from "./ArtworkLists";
4
4
  import { AuctionPageView, BidPageView, ClickedActiveBid, ClickedRegisterToBid, ConfirmBid, ConfirmRegistrationPageview, EnterLiveAuction, MaxBidSelected, RegistrationPageView, RegistrationSubmitted } from "./Auction";
5
5
  import { AuthImpression, CompletedOnboarding, CreatedAccount, OnboardingUserInputData, ResetYourPassword, StartedOnboarding, SuccessfullyLoggedIn } from "./Authentication";
6
- import { CheckedAccountBalance, ClickedAddFilters, ClickedAddMissingArtworksDetails, ClickedAddNewShippingAddress, ClickedAddWorksToFair, ClickedAlertsFilters, ClickedAppDownload, ClickedArticleGroup, ClickedArtistGroup, ClickedArtistSeriesGroup, ClickedArtworkGroup, ClickedAuctionGroup, ClickedAuctionResultItem, ClickedBuyerProtection, ClickedChangePage, ClickedChangePaymentMethod, ClickedChangeShippingAddress, ClickedChangeShippingMethod, ClickedCloseValidationAddressModal, ClickedCollectionGroup, ClickedConversationsFilter, ClickedCreateAlert, ClickedDeliveryMethod, ClickedDismissInquiry, ClickedEditArtwork, ClickedExpandFilterPanel, ClickedExpansionToggle, ClickedFairCard, ClickedFairGroup, ClickedGalleryGroup, ClickedLoadMore, ClickedMainArtworkGrid, ClickedMarketingModal, ClickedMarkSold, ClickedMarkSpam, ClickedNavBar, ClickedNavigationTab, ClickedOfferActions, ClickedOfferOption, ClickedOnArtworkShippingUnitsDropdown, ClickedOnArtworkShippingWeight, ClickedOnBuyNowCheckbox, ClickedOnDuplicateArtwork, ClickedOnFramedMeasurements, ClickedOnFramedMeasurementsDropdown, ClickedOnLearnMore, ClickedOnMakeOfferCheckbox, ClickedOnPagination, ClickedOnPriceDisplayDropdown, ClickedOnReadMore, ClickedOnSubmitOrder, ClickedOrderPage, ClickedOrderSummary, ClickedPartnerCard, ClickedPartnerLink, ClickedPaymentDetails, ClickedPaymentMethod, ClickedPromoSpace, ClickedPublish, ClickedSelectShippingOption, ClickedSendPartnerOffer, ClickedShippingAddress, ClickedShowGroup, ClickedShowMore, ClickedSnooze, ClickedStartPartnerOffer, ClickedUpdateArtwork, ClickedUploadArtwork, ClickedValidationAddressOptions, ClickedVerifyIdentity, ClickedViewingRoomCard, ClickedViewWork, ClickedDownloadAppHeader, ClickedDownloadAppFooter } from "./Click";
6
+ import { CheckedAccountBalance, ClickedAddFilters, ClickedAddMissingArtworksDetails, ClickedAddNewShippingAddress, ClickedAddWorksToFair, ClickedAlertsFilters, ClickedAppDownload, ClickedArticleGroup, ClickedArtistGroup, ClickedArtistSeriesGroup, ClickedArtworkGroup, ClickedAuctionGroup, ClickedAuctionResultItem, ClickedBuyerProtection, ClickedChangePage, ClickedChangePaymentMethod, ClickedChangeShippingAddress, ClickedChangeShippingMethod, ClickedCloseValidationAddressModal, ClickedCollectionGroup, ClickedConversationsFilter, ClickedCreateAlert, ClickedDeliveryMethod, ClickedDismissInquiry, ClickedDownloadAppFooter, ClickedDownloadAppHeader, ClickedEditArtwork, ClickedExpandFilterPanel, ClickedExpansionToggle, ClickedFairCard, ClickedFairGroup, ClickedGalleryGroup, ClickedLoadMore, ClickedMainArtworkGrid, ClickedMarketingModal, ClickedMarkSold, ClickedMarkSpam, ClickedNavBar, ClickedNavigationTab, ClickedOfferActions, ClickedOfferOption, ClickedOnArtworkShippingUnitsDropdown, ClickedOnArtworkShippingWeight, ClickedOnBuyNowCheckbox, ClickedOnDuplicateArtwork, ClickedOnFramedMeasurements, ClickedOnFramedMeasurementsDropdown, ClickedOnLearnMore, ClickedOnMakeOfferCheckbox, ClickedOnPagination, ClickedOnPriceDisplayDropdown, ClickedOnReadMore, ClickedOnSubmitOrder, ClickedOrderPage, ClickedOrderSummary, ClickedPartnerCard, ClickedPartnerLink, ClickedPaymentDetails, ClickedPaymentMethod, ClickedPromoSpace, ClickedPublish, ClickedSelectShippingOption, ClickedSendPartnerOffer, ClickedShippingAddress, ClickedShowGroup, ClickedShowMore, ClickedSnooze, ClickedStartPartnerOffer, ClickedUpdateArtwork, ClickedUploadArtwork, ClickedValidationAddressOptions, ClickedVerifyIdentity, ClickedViewingRoomCard, ClickedViewWork } from "./Click";
7
7
  import { EditedUserProfile } from "./CollectorProfile";
8
8
  import { ArtworkDetailsCompleted, ConsignmentSubmitted, ContactInformationCompleted, SentConsignmentInquiry, SubmitAnotherArtwork, UploadPhotosCompleted, ViewArtworkMyCollection } from "./Consignments";
9
9
  import { FocusedOnConversationMessageInput, SentConversationMessage, TappedInboxConversation, TappedMakeOffer, TappedViewOffer } from "./Conversations";
@@ -14,8 +14,8 @@ import { AddedToAlbum, CompletedOfflineSync, CreatedAlbum, SentContent, ToggledP
14
14
  import { TappedProductCapabilitiesGroup } from "./HomeFeedArtsyOnboarding";
15
15
  import { MyCollectionOnboardingCompleted, TappedExploreMyCollection, VisitMyCollection, VisitMyCollectionOnboardingSlide } from "./HomeFeedMyCollectionOnboarding";
16
16
  import { Impression } from "./Impression";
17
- import { ErrorMessageViewed, ItemViewed, RailViewed, SendOffersBannerViewed, SendOffersErrorMessage, SendOffersModalViewed, TooltipViewed, ValidationAddressViewed, EditProfileModalViewed } from "./ImpressionTracking";
18
- import { AddCollectedArtwork, DeleteCollectedArtwork, EditCollectedArtwork, SaveCollectedArtwork, SentRequestPriceEstimate, TappedCollectedArtwork, TappedCollectedArtworkImages, TappedRequestPriceEstimate, TappedMyCollectionAddArtworkArtist } from "./MyCollection";
17
+ import { EditProfileModalViewed, ErrorMessageViewed, ItemViewed, RailViewed, SendOffersBannerViewed, SendOffersErrorMessage, SendOffersModalViewed, TooltipViewed, ValidationAddressViewed } from "./ImpressionTracking";
18
+ import { AddCollectedArtwork, DeleteCollectedArtwork, EditCollectedArtwork, SaveCollectedArtwork, SentRequestPriceEstimate, TappedCollectedArtwork, TappedCollectedArtworkImages, TappedMyCollectionAddArtworkArtist, TappedRequestPriceEstimate } from "./MyCollection";
19
19
  import { TappedMyCollectionInsightsMedianAuctionPriceChartCareerHighlight, TappedMyCollectionInsightsMedianAuctionPriceChartCategory, TappedMyCollectionInsightsMedianAuctionPriceChartTimeframe, TappedMyCollectionInsightsMedianAuctionRailItem } from "./MyCollectionInsights";
20
20
  import { PromptForReview } from "./PromptForReview";
21
21
  import { DeletedSavedSearch, EditedAlert, EditedSavedSearch } from "./SavedSearch";
@@ -155,6 +155,10 @@ export declare enum ActionType {
155
155
  /**
156
156
  * * Corresponds to {@link ClickedAuctionResultItem}
157
157
  */
158
+ /**
159
+ * Corresponds to {@link ClickedBid}
160
+ */
161
+ clickedBid = "clickedBid",
158
162
  clickedAuctionResultItem = "clickedAuctionResultItem",
159
163
  /**
160
164
  * Corresponds to {@link ClickedBuyerProtection}
@@ -188,6 +192,10 @@ export declare enum ActionType {
188
192
  * Corresponds to {@link ClickedCompleteYourProfile}
189
193
  */
190
194
  clickedCompleteYourProfile = "clickedCompleteYourProfile",
195
+ /**
196
+ * Corresponds to {@link ClickedCompleteYourProfile}
197
+ */
198
+ clickedContactGallery = "clickedContactGallery",
191
199
  /**
192
200
  * Corresponds to {@link ClickedCreateAlert}
193
201
  */
@@ -449,12 +457,12 @@ export declare enum ActionType {
449
457
  */
450
458
  commercialFilterParamsChanged = "commercialFilterParamsChanged",
451
459
  /**
452
- * Corresponds to {@link clickedDownloadAppFooter}
453
- */
460
+ * Corresponds to {@link clickedDownloadAppFooter}
461
+ */
454
462
  clickedDownloadAppFooter = "clickedDownloadAppFooter",
455
463
  /**
456
- * Corresponds to {@link clickedDownloadAppHeader}
457
- */
464
+ * Corresponds to {@link clickedDownloadAppHeader}
465
+ */
458
466
  clickedDownloadAppHeader = "clickedDownloadAppHeader",
459
467
  /**
460
468
  * Corresponds to {@link CompletedOfflineSync}
@@ -713,8 +721,8 @@ export declare enum ActionType {
713
721
  */
714
722
  sendOffersModalViewed = "sendOffersModalViewed",
715
723
  /**
716
- * Corresponds to {@link EditProfileModalViewed}
717
- */
724
+ * Corresponds to {@link EditProfileModalViewed}
725
+ */
718
726
  editProfileModalViewed = "editProfileModalViewed",
719
727
  /**
720
728
  * Corresponds to {@link sentArtworkInquiry}
@@ -48,6 +48,7 @@ exports.ActionType = ActionType;
48
48
  ActionType["clickedArtistSeriesGroup"] = "clickedArtistSeriesGroup";
49
49
  ActionType["clickedArtworkGroup"] = "clickedArtworkGroup";
50
50
  ActionType["clickedAuctionGroup"] = "clickedAuctionGroup";
51
+ ActionType["clickedBid"] = "clickedBid";
51
52
  ActionType["clickedAuctionResultItem"] = "clickedAuctionResultItem";
52
53
  ActionType["clickedBuyerProtection"] = "clickedBuyerProtection";
53
54
  ActionType["clickedBuyNow"] = "clickedBuyNow";
@@ -57,6 +58,7 @@ exports.ActionType = ActionType;
57
58
  ActionType["clickedChangeShippingMethod"] = "clickedChangeShippingMethod";
58
59
  ActionType["clickedCollectionGroup"] = "clickedCollectionGroup";
59
60
  ActionType["clickedCompleteYourProfile"] = "clickedCompleteYourProfile";
61
+ ActionType["clickedContactGallery"] = "clickedContactGallery";
60
62
  ActionType["clickedCreateAlert"] = "clickedCreateAlert";
61
63
  ActionType["clickedDeliveryMethod"] = "clickedDeliveryMethod";
62
64
  ActionType["clickedEditArtwork"] = "clickedEditArtwork";
@@ -111,6 +111,7 @@ export declare enum OwnerType {
111
111
  submitArtworkStepFrameInformation = "submitArtworkStepFrameInformation",
112
112
  submitArtworkStepAddtionalDocuments = "submitArtworkStepAddtionalDocuments",
113
113
  submitArtworkStepCondition = "submitArtworkStepCondition",
114
+ submitArtworkStepCompleteYourSubmissionPostApproval = "submitArtworkStepCompleteYourSubmissionPostApproval",
114
115
  tag = "tag",
115
116
  upcomingAuctions = "upcomingAuctions",
116
117
  user = "user",
@@ -124,8 +125,8 @@ export declare enum OwnerType {
124
125
  /**
125
126
  * Owner types available in iOS/Android
126
127
  */
127
- export type ScreenOwnerType = OwnerType.album | OwnerType.activities | OwnerType.activity | 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.lotsForYou | OwnerType.myCollection | OwnerType.myCollectionAddArtworkArtist | OwnerType.myCollectionArtwork | OwnerType.myCollectionArtwork | OwnerType.myCollectionArtworkAbout | OwnerType.myCollectionArtworkInsights | OwnerType.myCollectionInsights | OwnerType.myCollectionInsightsMedianAuctionPrice | OwnerType.myCollectionOnboarding | OwnerType.newWorksForYou | OwnerType.newWorksFromGalleriesYouFollow | OwnerType.notification | OwnerType.onboarding | OwnerType.partner | OwnerType.priceDatabase | OwnerType.profile | OwnerType.recentlyViewed | OwnerType.sale | OwnerType.saleInformation | OwnerType.savedSearch | OwnerType.savedSearches | OwnerType.saves | OwnerType.savesAndFollows | OwnerType.search | OwnerType.sell | OwnerType.settings | OwnerType.show | OwnerType.shows | OwnerType.submitArtworkStepStart | OwnerType.submitArtworkStepSelectArtist | OwnerType.submitArtworkStepAddTitle | OwnerType.submitArtworkStepAddPhotos | OwnerType.submitArtworkStepAddDetails | OwnerType.submitArtworkStepPurchaseHistory | OwnerType.submitArtworkStepAddDimensions | OwnerType.submitArtworkStepAddPhoneNumber | OwnerType.submitArtworkStepCompleteYourSubmission | OwnerType.submitArtworkStepArtistRejected | OwnerType.submitArtworkStepSelectArtworkMyCollectionArtwork | OwnerType.submitArtworkStepShippingLocation | OwnerType.submitArtworkStepFrameInformation | OwnerType.submitArtworkStepAddtionalDocuments | OwnerType.submitArtworkStepCondition | OwnerType.similarToRecentlyViewed | OwnerType.tag | OwnerType.upcomingAuctions | OwnerType.viewingRoom | OwnerType.viewingRoomArtworkPage | OwnerType.viewingRoomArtworks | OwnerType.viewingRoomList | OwnerType.worksForYou;
128
+ export type ScreenOwnerType = OwnerType.album | OwnerType.activities | OwnerType.activity | 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.lotsForYou | OwnerType.myCollection | OwnerType.myCollectionAddArtworkArtist | OwnerType.myCollectionArtwork | OwnerType.myCollectionArtwork | OwnerType.myCollectionArtworkAbout | OwnerType.myCollectionArtworkInsights | OwnerType.myCollectionInsights | OwnerType.myCollectionInsightsMedianAuctionPrice | OwnerType.myCollectionOnboarding | OwnerType.newWorksForYou | OwnerType.newWorksFromGalleriesYouFollow | OwnerType.notification | OwnerType.onboarding | OwnerType.partner | OwnerType.priceDatabase | OwnerType.profile | OwnerType.recentlyViewed | OwnerType.sale | OwnerType.saleInformation | OwnerType.savedSearch | OwnerType.savedSearches | OwnerType.saves | OwnerType.savesAndFollows | OwnerType.search | OwnerType.sell | OwnerType.settings | OwnerType.show | OwnerType.shows | OwnerType.submitArtworkStepStart | OwnerType.submitArtworkStepSelectArtist | OwnerType.submitArtworkStepAddTitle | OwnerType.submitArtworkStepAddPhotos | OwnerType.submitArtworkStepAddDetails | OwnerType.submitArtworkStepPurchaseHistory | OwnerType.submitArtworkStepAddDimensions | OwnerType.submitArtworkStepAddPhoneNumber | OwnerType.submitArtworkStepCompleteYourSubmission | OwnerType.submitArtworkStepArtistRejected | OwnerType.submitArtworkStepSelectArtworkMyCollectionArtwork | OwnerType.submitArtworkStepShippingLocation | OwnerType.submitArtworkStepFrameInformation | OwnerType.submitArtworkStepAddtionalDocuments | OwnerType.submitArtworkStepCondition | OwnerType.submitArtworkStepCompleteYourSubmissionPostApproval | OwnerType.similarToRecentlyViewed | OwnerType.tag | OwnerType.upcomingAuctions | OwnerType.viewingRoom | OwnerType.viewingRoomArtworkPage | OwnerType.viewingRoomArtworks | OwnerType.viewingRoomList | OwnerType.worksForYou;
128
129
  /**
129
130
  * Owner types available in web/mobile web
130
131
  */
131
- export type PageOwnerType = OwnerType.activities | OwnerType.activity | OwnerType.alertConfirmation | OwnerType.article | OwnerType.articles | OwnerType.artist | OwnerType.artistAuctionResults | OwnerType.artists | OwnerType.artistSeries | OwnerType.artwork | OwnerType.auctions | OwnerType.collect | OwnerType.collection | OwnerType.collections | OwnerType.consign | OwnerType.demand | OwnerType.editProfile | OwnerType.fair | OwnerType.fairs | OwnerType.galleries | OwnerType.gene | OwnerType.home | OwnerType.myCollectionArtworkInsights | OwnerType.myCollectionInsights | OwnerType.onboarding | OwnerType.ordersAccept | OwnerType.ordersCounter | OwnerType.ordersNewPayment | OwnerType.ordersOffer | OwnerType.ordersPayment | OwnerType.ordersRespond | OwnerType.ordersReview | OwnerType.ordersShipping | OwnerType.ordersSubmitted | OwnerType.partner | OwnerType.partnerShowsArtworks | OwnerType.priceDatabase | OwnerType.profile | OwnerType.sale | OwnerType.savedSearch | OwnerType.savedSearches | OwnerType.saves | OwnerType.search | OwnerType.sendOffers | OwnerType.show | OwnerType.shows | OwnerType.submitArtworkStepStart | OwnerType.submitArtworkStepSelectArtist | OwnerType.submitArtworkStepAddTitle | OwnerType.submitArtworkStepAddPhotos | OwnerType.submitArtworkStepAddDetails | OwnerType.submitArtworkStepPurchaseHistory | OwnerType.submitArtworkStepAddDimensions | OwnerType.submitArtworkStepAddPhoneNumber | OwnerType.submitArtworkStepCompleteYourSubmission | OwnerType.submitArtworkStepArtistRejected | OwnerType.submitArtworkStepSelectArtworkMyCollectionArtwork | OwnerType.submitArtworkStepShippingLocation | OwnerType.submitArtworkStepFrameInformation | OwnerType.submitArtworkStepAddtionalDocuments | OwnerType.submitArtworkStepCondition | OwnerType.tag | OwnerType.user | OwnerType.viewingRoom | OwnerType.viewingRooms | OwnerType.worksForYou | OwnerType.newWorksFromGalleriesYouFollow;
132
+ export type PageOwnerType = OwnerType.activities | OwnerType.activity | OwnerType.alertConfirmation | OwnerType.article | OwnerType.articles | OwnerType.artist | OwnerType.artistAuctionResults | OwnerType.artists | OwnerType.artistSeries | OwnerType.artwork | OwnerType.auctions | OwnerType.collect | OwnerType.collection | OwnerType.collections | OwnerType.consign | OwnerType.demand | OwnerType.editProfile | OwnerType.fair | OwnerType.fairs | OwnerType.galleries | OwnerType.gene | OwnerType.home | OwnerType.myCollectionArtworkInsights | OwnerType.myCollectionInsights | OwnerType.onboarding | OwnerType.ordersAccept | OwnerType.ordersCounter | OwnerType.ordersNewPayment | OwnerType.ordersOffer | OwnerType.ordersPayment | OwnerType.ordersRespond | OwnerType.ordersReview | OwnerType.ordersShipping | OwnerType.ordersSubmitted | OwnerType.partner | OwnerType.partnerShowsArtworks | OwnerType.priceDatabase | OwnerType.profile | OwnerType.sale | OwnerType.savedSearch | OwnerType.savedSearches | OwnerType.saves | OwnerType.search | OwnerType.sendOffers | OwnerType.show | OwnerType.shows | OwnerType.submitArtworkStepStart | OwnerType.submitArtworkStepSelectArtist | OwnerType.submitArtworkStepAddTitle | OwnerType.submitArtworkStepAddPhotos | OwnerType.submitArtworkStepAddDetails | OwnerType.submitArtworkStepPurchaseHistory | OwnerType.submitArtworkStepAddDimensions | OwnerType.submitArtworkStepAddPhoneNumber | OwnerType.submitArtworkStepCompleteYourSubmission | OwnerType.submitArtworkStepArtistRejected | OwnerType.submitArtworkStepSelectArtworkMyCollectionArtwork | OwnerType.submitArtworkStepShippingLocation | OwnerType.submitArtworkStepFrameInformation | OwnerType.submitArtworkStepAddtionalDocuments | OwnerType.submitArtworkStepCondition | OwnerType.submitArtworkStepCompleteYourSubmissionPostApproval | OwnerType.tag | OwnerType.user | OwnerType.viewingRoom | OwnerType.viewingRooms | OwnerType.worksForYou | OwnerType.newWorksFromGalleriesYouFollow;
@@ -129,6 +129,7 @@ exports.OwnerType = OwnerType;
129
129
  OwnerType["submitArtworkStepFrameInformation"] = "submitArtworkStepFrameInformation";
130
130
  OwnerType["submitArtworkStepAddtionalDocuments"] = "submitArtworkStepAddtionalDocuments";
131
131
  OwnerType["submitArtworkStepCondition"] = "submitArtworkStepCondition";
132
+ OwnerType["submitArtworkStepCompleteYourSubmissionPostApproval"] = "submitArtworkStepCompleteYourSubmissionPostApproval";
132
133
  OwnerType["tag"] = "tag";
133
134
  OwnerType["upcomingAuctions"] = "upcomingAuctions";
134
135
  OwnerType["user"] = "user";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@artsy/cohesion",
3
- "version": "4.195.0",
3
+ "version": "4.197.0",
4
4
  "description": "Analytics schema",
5
5
  "main": "dist/index.js",
6
6
  "publishConfig": {