@alphabite/medusa-sdk 0.7.7 → 0.7.8
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/dist/index.d.mts +4 -5
- package/dist/index.d.ts +4 -5
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -488,12 +488,11 @@ interface ListCitiesInput {
|
|
|
488
488
|
*/
|
|
489
489
|
q?: string;
|
|
490
490
|
/**
|
|
491
|
-
* Filter
|
|
492
|
-
* - `true`: only cities with offices
|
|
493
|
-
* - `false`:
|
|
494
|
-
* - omitted: all cities
|
|
491
|
+
* Filter to only return cities that have at least one Econt office
|
|
492
|
+
* - `true`: only cities with offices
|
|
493
|
+
* - omitted or `false`: all cities (default)
|
|
495
494
|
*/
|
|
496
|
-
|
|
495
|
+
onlyWithOffices?: boolean;
|
|
497
496
|
/**
|
|
498
497
|
* Comma-separated list of fields to include
|
|
499
498
|
*/
|
package/dist/index.d.ts
CHANGED
|
@@ -488,12 +488,11 @@ interface ListCitiesInput {
|
|
|
488
488
|
*/
|
|
489
489
|
q?: string;
|
|
490
490
|
/**
|
|
491
|
-
* Filter
|
|
492
|
-
* - `true`: only cities with offices
|
|
493
|
-
* - `false`:
|
|
494
|
-
* - omitted: all cities
|
|
491
|
+
* Filter to only return cities that have at least one Econt office
|
|
492
|
+
* - `true`: only cities with offices
|
|
493
|
+
* - omitted or `false`: all cities (default)
|
|
495
494
|
*/
|
|
496
|
-
|
|
495
|
+
onlyWithOffices?: boolean;
|
|
497
496
|
/**
|
|
498
497
|
* Comma-separated list of fields to include
|
|
499
498
|
*/
|