@alphabite/medusa-sdk 0.5.2 → 0.5.3
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 +1 -0
- package/dist/index.d.ts +1 -0
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -196,6 +196,7 @@ interface ListReviewsOutput extends PaginatedOutput<Review> {
|
|
|
196
196
|
}
|
|
197
197
|
interface ListProductReviewsInput extends Omit<ListReviewsInput, 'product_ids'> {
|
|
198
198
|
product_id: string;
|
|
199
|
+
include_aggregated_counts?: boolean;
|
|
199
200
|
}
|
|
200
201
|
interface ListProductReviewsOutput extends PaginatedOutput<Omit<Review, 'product'>>, AggregateCounts {
|
|
201
202
|
}
|
package/dist/index.d.ts
CHANGED
|
@@ -196,6 +196,7 @@ interface ListReviewsOutput extends PaginatedOutput<Review> {
|
|
|
196
196
|
}
|
|
197
197
|
interface ListProductReviewsInput extends Omit<ListReviewsInput, 'product_ids'> {
|
|
198
198
|
product_id: string;
|
|
199
|
+
include_aggregated_counts?: boolean;
|
|
199
200
|
}
|
|
200
201
|
interface ListProductReviewsOutput extends PaginatedOutput<Omit<Review, 'product'>>, AggregateCounts {
|
|
201
202
|
}
|