@djaouad10/shared-types 1.0.10 → 1.0.12
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/index.d.ts +2 -1
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -59,6 +59,7 @@ export type CartItemWithItsVariation = PublicCartItemDTO & {
|
|
|
59
59
|
product: {
|
|
60
60
|
price: number;
|
|
61
61
|
discount_price: number | null;
|
|
62
|
+
images: PublicImageDTO[];
|
|
62
63
|
};
|
|
63
64
|
};
|
|
64
65
|
};
|
|
@@ -394,7 +395,7 @@ declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
|
394
395
|
meta: object;
|
|
395
396
|
}>;
|
|
396
397
|
}>>;
|
|
397
|
-
|
|
398
|
+
clients: import("@trpc/server").TRPCBuiltRouter<{
|
|
398
399
|
ctx: {
|
|
399
400
|
db: import("@prisma/client").PrismaClient<{
|
|
400
401
|
log: ("error" | "query" | "warn")[];
|