@artsy/cohesion 4.356.0 → 4.358.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,36 @@
1
+ # v4.358.0 (Wed Jun 10 2026)
2
+
3
+ #### 🚀 Enhancement
4
+
5
+ - feat: add country field to auto complete [#701](https://github.com/artsy/cohesion/pull/701) ([@xander-pero](https://github.com/xander-pero))
6
+
7
+ #### Authors: 1
8
+
9
+ - [@xander-pero](https://github.com/xander-pero)
10
+
11
+ ---
12
+
13
+ # v4.357.0 (Mon Jun 01 2026)
14
+
15
+ #### 🚀 Enhancement
16
+
17
+ - chore: add invoice ContextModule [#700](https://github.com/artsy/cohesion/pull/700) ([@xander-pero](https://github.com/xander-pero))
18
+
19
+ #### 🐛 Bug Fix
20
+
21
+ - Update cimg/python Docker tag to v3.14 [#696](https://github.com/artsy/cohesion/pull/696) ([@renovate[bot]](https://github.com/renovate[bot]))
22
+
23
+ #### 🏠 Internal
24
+
25
+ - Update dep auto from 2.2.0 to v2.3.0 [#697](https://github.com/artsy/cohesion/pull/697) ([@renovate[bot]](https://github.com/renovate[bot]))
26
+
27
+ #### Authors: 2
28
+
29
+ - [@renovate[bot]](https://github.com/renovate[bot])
30
+ - [@xander-pero](https://github.com/xander-pero)
31
+
32
+ ---
33
+
1
34
  # v4.356.0 (Thu May 21 2026)
2
35
 
3
36
  #### 🚀 Enhancement
@@ -276,6 +276,7 @@ export interface SelectedSearchSuggestionQuickNavigationItem {
276
276
  * context_module:"OrdersShipping",
277
277
  * context_owner_type: "orders-shipping",
278
278
  * context_owner_id: "57e60c68-a198-431e-8a02-6ecb01e3a99b",
279
+ * country: "US" | "GB" | "DE" | "CH" | "IT" | "FR",
279
280
  * input: "Weserstr."
280
281
  * suggested_addresses_results: 3
281
282
  * }
@@ -286,6 +287,7 @@ export interface AddressAutoCompletionResult {
286
287
  context_module: ContextModule;
287
288
  context_owner_type: PageOwnerType;
288
289
  context_owner_id?: string;
290
+ country: string;
289
291
  input: string;
290
292
  suggested_addresses_results: number;
291
293
  }
@@ -301,7 +303,8 @@ export interface AddressAutoCompletionResult {
301
303
  * context_module:"OrdersShipping",
302
304
  * context_owner_type: "orders-shipping",
303
305
  * context_owner_id: "57e60c68-a198-431e-8a02-6ecb01e3a99b",
304
- * input: "Wes"
306
+ * country: "US" | "GB" | "DE" | "CH" | "IT" | "FR",
307
+ * input: "Wes",
305
308
  * item: "Weserstr."
306
309
  * }
307
310
  * ```
@@ -311,6 +314,7 @@ export interface SelectedItemFromAddressAutoCompletion {
311
314
  context_module: ContextModule;
312
315
  context_owner_type: PageOwnerType;
313
316
  context_owner_id?: string;
317
+ country: string;
314
318
  input: string;
315
319
  item: string;
316
320
  }
@@ -326,6 +330,7 @@ export interface SelectedItemFromAddressAutoCompletion {
326
330
  * context_module:"OrdersShipping",
327
331
  * context_owner_type: "orders-shipping",
328
332
  * context_owner_id: "57e60c68-a198-431e-8a02-6ecb01e3a99b",
333
+ * country: "US" | "GB" | "DE" | "CH" | "IT" | "FR",
329
334
  * field: "Address line 2"
330
335
  * }
331
336
  * ```
@@ -335,5 +340,6 @@ export interface EditedAutocompletedAddress {
335
340
  context_module: ContextModule;
336
341
  context_owner_type: PageOwnerType;
337
342
  context_owner_id?: string;
343
+ country: string;
338
344
  field: string;
339
345
  }
@@ -149,6 +149,7 @@ export declare enum ContextModule {
149
149
  infiniteDiscoveryDrawer = "infiniteDiscoveryDrawer",
150
150
  inquiry = "inquiry",
151
151
  intextTooltip = "intextTooltip",
152
+ invoice = "invoice",
152
153
  latestViewingRoomsRail = "latestViewingRoomsRail",
153
154
  liveAuctionRoom = "liveAuctionRoom",
154
155
  liveAuctionsRail = "liveAuctionsRail",
@@ -163,6 +163,7 @@ exports.ContextModule = ContextModule;
163
163
  ContextModule["infiniteDiscoveryDrawer"] = "infiniteDiscoveryDrawer";
164
164
  ContextModule["inquiry"] = "inquiry";
165
165
  ContextModule["intextTooltip"] = "intextTooltip";
166
+ ContextModule["invoice"] = "invoice";
166
167
  ContextModule["latestViewingRoomsRail"] = "latestViewingRoomsRail";
167
168
  ContextModule["liveAuctionRoom"] = "liveAuctionRoom";
168
169
  ContextModule["liveAuctionsRail"] = "liveAuctionsRail";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@artsy/cohesion",
3
- "version": "4.356.0",
3
+ "version": "4.358.0",
4
4
  "description": "Analytics schema",
5
5
  "main": "dist/index.js",
6
6
  "publishConfig": {