@artsy/cohesion 4.360.0 → 4.361.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 +12 -0
- package/dist/Schema/Events/Search.d.ts +6 -6
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,15 @@
|
|
|
1
|
+
# v4.361.0 (Thu Jun 18 2026)
|
|
2
|
+
|
|
3
|
+
#### 🚀 Enhancement
|
|
4
|
+
|
|
5
|
+
- chore: make address autocomplete Country optional [#704](https://github.com/artsy/cohesion/pull/704) ([@xander-pero](https://github.com/xander-pero))
|
|
6
|
+
|
|
7
|
+
#### Authors: 1
|
|
8
|
+
|
|
9
|
+
- [@xander-pero](https://github.com/xander-pero)
|
|
10
|
+
|
|
11
|
+
---
|
|
12
|
+
|
|
1
13
|
# v4.360.0 (Wed Jun 17 2026)
|
|
2
14
|
|
|
3
15
|
#### 🚀 Enhancement
|
|
@@ -276,7 +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
|
|
279
|
+
* country?: "US" | "GB" | "DE" | "CH" | "IT" | "FR",
|
|
280
280
|
* input: "Weserstr."
|
|
281
281
|
* suggested_addresses_results: 3
|
|
282
282
|
* }
|
|
@@ -287,7 +287,7 @@ export interface AddressAutoCompletionResult {
|
|
|
287
287
|
context_module: ContextModule;
|
|
288
288
|
context_owner_type: PageOwnerType;
|
|
289
289
|
context_owner_id?: string;
|
|
290
|
-
country
|
|
290
|
+
country?: string;
|
|
291
291
|
input: string;
|
|
292
292
|
suggested_addresses_results: number;
|
|
293
293
|
}
|
|
@@ -303,7 +303,7 @@ export interface AddressAutoCompletionResult {
|
|
|
303
303
|
* context_module:"OrdersShipping",
|
|
304
304
|
* context_owner_type: "orders-shipping",
|
|
305
305
|
* context_owner_id: "57e60c68-a198-431e-8a02-6ecb01e3a99b",
|
|
306
|
-
* country
|
|
306
|
+
* country?: "US" | "GB" | "DE" | "CH" | "IT" | "FR",
|
|
307
307
|
* input: "Wes",
|
|
308
308
|
* item: "Weserstr."
|
|
309
309
|
* }
|
|
@@ -314,7 +314,7 @@ export interface SelectedItemFromAddressAutoCompletion {
|
|
|
314
314
|
context_module: ContextModule;
|
|
315
315
|
context_owner_type: PageOwnerType;
|
|
316
316
|
context_owner_id?: string;
|
|
317
|
-
country
|
|
317
|
+
country?: string;
|
|
318
318
|
input: string;
|
|
319
319
|
item: string;
|
|
320
320
|
}
|
|
@@ -330,7 +330,7 @@ export interface SelectedItemFromAddressAutoCompletion {
|
|
|
330
330
|
* context_module:"OrdersShipping",
|
|
331
331
|
* context_owner_type: "orders-shipping",
|
|
332
332
|
* context_owner_id: "57e60c68-a198-431e-8a02-6ecb01e3a99b",
|
|
333
|
-
* country
|
|
333
|
+
* country?: "US" | "GB" | "DE" | "CH" | "IT" | "FR",
|
|
334
334
|
* field: "Address line 2"
|
|
335
335
|
* }
|
|
336
336
|
* ```
|
|
@@ -340,6 +340,6 @@ export interface EditedAutocompletedAddress {
|
|
|
340
340
|
context_module: ContextModule;
|
|
341
341
|
context_owner_type: PageOwnerType;
|
|
342
342
|
context_owner_id?: string;
|
|
343
|
-
country
|
|
343
|
+
country?: string;
|
|
344
344
|
field: string;
|
|
345
345
|
}
|