@snabcentr/client-core 4.7.1 → 4.8.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/package.json
CHANGED
package/release_notes.tmp
CHANGED
|
@@ -1,4 +1,6 @@
|
|
|
1
|
-
## 4.
|
|
1
|
+
## 4.8.0 (2026-07-21)
|
|
2
2
|
|
|
3
|
-
|
|
3
|
+
### changed (1 change)
|
|
4
|
+
|
|
5
|
+
- [#13612: Доработана базовая информация об организации](web_soft/libs/angular/snabcentr-client-core-lib@04f0b2a28ce3f1c8b8a06441ab1e4e0f0d19d6d6) ([merge request](web_soft/libs/angular/snabcentr-client-core-lib!329))
|
|
4
6
|
|
|
@@ -572,7 +572,32 @@ interface ScICompanyBaseInfo {
|
|
|
572
572
|
/**
|
|
573
573
|
* Адрес компании.
|
|
574
574
|
*/
|
|
575
|
-
readonly address:
|
|
575
|
+
readonly address: {
|
|
576
|
+
/**
|
|
577
|
+
* Страна.
|
|
578
|
+
*/
|
|
579
|
+
readonly country: string;
|
|
580
|
+
/**
|
|
581
|
+
* Регион.
|
|
582
|
+
*/
|
|
583
|
+
readonly region: string;
|
|
584
|
+
/**
|
|
585
|
+
* Населенный пункт.
|
|
586
|
+
*/
|
|
587
|
+
readonly locality: string;
|
|
588
|
+
/**
|
|
589
|
+
* Улица, дом, корпус, строение и т. п. (то есть адрес с точностью до здания).
|
|
590
|
+
*/
|
|
591
|
+
readonly streetAddress: string;
|
|
592
|
+
/**
|
|
593
|
+
* Подъезд, этаж, офис и т. п. (то есть сведения о местонахождении внутри здания), название торгового или бизнес-центра, а также любое описание, не являющееся точным адресом.
|
|
594
|
+
*/
|
|
595
|
+
readonly extendedAddress?: string;
|
|
596
|
+
/**
|
|
597
|
+
* Почтовый индекс.
|
|
598
|
+
*/
|
|
599
|
+
readonly postalCode: string;
|
|
600
|
+
};
|
|
576
601
|
/**
|
|
577
602
|
* Юридический адрес компании.
|
|
578
603
|
*/
|