@mivis/petmart-api 1.2.20 → 1.2.22
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 +13 -16
package/package.json
CHANGED
package/type.d.ts
CHANGED
|
@@ -392,6 +392,10 @@ declare namespace Components {
|
|
|
392
392
|
updatedAt: Date;
|
|
393
393
|
}
|
|
394
394
|
|
|
395
|
+
export interface ISellerQueryRequest {
|
|
396
|
+
name?: string;
|
|
397
|
+
}
|
|
398
|
+
|
|
395
399
|
export interface ICreateSellerRequest {
|
|
396
400
|
name: string;
|
|
397
401
|
tel: number;
|
|
@@ -405,22 +409,15 @@ declare namespace Components {
|
|
|
405
409
|
delivery_ways?: IDeliveryWays;
|
|
406
410
|
}
|
|
407
411
|
|
|
408
|
-
export interface
|
|
409
|
-
|
|
410
|
-
|
|
411
|
-
|
|
412
|
-
|
|
413
|
-
|
|
414
|
-
|
|
415
|
-
|
|
416
|
-
|
|
417
|
-
|
|
418
|
-
export interface IUpdateSeller {
|
|
419
|
-
id: string;
|
|
420
|
-
user_data?: TUser_Data;
|
|
421
|
-
banking_details?: IBankingDetails;
|
|
422
|
-
shop_details?: IShopDetails;
|
|
423
|
-
delivery_ways?: IDeliveryWays;
|
|
412
|
+
export interface IUpdateSellerRequest {
|
|
413
|
+
name: string;
|
|
414
|
+
email: string;
|
|
415
|
+
tel: number;
|
|
416
|
+
banking_details: IBankingDetails;
|
|
417
|
+
shop_details: IShopDetails;
|
|
418
|
+
delivery_ways: IDeliveryWays;
|
|
419
|
+
commission: number;
|
|
420
|
+
seller_id: string;
|
|
424
421
|
}
|
|
425
422
|
|
|
426
423
|
export type OrderAddress = Omit<IAddress, 'user_id'>;
|