We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2fd2310 commit eea8000Copy full SHA for eea8000
src/platforms/hubspot/schemas.ts
@@ -204,7 +204,7 @@ export type HubspotContactUpdate = z.infer<
204
const dealPropertiesSchema = z.object({
205
amount: z.union([z.string(), z.number()]).nullable(),
206
dealname: z.string().nullable(),
207
- closedate: custom.date().nullable(),
+ closedate: custom.date().or(z.string()).nullable(),
208
dealstage: z.string().nullable(),
209
hs_deal_stage_probability: z.union([z.string(), z.number()]).nullable(),
210
hs_projected_amount: z.union([z.string(), z.number()]).nullable(),
0 commit comments