@@ -62,6 +62,15 @@ export const ripplingGetWorkerTool: ToolConfig<RipplingGetWorkerParams> = {
6262 overtime_exemption : ( data . overtime_exemption as string ) ?? null ,
6363 title_effective_date : ( data . title_effective_date as string ) ?? null ,
6464 business_partners_id : ( data . business_partners_id as unknown [ ] ) ?? [ ] ,
65+ location : data . location ?? null ,
66+ gender : ( data . gender as string ) ?? null ,
67+ date_of_birth : ( data . date_of_birth as string ) ?? null ,
68+ race : ( data . race as string ) ?? null ,
69+ ethnicity : ( data . ethnicity as string ) ?? null ,
70+ citizenship : ( data . citizenship as string ) ?? null ,
71+ termination_details : data . termination_details ?? null ,
72+ custom_fields : data . custom_fields ?? null ,
73+ country_fields : data . country_fields ?? null ,
6574 } ,
6675 }
6776 } ,
@@ -89,5 +98,14 @@ export const ripplingGetWorkerTool: ToolConfig<RipplingGetWorkerParams> = {
8998 overtime_exemption : { type : 'string' , description : 'Overtime exemption' , optional : true } ,
9099 title_effective_date : { type : 'string' , description : 'Title effective date' , optional : true } ,
91100 business_partners_id : { type : 'json' , description : 'Business partner IDs' , optional : true } ,
101+ location : { type : 'json' , description : 'Worker location' , optional : true } ,
102+ gender : { type : 'string' , description : 'Gender' , optional : true } ,
103+ date_of_birth : { type : 'string' , description : 'Date of birth' , optional : true } ,
104+ race : { type : 'string' , description : 'Race' , optional : true } ,
105+ ethnicity : { type : 'string' , description : 'Ethnicity' , optional : true } ,
106+ citizenship : { type : 'string' , description : 'Citizenship' , optional : true } ,
107+ termination_details : { type : 'json' , description : 'Termination details' , optional : true } ,
108+ custom_fields : { type : 'json' , description : 'Custom fields' , optional : true } ,
109+ country_fields : { type : 'json' , description : 'Country-specific fields' , optional : true } ,
92110 } ,
93111}
0 commit comments