Variable PriceLevelIncludeSchemaConst
PriceLevelIncludeSchema: ZodObject<
{
currency: ZodOptional<
ZodUnion<
[
ZodCoercedBoolean<unknown>,
ZodObject<
{
distinct: ZodOptional<
ZodArray<ZodEnum<{ code: ...; id: ...; name: ...; symbol: ... }>>,
>;
where: ZodOptional<
ZodPipe<
ZodTransform<any, unknown>,
ZodObject<{ code: ...; id: ...; name: ...; symbol: ... }, $strip>,
>,
>;
},
$strip,
>,
],
>,
>;
discounts: ZodOptional<
ZodUnion<
[
ZodCoercedBoolean<unknown>,
ZodObject<
{
distinct: ZodOptional<
ZodArray<
ZodEnum<
{
categoryId: ...;
discountId: ...;
id: ...;
priceLevelId: ...;
productId: ...;
storeId: ...;
type: ...;
variantId: ...;
},
>,
>,
>;
where: ZodOptional<
ZodPipe<
ZodTransform<any, unknown>,
ZodObject<
{
categoryId: ...;
discountId: ...;
id: ...;
priceLevelId: ...;
productId: ...;
storeId: ...;
type: ...;
variantId: ...;
},
$strip,
>,
>,
>;
},
$strip,
>,
],
>,
>;
prices: ZodOptional<
ZodUnion<
[
ZodCoercedBoolean<unknown>,
ZodObject<
{
distinct: ZodOptional<
ZodArray<
ZodEnum<
{
cost: ...;
description: ...;
id: ...;
price: ...;
priceLevelId: ...;
variantId: ...;
},
>,
>,
>;
where: ZodOptional<
ZodPipe<
ZodTransform<any, unknown>,
ZodObject<
{
cost: ...;
description: ...;
id: ...;
price: ...;
priceLevelId: ...;
variantId: ...;
},
$strip,
>,
>,
>;
},
$strip,
>,
],
>,
>;
stores: ZodOptional<
ZodUnion<
[
ZodCoercedBoolean<unknown>,
ZodObject<
{
distinct: ZodOptional<
ZodArray<
ZodEnum<
{
description: ...;
id: ...;
name: ...;
priceLevelId: ...;
slug: ...;
},
>,
>,
>;
where: ZodOptional<
ZodPipe<
ZodTransform<any, unknown>,
ZodObject<
{
description: ...;
id: ...;
name: ...;
priceLevelId: ...;
slug: ...;
},
$strip,
>,
>,
>;
},
$strip,
>,
],
>,
>;
},
$strip,
> = ...