@mitumba/sdk 1.3.0 → 1.4.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/dist/index.d.mts +8 -13
- package/dist/index.d.ts +8 -13
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -473,27 +473,22 @@ interface WishlistListing {
|
|
|
473
473
|
id: string;
|
|
474
474
|
title: string;
|
|
475
475
|
price: number;
|
|
476
|
-
condition:
|
|
477
|
-
|
|
478
|
-
|
|
479
|
-
city_id: string;
|
|
480
|
-
status: string;
|
|
481
|
-
created_at: string;
|
|
482
|
-
image_keys?: string;
|
|
476
|
+
condition: string;
|
|
477
|
+
size: string | null;
|
|
478
|
+
image_url: string | null;
|
|
483
479
|
}
|
|
484
480
|
|
|
485
481
|
interface CartItem {
|
|
486
|
-
id: string;
|
|
487
482
|
listing_id: string;
|
|
488
|
-
store_id: string;
|
|
489
|
-
store_name: string;
|
|
490
|
-
store_slug: string;
|
|
491
483
|
title: string;
|
|
492
484
|
price: number;
|
|
493
485
|
condition: string;
|
|
494
486
|
size: string | null;
|
|
495
|
-
|
|
496
|
-
|
|
487
|
+
store_id: string;
|
|
488
|
+
store_name: string;
|
|
489
|
+
store_slug: string;
|
|
490
|
+
image_url: string | null;
|
|
491
|
+
delivery_fee: number;
|
|
497
492
|
}
|
|
498
493
|
|
|
499
494
|
interface UpdateProfileInput {
|
package/dist/index.d.ts
CHANGED
|
@@ -473,27 +473,22 @@ interface WishlistListing {
|
|
|
473
473
|
id: string;
|
|
474
474
|
title: string;
|
|
475
475
|
price: number;
|
|
476
|
-
condition:
|
|
477
|
-
|
|
478
|
-
|
|
479
|
-
city_id: string;
|
|
480
|
-
status: string;
|
|
481
|
-
created_at: string;
|
|
482
|
-
image_keys?: string;
|
|
476
|
+
condition: string;
|
|
477
|
+
size: string | null;
|
|
478
|
+
image_url: string | null;
|
|
483
479
|
}
|
|
484
480
|
|
|
485
481
|
interface CartItem {
|
|
486
|
-
id: string;
|
|
487
482
|
listing_id: string;
|
|
488
|
-
store_id: string;
|
|
489
|
-
store_name: string;
|
|
490
|
-
store_slug: string;
|
|
491
483
|
title: string;
|
|
492
484
|
price: number;
|
|
493
485
|
condition: string;
|
|
494
486
|
size: string | null;
|
|
495
|
-
|
|
496
|
-
|
|
487
|
+
store_id: string;
|
|
488
|
+
store_name: string;
|
|
489
|
+
store_slug: string;
|
|
490
|
+
image_url: string | null;
|
|
491
|
+
delivery_fee: number;
|
|
497
492
|
}
|
|
498
493
|
|
|
499
494
|
interface UpdateProfileInput {
|