@@ -145,9 +145,9 @@ export const hubspotContactUpsertSchema = z
145145 mobilephone : z . string ( ) ,
146146 company : z . string ( ) . optional ( ) ,
147147 hubspot_owner_id : z . string ( ) . optional ( ) ,
148+ $native : z . any ( ) ,
148149 } )
149- . partial ( )
150- . passthrough ( ) ;
150+ . partial ( ) ;
151151export type HubspotContactCreate = z . infer < typeof hubspotContactUpsertSchema > ;
152152export type HubspotContactUpdate = z . infer <
153153 typeof hubspotContactUpsertSchema
@@ -183,6 +183,7 @@ export const hubspotDealUpsertSchema = z
183183 closedate : custom . date ( ) ,
184184 hs_deal_stage_probability : z . string ( ) ,
185185 dealstage : z . string ( ) . optional ( ) ,
186+ $native : z . any ( ) ,
186187 } )
187188 . partial ( ) ;
188189export type HubspotDealCreate = z . infer < typeof hubspotDealUpsertSchema > ;
@@ -233,6 +234,7 @@ export const hubspotCompanyUpsertSchema = z
233234 description : z . string ( ) ,
234235 phone : z . string ( ) ,
235236 hubspot_owner_id : z . string ( ) ,
237+ $native : z . any ( ) ,
236238 } )
237239 . partial ( ) ;
238240export type HubspotCompanyCreate = z . infer < typeof hubspotCompanyUpsertSchema > ;
@@ -262,6 +264,7 @@ export const hubspotNoteUpsertSchema = z
262264 hs_note_body : z . string ( ) ,
263265 hubspot_owner_id : z . string ( ) ,
264266 hs_timestamp : z . string ( ) . optional ( ) ,
267+ $native : z . any ( ) ,
265268 } )
266269 . partial ( ) ;
267270export type HubspotNoteUpdate = z . infer < typeof hubspotNoteUpsertSchema > & {
@@ -297,6 +300,7 @@ export const hubspotTaskUpsertSchema = z
297300 hs_task_priority : z . string ( ) ,
298301 hs_timestamp : z . string ( ) . optional ( ) ,
299302 hubspot_owner_id : z . string ( ) ,
303+ $native : z . any ( ) ,
300304 } )
301305 . partial ( ) ;
302306export type HubspotTaskUpdate = z . infer < typeof hubspotTaskUpsertSchema > & {
@@ -335,6 +339,7 @@ export const hubspotMeetingUpsertSchema = z
335339 hs_meeting_start_time : z . string ( ) ,
336340 hs_meeting_end_time : z . string ( ) ,
337341 hubspot_owner_id : z . string ( ) ,
342+ $native : z . any ( ) ,
338343 } )
339344 . partial ( ) ;
340345export type HubspotMeetingUpdate = z . infer <
0 commit comments