@alphabite/medusa-sdk 0.6.11 → 0.6.13

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 CHANGED
@@ -419,6 +419,10 @@ interface EcontOffice {
419
419
  * Econt quarter ID (can be null)
420
420
  */
421
421
  econtQuarterId?: string | null;
422
+ /**
423
+ * Post code from the city
424
+ */
425
+ postCode: string;
422
426
  /**
423
427
  * Full address string
424
428
  */
@@ -619,6 +623,10 @@ interface ListCitiesInput {
619
623
  * Search query to filter cities by name or nameEn
620
624
  */
621
625
  q?: string;
626
+ /**
627
+ * Filter by region name (matches both regionName and regionNameEn)
628
+ */
629
+ region?: string;
622
630
  /**
623
631
  * Comma-separated list of fields to include
624
632
  */
@@ -763,7 +771,7 @@ interface ListOfficesInput {
763
771
  interface ListOfficesOutput {
764
772
  /**
765
773
  * Array of offices with standard fields
766
- * Includes: id, econtId, name, nameEn, econtCityId, econtQuarterId, fullAddress, etc.
774
+ * Includes: id, econtId, name, nameEn, econtCityId, econtQuarterId, postCode, fullAddress, etc.
767
775
  */
768
776
  offices: EcontOffice[];
769
777
  /**
package/dist/index.d.ts CHANGED
@@ -419,6 +419,10 @@ interface EcontOffice {
419
419
  * Econt quarter ID (can be null)
420
420
  */
421
421
  econtQuarterId?: string | null;
422
+ /**
423
+ * Post code from the city
424
+ */
425
+ postCode: string;
422
426
  /**
423
427
  * Full address string
424
428
  */
@@ -619,6 +623,10 @@ interface ListCitiesInput {
619
623
  * Search query to filter cities by name or nameEn
620
624
  */
621
625
  q?: string;
626
+ /**
627
+ * Filter by region name (matches both regionName and regionNameEn)
628
+ */
629
+ region?: string;
622
630
  /**
623
631
  * Comma-separated list of fields to include
624
632
  */
@@ -763,7 +771,7 @@ interface ListOfficesInput {
763
771
  interface ListOfficesOutput {
764
772
  /**
765
773
  * Array of offices with standard fields
766
- * Includes: id, econtId, name, nameEn, econtCityId, econtQuarterId, fullAddress, etc.
774
+ * Includes: id, econtId, name, nameEn, econtCityId, econtQuarterId, postCode, fullAddress, etc.
767
775
  */
768
776
  offices: EcontOffice[];
769
777
  /**
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@alphabite/medusa-sdk",
3
- "version": "0.6.11",
3
+ "version": "0.6.13",
4
4
  "description": "Extended Medusa utility sdk client, that adds Alphabite's plugins endpoints",
5
5
  "author": "Alphabite",
6
6
  "license": "MIT",