@artsy/cohesion 4.357.0 → 4.359.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/README.md +1 -1
- package/dist/Schema/Events/Search.d.ts +7 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,27 @@
|
|
|
1
|
+
# v4.359.0 (Fri Jun 12 2026)
|
|
2
|
+
|
|
3
|
+
#### 🚀 Enhancement
|
|
4
|
+
|
|
5
|
+
- chore: update point people in README.md [#702](https://github.com/artsy/cohesion/pull/702) ([@MounirDhahri](https://github.com/MounirDhahri))
|
|
6
|
+
|
|
7
|
+
#### Authors: 1
|
|
8
|
+
|
|
9
|
+
- Mounir Dhahri ([@MounirDhahri](https://github.com/MounirDhahri))
|
|
10
|
+
|
|
11
|
+
---
|
|
12
|
+
|
|
13
|
+
# v4.358.0 (Wed Jun 10 2026)
|
|
14
|
+
|
|
15
|
+
#### 🚀 Enhancement
|
|
16
|
+
|
|
17
|
+
- feat: add country field to auto complete [#701](https://github.com/artsy/cohesion/pull/701) ([@xander-pero](https://github.com/xander-pero))
|
|
18
|
+
|
|
19
|
+
#### Authors: 1
|
|
20
|
+
|
|
21
|
+
- [@xander-pero](https://github.com/xander-pero)
|
|
22
|
+
|
|
23
|
+
---
|
|
24
|
+
|
|
1
25
|
# v4.357.0 (Mon Jun 01 2026)
|
|
2
26
|
|
|
3
27
|
#### 🚀 Enhancement
|
package/README.md
CHANGED
|
@@ -7,7 +7,7 @@
|
|
|
7
7
|
- **Docs:** https://cohesion.artsy.net
|
|
8
8
|
- **Ci**: https://circleci.com/gh/artsy/cohesion
|
|
9
9
|
- **[NPM](https://www.npmjs.com/package/@artsy/cohesion):** Package updates are published automatically on successful merges to main. Canaries are available on PR's from feature branches.
|
|
10
|
-
- **Point People**: [
|
|
10
|
+
- **Point People**: [Xander](https://github.com/xander-pero), [Mounir](https://github.com/MounirDhahri)
|
|
11
11
|
|
|
12
12
|
## Contributing
|
|
13
13
|
|
|
@@ -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
|
-
*
|
|
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
|
}
|