@chordcommerce/analytics
Version:
Chord Commerce event tracking
44 lines (43 loc) • 935 B
TypeScript
import { z } from 'zod';
export declare const productInProductsSchema: z.ZodEffects<z.ZodObject<{
product_id: z.ZodString;
sku: z.ZodString;
products: z.ZodArray<z.ZodObject<{
product_id: z.ZodString;
sku: z.ZodString;
}, "strip", z.ZodTypeAny, {
product_id?: string;
sku?: string;
}, {
product_id?: string;
sku?: string;
}>, "many">;
}, "strip", z.ZodTypeAny, {
product_id?: string;
sku?: string;
products?: {
product_id?: string;
sku?: string;
}[];
}, {
product_id?: string;
sku?: string;
products?: {
product_id?: string;
sku?: string;
}[];
}>, {
product_id?: string;
sku?: string;
products?: {
product_id?: string;
sku?: string;
}[];
}, {
product_id?: string;
sku?: string;
products?: {
product_id?: string;
sku?: string;
}[];
}>;