@mivis/petmart-api 1.2.221 → 1.2.223
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 +1 -1
- package/type.d.ts +6 -4
package/package.json
CHANGED
package/type.d.ts
CHANGED
|
@@ -177,7 +177,7 @@ declare namespace Components {
|
|
|
177
177
|
_id: string;
|
|
178
178
|
address: string;
|
|
179
179
|
floor: number;
|
|
180
|
-
intercom?:
|
|
180
|
+
intercom?: string;
|
|
181
181
|
entrance: number;
|
|
182
182
|
index?: number;
|
|
183
183
|
flat: number;
|
|
@@ -208,7 +208,7 @@ declare namespace Components {
|
|
|
208
208
|
export interface ICreateAddress {
|
|
209
209
|
user_id: string;
|
|
210
210
|
floor: number;
|
|
211
|
-
intercom:
|
|
211
|
+
intercom: string;
|
|
212
212
|
entrance: number;
|
|
213
213
|
index: number;
|
|
214
214
|
flat: number;
|
|
@@ -218,7 +218,7 @@ declare namespace Components {
|
|
|
218
218
|
export interface IUpdateAddress {
|
|
219
219
|
id: string;
|
|
220
220
|
floor: number;
|
|
221
|
-
intercom:
|
|
221
|
+
intercom: string;
|
|
222
222
|
entrance: number;
|
|
223
223
|
index: number;
|
|
224
224
|
flat: number;
|
|
@@ -931,7 +931,8 @@ declare namespace Components {
|
|
|
931
931
|
yandex_uuid?: string;
|
|
932
932
|
cdek_barcode?: string;
|
|
933
933
|
type?: DeliveryTypes;
|
|
934
|
-
yandex_offer?: OfferDto;
|
|
934
|
+
yandex_offer?: OfferDto;
|
|
935
|
+
comment?: string;
|
|
935
936
|
}
|
|
936
937
|
|
|
937
938
|
export interface IPVZ {
|
|
@@ -1256,6 +1257,7 @@ declare namespace Components {
|
|
|
1256
1257
|
export enum EReviewEntityType {
|
|
1257
1258
|
PRODUCT = 'PRODUCT',
|
|
1258
1259
|
HORSE = 'HORSE',
|
|
1260
|
+
SERVICE = 'SERVICE',
|
|
1259
1261
|
}
|
|
1260
1262
|
|
|
1261
1263
|
export enum ECreatorType {
|