const trendyolFormScheme = z.object({
brand: z.string().optional(),
attributes: z.array(
z
.object({
attributeId: z.number(),
customAttributeValue: z.string().optional(),
attributeValueId: z.number().optional(),
})
.optional(),
),
});
const trendyolFormScheme = z.object({
brand: z.string().optional(),
attributes: z.array(
z
.object({
attributeId: z.number(),
customAttributeValue: z.string().optional(),
attributeValueId: z.number().optional(),
})
.optional(),
),
});