@zyacreatives/shared 2.5.34 → 2.5.36
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/schemas/product.d.ts +6 -0
- package/package.json +1 -1
- package/src/schemas/product.ts +12 -0
|
@@ -553,3 +553,9 @@ export type ProductSearchDocument = z.infer<typeof ProductSearchDocumentSchema>;
|
|
|
553
553
|
export type MarketplaceProductEntity = z.infer<typeof MarketplaceProductEntitySchema>;
|
|
554
554
|
export type ProductDiscountCheckInput = z.infer<typeof ProductDiscountCheckInputSchema>;
|
|
555
555
|
export type ProductDiscountCheckOutput = z.infer<typeof ProductDiscountCheckOutputSchema>;
|
|
556
|
+
export type ProductStatsOutput = z.infer<typeof ProductStatsOutputSchema>;
|
|
557
|
+
export type ProductTransactionItem = z.infer<typeof ProductTransactionItemSchema>;
|
|
558
|
+
export type ProductTransactionsOutput = z.infer<typeof ProductTransactionsOutputSchema>;
|
|
559
|
+
export type RevenueChartPoint = z.infer<typeof RevenueChartPointSchema>;
|
|
560
|
+
export type ProductRevenueChartOutput = z.infer<typeof ProductRevenueChartOutputSchema>;
|
|
561
|
+
export type RevenueChartInput = z.infer<typeof RevenueChartInputSchema>;
|
package/package.json
CHANGED
package/src/schemas/product.ts
CHANGED
|
@@ -327,3 +327,15 @@ export type ProductDiscountCheckInput = z.infer<
|
|
|
327
327
|
export type ProductDiscountCheckOutput = z.infer<
|
|
328
328
|
typeof ProductDiscountCheckOutputSchema
|
|
329
329
|
>;
|
|
330
|
+
export type ProductStatsOutput = z.infer<typeof ProductStatsOutputSchema>;
|
|
331
|
+
export type ProductTransactionItem = z.infer<
|
|
332
|
+
typeof ProductTransactionItemSchema
|
|
333
|
+
>;
|
|
334
|
+
export type ProductTransactionsOutput = z.infer<
|
|
335
|
+
typeof ProductTransactionsOutputSchema
|
|
336
|
+
>;
|
|
337
|
+
export type RevenueChartPoint = z.infer<typeof RevenueChartPointSchema>;
|
|
338
|
+
export type ProductRevenueChartOutput = z.infer<
|
|
339
|
+
typeof ProductRevenueChartOutputSchema
|
|
340
|
+
>;
|
|
341
|
+
export type RevenueChartInput = z.infer<typeof RevenueChartInputSchema>;
|