@alphabite/medusa-sdk 0.6.12 → 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 +5 -1
- package/dist/index.d.ts +5 -1
- package/package.json +1 -1
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
|
*/
|
|
@@ -767,7 +771,7 @@ interface ListOfficesInput {
|
|
|
767
771
|
interface ListOfficesOutput {
|
|
768
772
|
/**
|
|
769
773
|
* Array of offices with standard fields
|
|
770
|
-
* Includes: id, econtId, name, nameEn, econtCityId, econtQuarterId, fullAddress, etc.
|
|
774
|
+
* Includes: id, econtId, name, nameEn, econtCityId, econtQuarterId, postCode, fullAddress, etc.
|
|
771
775
|
*/
|
|
772
776
|
offices: EcontOffice[];
|
|
773
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
|
*/
|
|
@@ -767,7 +771,7 @@ interface ListOfficesInput {
|
|
|
767
771
|
interface ListOfficesOutput {
|
|
768
772
|
/**
|
|
769
773
|
* Array of offices with standard fields
|
|
770
|
-
* Includes: id, econtId, name, nameEn, econtCityId, econtQuarterId, fullAddress, etc.
|
|
774
|
+
* Includes: id, econtId, name, nameEn, econtCityId, econtQuarterId, postCode, fullAddress, etc.
|
|
771
775
|
*/
|
|
772
776
|
offices: EcontOffice[];
|
|
773
777
|
/**
|