@mivis/petmart-api 1.2.21 → 1.2.23
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 +10 -16
package/package.json
CHANGED
package/type.d.ts
CHANGED
|
@@ -400,6 +400,7 @@ declare namespace Components {
|
|
|
400
400
|
name: string;
|
|
401
401
|
tel: number;
|
|
402
402
|
INN: number;
|
|
403
|
+
shop_name: string;
|
|
403
404
|
}
|
|
404
405
|
|
|
405
406
|
export interface ICreateSeller {
|
|
@@ -409,22 +410,15 @@ declare namespace Components {
|
|
|
409
410
|
delivery_ways?: IDeliveryWays;
|
|
410
411
|
}
|
|
411
412
|
|
|
412
|
-
export interface
|
|
413
|
-
|
|
414
|
-
|
|
415
|
-
|
|
416
|
-
|
|
417
|
-
|
|
418
|
-
|
|
419
|
-
|
|
420
|
-
|
|
421
|
-
|
|
422
|
-
export interface IUpdateSeller {
|
|
423
|
-
id: string;
|
|
424
|
-
user_data?: TUser_Data;
|
|
425
|
-
banking_details?: IBankingDetails;
|
|
426
|
-
shop_details?: IShopDetails;
|
|
427
|
-
delivery_ways?: IDeliveryWays;
|
|
413
|
+
export interface IUpdateSellerRequest {
|
|
414
|
+
name: string;
|
|
415
|
+
email: string;
|
|
416
|
+
tel: number;
|
|
417
|
+
banking_details: IBankingDetails;
|
|
418
|
+
shop_details: IShopDetails;
|
|
419
|
+
delivery_ways: IDeliveryWays;
|
|
420
|
+
commission: number;
|
|
421
|
+
seller_id: string;
|
|
428
422
|
}
|
|
429
423
|
|
|
430
424
|
export type OrderAddress = Omit<IAddress, 'user_id'>;
|