@artsy/cohesion 4.197.0 → 4.199.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/Click.d.ts +14 -14
- package/dist/Schema/Events/Tap.d.ts +10 -10
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,27 @@
|
|
|
1
|
+
# v4.199.0 (Thu Aug 15 2024)
|
|
2
|
+
|
|
3
|
+
#### 🚀 Enhancement
|
|
4
|
+
|
|
5
|
+
- chore(EMI-2035): update collector signals schema - one label max. [#519](https://github.com/artsy/cohesion/pull/519) ([@erikdstock](https://github.com/erikdstock))
|
|
6
|
+
|
|
7
|
+
#### Authors: 1
|
|
8
|
+
|
|
9
|
+
- Erik ([@erikdstock](https://github.com/erikdstock))
|
|
10
|
+
|
|
11
|
+
---
|
|
12
|
+
|
|
13
|
+
# v4.198.0 (Tue Aug 06 2024)
|
|
14
|
+
|
|
15
|
+
#### 🚀 Enhancement
|
|
16
|
+
|
|
17
|
+
- fix: updating the app upsell tracking events [#518](https://github.com/artsy/cohesion/pull/518) ([@leodmz](https://github.com/leodmz))
|
|
18
|
+
|
|
19
|
+
#### Authors: 1
|
|
20
|
+
|
|
21
|
+
- Leo Demazeau ([@leodmz](https://github.com/leodmz))
|
|
22
|
+
|
|
23
|
+
---
|
|
24
|
+
|
|
1
25
|
# v4.197.0 (Mon Aug 05 2024)
|
|
2
26
|
|
|
3
27
|
#### 🚀 Enhancement
|
|
@@ -169,13 +169,13 @@ 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
|
-
*
|
|
172
|
+
* signal_label: "Limited-Time Offer",
|
|
173
173
|
* }
|
|
174
174
|
* ```
|
|
175
175
|
*/
|
|
176
176
|
export interface ClickedArtworkGroup extends ClickedEntityGroup {
|
|
177
177
|
action: ActionType.clickedArtworkGroup;
|
|
178
|
-
|
|
178
|
+
signal_label?: string;
|
|
179
179
|
signal_lot_watcher_count?: number;
|
|
180
180
|
signal_bid_count?: number;
|
|
181
181
|
}
|
|
@@ -202,7 +202,7 @@ export interface ClickedArtworkGroup extends ClickedEntityGroup {
|
|
|
202
202
|
*/
|
|
203
203
|
export interface ClickedAuctionGroup extends ClickedEntityGroup {
|
|
204
204
|
action: ActionType.clickedAuctionGroup;
|
|
205
|
-
|
|
205
|
+
signal_label?: string;
|
|
206
206
|
signal_lot_watcher_count?: number;
|
|
207
207
|
signal_bid_count?: number;
|
|
208
208
|
}
|
|
@@ -285,7 +285,7 @@ export interface ClickedBuyerProtection {
|
|
|
285
285
|
* context_owner_id: "6164889300d643000db86504",
|
|
286
286
|
* impulse_conversation_id: "198",
|
|
287
287
|
* flow: "Buy now" | "Partner offer"
|
|
288
|
-
*
|
|
288
|
+
* signal_label: "Limited-Time Offer",
|
|
289
289
|
* }
|
|
290
290
|
* ```
|
|
291
291
|
*/
|
|
@@ -296,7 +296,7 @@ export interface ClickedBuyNow {
|
|
|
296
296
|
context_owner_id: string;
|
|
297
297
|
impulse_conversation_id?: string;
|
|
298
298
|
flow?: string;
|
|
299
|
-
|
|
299
|
+
signal_label?: string;
|
|
300
300
|
signal_lot_watcher_count?: number;
|
|
301
301
|
signal_bid_count?: number;
|
|
302
302
|
}
|
|
@@ -311,7 +311,7 @@ export interface ClickedBuyNow {
|
|
|
311
311
|
* context_owner_type: "Artwork",
|
|
312
312
|
* context_owner_slug: "radna-segal-pearl",
|
|
313
313
|
* context_owner_id: "6164889300d643000db86504",
|
|
314
|
-
*
|
|
314
|
+
* signal_label: "Limited-Time Offer",
|
|
315
315
|
* }
|
|
316
316
|
* ```
|
|
317
317
|
*/
|
|
@@ -320,7 +320,7 @@ export interface ClickedContactGallery {
|
|
|
320
320
|
context_owner_type: OwnerType;
|
|
321
321
|
context_owner_slug: string;
|
|
322
322
|
context_owner_id: string;
|
|
323
|
-
|
|
323
|
+
signal_label?: string;
|
|
324
324
|
signal_lot_watcher_count?: number;
|
|
325
325
|
signal_bid_count?: number;
|
|
326
326
|
}
|
|
@@ -344,7 +344,7 @@ export interface ClickedBid {
|
|
|
344
344
|
context_owner_type: OwnerType;
|
|
345
345
|
context_owner_id: string;
|
|
346
346
|
context_owner_slug: string;
|
|
347
|
-
|
|
347
|
+
signal_label?: string;
|
|
348
348
|
signal_lot_watcher_count?: number;
|
|
349
349
|
signal_bid_count?: number;
|
|
350
350
|
}
|
|
@@ -570,7 +570,7 @@ export interface ClickedFairCard {
|
|
|
570
570
|
* destination_page_owner_id: "53188b0d8b3b8192bb0005ae",
|
|
571
571
|
* destination_page_owner_slug: "damien-hirst-anatomy-of-an-angel",
|
|
572
572
|
* type: "thumbnail"
|
|
573
|
-
*
|
|
573
|
+
* signal_label: "Limited-Time Offer",
|
|
574
574
|
* }
|
|
575
575
|
* ```
|
|
576
576
|
*/
|
|
@@ -586,7 +586,7 @@ export interface ClickedMainArtworkGrid {
|
|
|
586
586
|
type: "thumbnail";
|
|
587
587
|
position?: number;
|
|
588
588
|
sort?: string;
|
|
589
|
-
|
|
589
|
+
signal_label?: string;
|
|
590
590
|
signal_lot_watcher_count?: number;
|
|
591
591
|
signal_bid_count?: number;
|
|
592
592
|
}
|
|
@@ -2172,9 +2172,9 @@ export interface ClickedCompleteYourProfile {
|
|
|
2172
2172
|
export interface ClickedDownloadAppHeader {
|
|
2173
2173
|
action: ActionType.clickedDownloadAppHeader;
|
|
2174
2174
|
context_page_owner_type: PageOwnerType;
|
|
2175
|
-
context_page_owner_id
|
|
2175
|
+
context_page_owner_id?: string;
|
|
2176
2176
|
context_page_owner_slug?: string;
|
|
2177
|
-
user_id
|
|
2177
|
+
user_id?: string;
|
|
2178
2178
|
}
|
|
2179
2179
|
/**
|
|
2180
2180
|
* A user clicks on the footer taking them to the app store
|
|
@@ -2185,7 +2185,7 @@ export interface ClickedDownloadAppHeader {
|
|
|
2185
2185
|
export interface ClickedDownloadAppFooter {
|
|
2186
2186
|
action: ActionType.clickedDownloadAppFooter;
|
|
2187
2187
|
context_page_owner_type: PageOwnerType;
|
|
2188
|
-
context_page_owner_id
|
|
2188
|
+
context_page_owner_id?: string;
|
|
2189
2189
|
context_page_owner_slug?: string;
|
|
2190
|
-
user_id
|
|
2190
|
+
user_id?: string;
|
|
2191
2191
|
}
|
|
@@ -102,13 +102,13 @@ export interface TappedArtistSeriesGroup extends TappedEntityGroup {
|
|
|
102
102
|
* horizontal_slide_position: 1,
|
|
103
103
|
* module_height: "single",
|
|
104
104
|
* type: "thumbnail"
|
|
105
|
-
*
|
|
105
|
+
* signal_label: "Limited-Time Offer",
|
|
106
106
|
* }
|
|
107
107
|
* ```
|
|
108
108
|
*/
|
|
109
109
|
export interface TappedArtworkGroup extends TappedEntityGroup {
|
|
110
110
|
action: ActionType.tappedArtworkGroup;
|
|
111
|
-
|
|
111
|
+
signal_label?: string;
|
|
112
112
|
signal_lot_watcher_count?: number;
|
|
113
113
|
signal_bid_count?: number;
|
|
114
114
|
}
|
|
@@ -136,7 +136,7 @@ export interface TappedArtworkGroup extends TappedEntityGroup {
|
|
|
136
136
|
*/
|
|
137
137
|
export interface TappedAuctionGroup extends TappedEntityGroup {
|
|
138
138
|
action: ActionType.tappedAuctionGroup;
|
|
139
|
-
|
|
139
|
+
signal_label?: string;
|
|
140
140
|
signal_lot_watcher_count?: number;
|
|
141
141
|
signal_bid_count?: number;
|
|
142
142
|
}
|
|
@@ -385,7 +385,7 @@ export interface TappedInfoBubble {
|
|
|
385
385
|
* destination_screen_owner_id: "53188b0d8b3b8192bb0005ae",
|
|
386
386
|
* destination_screen_owner_slug: "damien-hirst-anatomy-of-an-angel",
|
|
387
387
|
* type: "thumbnail"
|
|
388
|
-
*
|
|
388
|
+
* signal_label: "Limited-Time Offer",
|
|
389
389
|
* }
|
|
390
390
|
* ```
|
|
391
391
|
*/
|
|
@@ -403,7 +403,7 @@ export interface TappedMainArtworkGrid {
|
|
|
403
403
|
sort?: string;
|
|
404
404
|
type: "thumbnail";
|
|
405
405
|
query?: string;
|
|
406
|
-
|
|
406
|
+
signal_label?: string;
|
|
407
407
|
signal_lot_watcher_count?: number;
|
|
408
408
|
signal_bid_count?: number;
|
|
409
409
|
}
|
|
@@ -735,7 +735,7 @@ export interface TappedBid {
|
|
|
735
735
|
context_owner_type: ScreenOwnerType;
|
|
736
736
|
context_owner_id: string;
|
|
737
737
|
context_owner_slug: string;
|
|
738
|
-
|
|
738
|
+
signal_label?: string;
|
|
739
739
|
signal_lot_watcher_count?: number;
|
|
740
740
|
signal_bid_count?: number;
|
|
741
741
|
}
|
|
@@ -753,7 +753,7 @@ export interface TappedBid {
|
|
|
753
753
|
* context_owner_id: "6164889300d643000db86504",
|
|
754
754
|
* impulse_conversation_id: "198",
|
|
755
755
|
* flow: "Buy now" | "Partner offer"
|
|
756
|
-
*
|
|
756
|
+
* signal_label: "Limited-Time Offer",
|
|
757
757
|
* }
|
|
758
758
|
* ```
|
|
759
759
|
*/
|
|
@@ -764,7 +764,7 @@ export interface TappedBuyNow {
|
|
|
764
764
|
context_owner_slug: string;
|
|
765
765
|
impulse_conversation_id?: string;
|
|
766
766
|
flow?: "Buy now" | "Partner offer";
|
|
767
|
-
|
|
767
|
+
signal_label?: string;
|
|
768
768
|
signal_lot_watcher_count?: number;
|
|
769
769
|
signal_bid_count?: number;
|
|
770
770
|
}
|
|
@@ -780,7 +780,7 @@ export interface TappedBuyNow {
|
|
|
780
780
|
* context_owner_type: "Artwork",
|
|
781
781
|
* context_owner_slug: "radna-segal-pearl",
|
|
782
782
|
* context_owner_id: "6164889300d643000db86504",
|
|
783
|
-
*
|
|
783
|
+
* signal_label: "Limited-Time Offer",
|
|
784
784
|
* }
|
|
785
785
|
* ```
|
|
786
786
|
*/
|
|
@@ -789,7 +789,7 @@ export interface TappedContactGallery {
|
|
|
789
789
|
context_owner_type: OwnerType;
|
|
790
790
|
context_owner_slug: string;
|
|
791
791
|
context_owner_id: string;
|
|
792
|
-
|
|
792
|
+
signal_label?: string;
|
|
793
793
|
signal_lot_watcher_count?: number;
|
|
794
794
|
signal_bid_count?: number;
|
|
795
795
|
}
|