@keystrokehq/fullenrich 0.1.2 → 0.1.4

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (65) hide show
  1. package/dist/actions/create-contact-data-list.cjs +3 -3
  2. package/dist/actions/create-contact-data-list.cjs.map +1 -1
  3. package/dist/actions/create-contact-data-list.d.cts +5 -4
  4. package/dist/actions/create-contact-data-list.d.cts.map +1 -1
  5. package/dist/actions/create-contact-data-list.d.mts +5 -4
  6. package/dist/actions/create-contact-data-list.d.mts.map +1 -1
  7. package/dist/actions/create-contact-data-list.mjs +3 -3
  8. package/dist/actions/create-contact-data-list.mjs.map +1 -1
  9. package/dist/actions/get-current-credit-balance.cjs +1 -1
  10. package/dist/actions/get-current-credit-balance.cjs.map +1 -1
  11. package/dist/actions/get-current-credit-balance.d.cts +1 -1
  12. package/dist/actions/get-current-credit-balance.d.mts +1 -1
  13. package/dist/actions/get-current-credit-balance.mjs +1 -1
  14. package/dist/actions/get-current-credit-balance.mjs.map +1 -1
  15. package/dist/actions/get-enrichment-result.cjs +13 -13
  16. package/dist/actions/get-enrichment-result.cjs.map +1 -1
  17. package/dist/actions/get-enrichment-result.d.cts +15 -15
  18. package/dist/actions/get-enrichment-result.d.mts +15 -15
  19. package/dist/actions/get-enrichment-result.mjs +13 -13
  20. package/dist/actions/get-enrichment-result.mjs.map +1 -1
  21. package/dist/actions/get-reverse-email-result.cjs +10 -10
  22. package/dist/actions/get-reverse-email-result.cjs.map +1 -1
  23. package/dist/actions/get-reverse-email-result.d.cts +11 -11
  24. package/dist/actions/get-reverse-email-result.d.mts +11 -11
  25. package/dist/actions/get-reverse-email-result.mjs +10 -10
  26. package/dist/actions/get-reverse-email-result.mjs.map +1 -1
  27. package/dist/actions/reverse-email-lookup.cjs +2 -2
  28. package/dist/actions/reverse-email-lookup.cjs.map +1 -1
  29. package/dist/actions/reverse-email-lookup.d.cts +3 -2
  30. package/dist/actions/reverse-email-lookup.d.mts +3 -2
  31. package/dist/actions/reverse-email-lookup.mjs +2 -2
  32. package/dist/actions/reverse-email-lookup.mjs.map +1 -1
  33. package/dist/actions/search-company.cjs +4 -4
  34. package/dist/actions/search-company.cjs.map +1 -1
  35. package/dist/actions/search-company.d.cts +4 -4
  36. package/dist/actions/search-company.d.mts +4 -4
  37. package/dist/actions/search-company.mjs +4 -4
  38. package/dist/actions/search-company.mjs.map +1 -1
  39. package/dist/actions/search-people.cjs +20 -20
  40. package/dist/actions/search-people.cjs.map +1 -1
  41. package/dist/actions/search-people.d.cts +33 -25
  42. package/dist/actions/search-people.d.mts +33 -25
  43. package/dist/actions/search-people.mjs +20 -20
  44. package/dist/actions/search-people.mjs.map +1 -1
  45. package/dist/actions/start-bulk-enrichment.cjs +3 -3
  46. package/dist/actions/start-bulk-enrichment.cjs.map +1 -1
  47. package/dist/actions/start-bulk-enrichment.d.cts +5 -4
  48. package/dist/actions/start-bulk-enrichment.d.cts.map +1 -1
  49. package/dist/actions/start-bulk-enrichment.d.mts +5 -4
  50. package/dist/actions/start-bulk-enrichment.d.mts.map +1 -1
  51. package/dist/actions/start-bulk-enrichment.mjs +3 -3
  52. package/dist/actions/start-bulk-enrichment.mjs.map +1 -1
  53. package/dist/actions/verify-api-key.cjs +1 -1
  54. package/dist/actions/verify-api-key.cjs.map +1 -1
  55. package/dist/actions/verify-api-key.d.cts +1 -1
  56. package/dist/actions/verify-api-key.d.mts +1 -1
  57. package/dist/actions/verify-api-key.mjs +1 -1
  58. package/dist/actions/verify-api-key.mjs.map +1 -1
  59. package/dist/catalog.cjs +1 -1
  60. package/dist/catalog.cjs.map +1 -1
  61. package/dist/catalog.d.cts +1 -1
  62. package/dist/catalog.d.mts +1 -1
  63. package/dist/catalog.mjs +1 -1
  64. package/dist/catalog.mjs.map +1 -1
  65. package/package.json +1 -1
@@ -9,42 +9,42 @@ declare const FullenrichSearchPeopleInput: z.ZodObject<{
9
9
  value: z.ZodString;
10
10
  exclude: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
11
11
  exact_match: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
12
- }, z.core.$strip>>>;
12
+ }, z.core.$loose>>>;
13
13
  person_locations: z.ZodOptional<z.ZodArray<z.ZodObject<{
14
14
  value: z.ZodString;
15
15
  exclude: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
16
16
  exact_match: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
17
- }, z.core.$strip>>>;
17
+ }, z.core.$loose>>>;
18
18
  current_company_names: z.ZodOptional<z.ZodArray<z.ZodObject<{
19
19
  value: z.ZodString;
20
20
  exclude: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
21
21
  exact_match: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
22
- }, z.core.$strip>>>;
22
+ }, z.core.$loose>>>;
23
23
  current_company_domains: z.ZodOptional<z.ZodArray<z.ZodObject<{
24
24
  value: z.ZodString;
25
25
  exclude: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
26
26
  exact_match: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
27
- }, z.core.$strip>>>;
27
+ }, z.core.$loose>>>;
28
28
  current_position_titles: z.ZodOptional<z.ZodArray<z.ZodObject<{
29
29
  value: z.ZodString;
30
30
  exclude: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
31
31
  exact_match: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
32
- }, z.core.$strip>>>;
32
+ }, z.core.$loose>>>;
33
33
  current_company_headcounts: z.ZodOptional<z.ZodArray<z.ZodObject<{
34
34
  max: z.ZodOptional<z.ZodNumber>;
35
35
  min: z.ZodOptional<z.ZodNumber>;
36
36
  exclude: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
37
- }, z.core.$strip>>>;
37
+ }, z.core.$loose>>>;
38
38
  current_company_industries: z.ZodOptional<z.ZodArray<z.ZodObject<{
39
39
  value: z.ZodString;
40
40
  exclude: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
41
41
  exact_match: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
42
- }, z.core.$strip>>>;
42
+ }, z.core.$loose>>>;
43
43
  current_position_seniority_level: z.ZodOptional<z.ZodArray<z.ZodObject<{
44
44
  value: z.ZodString;
45
45
  exclude: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
46
46
  exact_match: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
47
- }, z.core.$strip>>>;
47
+ }, z.core.$loose>>>;
48
48
  }, z.core.$strip>;
49
49
  declare const FullenrichSearchPeopleOutput: z.ZodObject<{
50
50
  people: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodObject<{
@@ -55,20 +55,20 @@ declare const FullenrichSearchPeopleOutput: z.ZodObject<{
55
55
  region: z.ZodOptional<z.ZodNullable<z.ZodString>>;
56
56
  country: z.ZodOptional<z.ZodNullable<z.ZodString>>;
57
57
  country_code: z.ZodOptional<z.ZodNullable<z.ZodString>>;
58
- }, z.core.$strip>>>;
58
+ }, z.core.$loose>>>;
59
59
  full_name: z.ZodOptional<z.ZodNullable<z.ZodString>>;
60
60
  languages: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodObject<{
61
61
  code: z.ZodOptional<z.ZodNullable<z.ZodString>>;
62
62
  language: z.ZodOptional<z.ZodNullable<z.ZodString>>;
63
63
  proficiency: z.ZodOptional<z.ZodNullable<z.ZodString>>;
64
- }, z.core.$strip>>>>;
64
+ }, z.core.$loose>>>>;
65
65
  last_name: z.ZodOptional<z.ZodNullable<z.ZodString>>;
66
66
  educations: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodObject<{
67
67
  degree: z.ZodOptional<z.ZodNullable<z.ZodString>>;
68
68
  end_at: z.ZodOptional<z.ZodNullable<z.ZodString>>;
69
69
  start_at: z.ZodOptional<z.ZodNullable<z.ZodString>>;
70
70
  school_name: z.ZodOptional<z.ZodNullable<z.ZodString>>;
71
- }, z.core.$strip>>>>;
71
+ }, z.core.$loose>>>>;
72
72
  employment: z.ZodOptional<z.ZodNullable<z.ZodObject<{
73
73
  all: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodObject<{
74
74
  title: z.ZodOptional<z.ZodNullable<z.ZodString>>;
@@ -83,7 +83,7 @@ declare const FullenrichSearchPeopleOutput: z.ZodObject<{
83
83
  region: z.ZodOptional<z.ZodNullable<z.ZodString>>;
84
84
  country: z.ZodOptional<z.ZodNullable<z.ZodString>>;
85
85
  country_code: z.ZodOptional<z.ZodNullable<z.ZodString>>;
86
- }, z.core.$strip>>>>;
86
+ }, z.core.$loose>>>>;
87
87
  description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
88
88
  company_type: z.ZodOptional<z.ZodNullable<z.ZodString>>;
89
89
  headquarters: z.ZodOptional<z.ZodNullable<z.ZodObject<{
@@ -91,12 +91,12 @@ declare const FullenrichSearchPeopleOutput: z.ZodObject<{
91
91
  region: z.ZodOptional<z.ZodNullable<z.ZodString>>;
92
92
  country: z.ZodOptional<z.ZodNullable<z.ZodString>>;
93
93
  country_code: z.ZodOptional<z.ZodNullable<z.ZodString>>;
94
- }, z.core.$strip>>>;
94
+ }, z.core.$loose>>>;
95
95
  year_founded: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
96
- }, z.core.$strip>>>;
96
+ }, z.core.$loose>>>;
97
97
  start_at: z.ZodOptional<z.ZodNullable<z.ZodString>>;
98
98
  is_current: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
99
- }, z.core.$strip>>>>;
99
+ }, z.core.$loose>>>>;
100
100
  current: z.ZodOptional<z.ZodNullable<z.ZodObject<{
101
101
  title: z.ZodOptional<z.ZodNullable<z.ZodString>>;
102
102
  end_at: z.ZodOptional<z.ZodNullable<z.ZodString>>;
@@ -110,7 +110,7 @@ declare const FullenrichSearchPeopleOutput: z.ZodObject<{
110
110
  region: z.ZodOptional<z.ZodNullable<z.ZodString>>;
111
111
  country: z.ZodOptional<z.ZodNullable<z.ZodString>>;
112
112
  country_code: z.ZodOptional<z.ZodNullable<z.ZodString>>;
113
- }, z.core.$strip>>>>;
113
+ }, z.core.$loose>>>>;
114
114
  description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
115
115
  company_type: z.ZodOptional<z.ZodNullable<z.ZodString>>;
116
116
  headquarters: z.ZodOptional<z.ZodNullable<z.ZodObject<{
@@ -118,68 +118,76 @@ declare const FullenrichSearchPeopleOutput: z.ZodObject<{
118
118
  region: z.ZodOptional<z.ZodNullable<z.ZodString>>;
119
119
  country: z.ZodOptional<z.ZodNullable<z.ZodString>>;
120
120
  country_code: z.ZodOptional<z.ZodNullable<z.ZodString>>;
121
- }, z.core.$strip>>>;
121
+ }, z.core.$loose>>>;
122
122
  year_founded: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
123
- }, z.core.$strip>>>;
123
+ }, z.core.$loose>>>;
124
124
  start_at: z.ZodOptional<z.ZodNullable<z.ZodString>>;
125
125
  is_current: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
126
- }, z.core.$strip>>>;
127
- }, z.core.$strip>>>;
126
+ }, z.core.$loose>>>;
127
+ }, z.core.$loose>>>;
128
128
  first_name: z.ZodOptional<z.ZodNullable<z.ZodString>>;
129
129
  social_profiles: z.ZodOptional<z.ZodNullable<z.ZodObject<{
130
130
  linkedin: z.ZodOptional<z.ZodNullable<z.ZodObject<{
131
131
  url: z.ZodOptional<z.ZodNullable<z.ZodString>>;
132
132
  handle: z.ZodOptional<z.ZodNullable<z.ZodString>>;
133
133
  connection_count: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
134
- }, z.core.$strip>>>;
135
- }, z.core.$strip>>>;
136
- }, z.core.$strip>>>>;
134
+ }, z.core.$loose>>>;
135
+ }, z.core.$loose>>>;
136
+ }, z.core.$loose>>>>;
137
137
  metadata: z.ZodOptional<z.ZodNullable<z.ZodObject<{
138
138
  total: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
139
139
  offset: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
140
140
  search_after: z.ZodOptional<z.ZodNullable<z.ZodString>>;
141
- }, z.core.$strip>>>;
142
- }, z.core.$strip>;
141
+ }, z.core.$loose>>>;
142
+ }, z.core.$loose>;
143
143
  declare const fullenrichSearchPeople: import("@keystrokehq/action").WorkflowActionDefinition<{
144
144
  limit?: number | undefined;
145
145
  offset?: number | undefined;
146
146
  search_after?: string | undefined;
147
147
  person_skills?: {
148
+ [x: string]: unknown;
148
149
  value: string;
149
150
  exclude?: boolean | undefined;
150
151
  exact_match?: boolean | undefined;
151
152
  }[] | undefined;
152
153
  person_locations?: {
154
+ [x: string]: unknown;
153
155
  value: string;
154
156
  exclude?: boolean | undefined;
155
157
  exact_match?: boolean | undefined;
156
158
  }[] | undefined;
157
159
  current_company_names?: {
160
+ [x: string]: unknown;
158
161
  value: string;
159
162
  exclude?: boolean | undefined;
160
163
  exact_match?: boolean | undefined;
161
164
  }[] | undefined;
162
165
  current_company_domains?: {
166
+ [x: string]: unknown;
163
167
  value: string;
164
168
  exclude?: boolean | undefined;
165
169
  exact_match?: boolean | undefined;
166
170
  }[] | undefined;
167
171
  current_position_titles?: {
172
+ [x: string]: unknown;
168
173
  value: string;
169
174
  exclude?: boolean | undefined;
170
175
  exact_match?: boolean | undefined;
171
176
  }[] | undefined;
172
177
  current_company_headcounts?: {
178
+ [x: string]: unknown;
173
179
  max?: number | undefined;
174
180
  min?: number | undefined;
175
181
  exclude?: boolean | undefined;
176
182
  }[] | undefined;
177
183
  current_company_industries?: {
184
+ [x: string]: unknown;
178
185
  value: string;
179
186
  exclude?: boolean | undefined;
180
187
  exact_match?: boolean | undefined;
181
188
  }[] | undefined;
182
189
  current_position_seniority_level?: {
190
+ [x: string]: unknown;
183
191
  value: string;
184
192
  exclude?: boolean | undefined;
185
193
  exact_match?: boolean | undefined;
@@ -9,42 +9,42 @@ declare const FullenrichSearchPeopleInput: z.ZodObject<{
9
9
  value: z.ZodString;
10
10
  exclude: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
11
11
  exact_match: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
12
- }, z.core.$strip>>>;
12
+ }, z.core.$loose>>>;
13
13
  person_locations: z.ZodOptional<z.ZodArray<z.ZodObject<{
14
14
  value: z.ZodString;
15
15
  exclude: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
16
16
  exact_match: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
17
- }, z.core.$strip>>>;
17
+ }, z.core.$loose>>>;
18
18
  current_company_names: z.ZodOptional<z.ZodArray<z.ZodObject<{
19
19
  value: z.ZodString;
20
20
  exclude: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
21
21
  exact_match: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
22
- }, z.core.$strip>>>;
22
+ }, z.core.$loose>>>;
23
23
  current_company_domains: z.ZodOptional<z.ZodArray<z.ZodObject<{
24
24
  value: z.ZodString;
25
25
  exclude: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
26
26
  exact_match: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
27
- }, z.core.$strip>>>;
27
+ }, z.core.$loose>>>;
28
28
  current_position_titles: z.ZodOptional<z.ZodArray<z.ZodObject<{
29
29
  value: z.ZodString;
30
30
  exclude: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
31
31
  exact_match: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
32
- }, z.core.$strip>>>;
32
+ }, z.core.$loose>>>;
33
33
  current_company_headcounts: z.ZodOptional<z.ZodArray<z.ZodObject<{
34
34
  max: z.ZodOptional<z.ZodNumber>;
35
35
  min: z.ZodOptional<z.ZodNumber>;
36
36
  exclude: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
37
- }, z.core.$strip>>>;
37
+ }, z.core.$loose>>>;
38
38
  current_company_industries: z.ZodOptional<z.ZodArray<z.ZodObject<{
39
39
  value: z.ZodString;
40
40
  exclude: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
41
41
  exact_match: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
42
- }, z.core.$strip>>>;
42
+ }, z.core.$loose>>>;
43
43
  current_position_seniority_level: z.ZodOptional<z.ZodArray<z.ZodObject<{
44
44
  value: z.ZodString;
45
45
  exclude: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
46
46
  exact_match: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
47
- }, z.core.$strip>>>;
47
+ }, z.core.$loose>>>;
48
48
  }, z.core.$strip>;
49
49
  declare const FullenrichSearchPeopleOutput: z.ZodObject<{
50
50
  people: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodObject<{
@@ -55,20 +55,20 @@ declare const FullenrichSearchPeopleOutput: z.ZodObject<{
55
55
  region: z.ZodOptional<z.ZodNullable<z.ZodString>>;
56
56
  country: z.ZodOptional<z.ZodNullable<z.ZodString>>;
57
57
  country_code: z.ZodOptional<z.ZodNullable<z.ZodString>>;
58
- }, z.core.$strip>>>;
58
+ }, z.core.$loose>>>;
59
59
  full_name: z.ZodOptional<z.ZodNullable<z.ZodString>>;
60
60
  languages: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodObject<{
61
61
  code: z.ZodOptional<z.ZodNullable<z.ZodString>>;
62
62
  language: z.ZodOptional<z.ZodNullable<z.ZodString>>;
63
63
  proficiency: z.ZodOptional<z.ZodNullable<z.ZodString>>;
64
- }, z.core.$strip>>>>;
64
+ }, z.core.$loose>>>>;
65
65
  last_name: z.ZodOptional<z.ZodNullable<z.ZodString>>;
66
66
  educations: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodObject<{
67
67
  degree: z.ZodOptional<z.ZodNullable<z.ZodString>>;
68
68
  end_at: z.ZodOptional<z.ZodNullable<z.ZodString>>;
69
69
  start_at: z.ZodOptional<z.ZodNullable<z.ZodString>>;
70
70
  school_name: z.ZodOptional<z.ZodNullable<z.ZodString>>;
71
- }, z.core.$strip>>>>;
71
+ }, z.core.$loose>>>>;
72
72
  employment: z.ZodOptional<z.ZodNullable<z.ZodObject<{
73
73
  all: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodObject<{
74
74
  title: z.ZodOptional<z.ZodNullable<z.ZodString>>;
@@ -83,7 +83,7 @@ declare const FullenrichSearchPeopleOutput: z.ZodObject<{
83
83
  region: z.ZodOptional<z.ZodNullable<z.ZodString>>;
84
84
  country: z.ZodOptional<z.ZodNullable<z.ZodString>>;
85
85
  country_code: z.ZodOptional<z.ZodNullable<z.ZodString>>;
86
- }, z.core.$strip>>>>;
86
+ }, z.core.$loose>>>>;
87
87
  description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
88
88
  company_type: z.ZodOptional<z.ZodNullable<z.ZodString>>;
89
89
  headquarters: z.ZodOptional<z.ZodNullable<z.ZodObject<{
@@ -91,12 +91,12 @@ declare const FullenrichSearchPeopleOutput: z.ZodObject<{
91
91
  region: z.ZodOptional<z.ZodNullable<z.ZodString>>;
92
92
  country: z.ZodOptional<z.ZodNullable<z.ZodString>>;
93
93
  country_code: z.ZodOptional<z.ZodNullable<z.ZodString>>;
94
- }, z.core.$strip>>>;
94
+ }, z.core.$loose>>>;
95
95
  year_founded: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
96
- }, z.core.$strip>>>;
96
+ }, z.core.$loose>>>;
97
97
  start_at: z.ZodOptional<z.ZodNullable<z.ZodString>>;
98
98
  is_current: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
99
- }, z.core.$strip>>>>;
99
+ }, z.core.$loose>>>>;
100
100
  current: z.ZodOptional<z.ZodNullable<z.ZodObject<{
101
101
  title: z.ZodOptional<z.ZodNullable<z.ZodString>>;
102
102
  end_at: z.ZodOptional<z.ZodNullable<z.ZodString>>;
@@ -110,7 +110,7 @@ declare const FullenrichSearchPeopleOutput: z.ZodObject<{
110
110
  region: z.ZodOptional<z.ZodNullable<z.ZodString>>;
111
111
  country: z.ZodOptional<z.ZodNullable<z.ZodString>>;
112
112
  country_code: z.ZodOptional<z.ZodNullable<z.ZodString>>;
113
- }, z.core.$strip>>>>;
113
+ }, z.core.$loose>>>>;
114
114
  description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
115
115
  company_type: z.ZodOptional<z.ZodNullable<z.ZodString>>;
116
116
  headquarters: z.ZodOptional<z.ZodNullable<z.ZodObject<{
@@ -118,68 +118,76 @@ declare const FullenrichSearchPeopleOutput: z.ZodObject<{
118
118
  region: z.ZodOptional<z.ZodNullable<z.ZodString>>;
119
119
  country: z.ZodOptional<z.ZodNullable<z.ZodString>>;
120
120
  country_code: z.ZodOptional<z.ZodNullable<z.ZodString>>;
121
- }, z.core.$strip>>>;
121
+ }, z.core.$loose>>>;
122
122
  year_founded: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
123
- }, z.core.$strip>>>;
123
+ }, z.core.$loose>>>;
124
124
  start_at: z.ZodOptional<z.ZodNullable<z.ZodString>>;
125
125
  is_current: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
126
- }, z.core.$strip>>>;
127
- }, z.core.$strip>>>;
126
+ }, z.core.$loose>>>;
127
+ }, z.core.$loose>>>;
128
128
  first_name: z.ZodOptional<z.ZodNullable<z.ZodString>>;
129
129
  social_profiles: z.ZodOptional<z.ZodNullable<z.ZodObject<{
130
130
  linkedin: z.ZodOptional<z.ZodNullable<z.ZodObject<{
131
131
  url: z.ZodOptional<z.ZodNullable<z.ZodString>>;
132
132
  handle: z.ZodOptional<z.ZodNullable<z.ZodString>>;
133
133
  connection_count: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
134
- }, z.core.$strip>>>;
135
- }, z.core.$strip>>>;
136
- }, z.core.$strip>>>>;
134
+ }, z.core.$loose>>>;
135
+ }, z.core.$loose>>>;
136
+ }, z.core.$loose>>>>;
137
137
  metadata: z.ZodOptional<z.ZodNullable<z.ZodObject<{
138
138
  total: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
139
139
  offset: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
140
140
  search_after: z.ZodOptional<z.ZodNullable<z.ZodString>>;
141
- }, z.core.$strip>>>;
142
- }, z.core.$strip>;
141
+ }, z.core.$loose>>>;
142
+ }, z.core.$loose>;
143
143
  declare const fullenrichSearchPeople: import("@keystrokehq/action").WorkflowActionDefinition<{
144
144
  limit?: number | undefined;
145
145
  offset?: number | undefined;
146
146
  search_after?: string | undefined;
147
147
  person_skills?: {
148
+ [x: string]: unknown;
148
149
  value: string;
149
150
  exclude?: boolean | undefined;
150
151
  exact_match?: boolean | undefined;
151
152
  }[] | undefined;
152
153
  person_locations?: {
154
+ [x: string]: unknown;
153
155
  value: string;
154
156
  exclude?: boolean | undefined;
155
157
  exact_match?: boolean | undefined;
156
158
  }[] | undefined;
157
159
  current_company_names?: {
160
+ [x: string]: unknown;
158
161
  value: string;
159
162
  exclude?: boolean | undefined;
160
163
  exact_match?: boolean | undefined;
161
164
  }[] | undefined;
162
165
  current_company_domains?: {
166
+ [x: string]: unknown;
163
167
  value: string;
164
168
  exclude?: boolean | undefined;
165
169
  exact_match?: boolean | undefined;
166
170
  }[] | undefined;
167
171
  current_position_titles?: {
172
+ [x: string]: unknown;
168
173
  value: string;
169
174
  exclude?: boolean | undefined;
170
175
  exact_match?: boolean | undefined;
171
176
  }[] | undefined;
172
177
  current_company_headcounts?: {
178
+ [x: string]: unknown;
173
179
  max?: number | undefined;
174
180
  min?: number | undefined;
175
181
  exclude?: boolean | undefined;
176
182
  }[] | undefined;
177
183
  current_company_industries?: {
184
+ [x: string]: unknown;
178
185
  value: string;
179
186
  exclude?: boolean | undefined;
180
187
  exact_match?: boolean | undefined;
181
188
  }[] | undefined;
182
189
  current_position_seniority_level?: {
190
+ [x: string]: unknown;
183
191
  value: string;
184
192
  exclude?: boolean | undefined;
185
193
  exact_match?: boolean | undefined;
@@ -9,66 +9,66 @@ const FullenrichSearchPeopleInput = z.object({
9
9
  value: z.string().describe("Filter term to match"),
10
10
  exclude: z.boolean().default(false).describe("When true, removes matching results; defaults to false").optional(),
11
11
  exact_match: z.boolean().default(false).describe("When true, requires precise matching (case-insensitive); defaults to false").optional()
12
- })).describe("Filter by skills. Multiple filters are combined with OR logic.").optional(),
12
+ }).passthrough()).describe("Filter by skills. Multiple filters are combined with OR logic.").optional(),
13
13
  person_locations: z.array(z.object({
14
14
  value: z.string().describe("Filter term to match"),
15
15
  exclude: z.boolean().default(false).describe("When true, removes matching results; defaults to false").optional(),
16
16
  exact_match: z.boolean().default(false).describe("When true, requires precise matching (case-insensitive); defaults to false").optional()
17
- })).describe("Filter by person locations (city, region, or country). Multiple filters are combined with OR logic.").optional(),
17
+ }).passthrough()).describe("Filter by person locations (city, region, or country). Multiple filters are combined with OR logic.").optional(),
18
18
  current_company_names: z.array(z.object({
19
19
  value: z.string().describe("Filter term to match"),
20
20
  exclude: z.boolean().default(false).describe("When true, removes matching results; defaults to false").optional(),
21
21
  exact_match: z.boolean().default(false).describe("When true, requires precise matching (case-insensitive); defaults to false").optional()
22
- })).describe("Filter by current company names. Multiple filters are combined with OR logic.").optional(),
22
+ }).passthrough()).describe("Filter by current company names. Multiple filters are combined with OR logic.").optional(),
23
23
  current_company_domains: z.array(z.object({
24
24
  value: z.string().describe("Filter term to match"),
25
25
  exclude: z.boolean().default(false).describe("When true, removes matching results; defaults to false").optional(),
26
26
  exact_match: z.boolean().default(false).describe("When true, requires precise matching (case-insensitive); defaults to false").optional()
27
- })).describe("Filter by current company domains. Multiple filters are combined with OR logic.").optional(),
27
+ }).passthrough()).describe("Filter by current company domains. Multiple filters are combined with OR logic.").optional(),
28
28
  current_position_titles: z.array(z.object({
29
29
  value: z.string().describe("Filter term to match"),
30
30
  exclude: z.boolean().default(false).describe("When true, removes matching results; defaults to false").optional(),
31
31
  exact_match: z.boolean().default(false).describe("When true, requires precise matching (case-insensitive); defaults to false").optional()
32
- })).describe("Filter by job titles. Multiple filters are combined with OR logic.").optional(),
32
+ }).passthrough()).describe("Filter by job titles. Multiple filters are combined with OR logic.").optional(),
33
33
  current_company_headcounts: z.array(z.object({
34
34
  max: z.number().int().describe("Maximum value for range").optional(),
35
35
  min: z.number().int().describe("Minimum value for range").optional(),
36
36
  exclude: z.boolean().default(false).describe("When true, removes matching results; defaults to false").optional()
37
- })).describe("Filter by company headcount ranges. Specify min/max values for the range.").optional(),
37
+ }).passthrough()).describe("Filter by company headcount ranges. Specify min/max values for the range.").optional(),
38
38
  current_company_industries: z.array(z.object({
39
39
  value: z.string().describe("Filter term to match"),
40
40
  exclude: z.boolean().default(false).describe("When true, removes matching results; defaults to false").optional(),
41
41
  exact_match: z.boolean().default(false).describe("When true, requires precise matching (case-insensitive); defaults to false").optional()
42
- })).describe("Filter by company industries. Multiple filters are combined with OR logic.").optional(),
42
+ }).passthrough()).describe("Filter by company industries. Multiple filters are combined with OR logic.").optional(),
43
43
  current_position_seniority_level: z.array(z.object({
44
44
  value: z.string().describe("Filter term to match"),
45
45
  exclude: z.boolean().default(false).describe("When true, removes matching results; defaults to false").optional(),
46
46
  exact_match: z.boolean().default(false).describe("When true, requires precise matching (case-insensitive); defaults to false").optional()
47
- })).describe("Filter by seniority level (e.g., Director, VP, C-Suite). Multiple filters are combined with OR logic.").optional()
47
+ }).passthrough()).describe("Filter by seniority level (e.g., Director, VP, C-Suite). Multiple filters are combined with OR logic.").optional()
48
48
  });
49
49
  const FullenrichSearchPeople_PersonLocationSchema = z.object({
50
50
  city: z.string().describe("City name").nullable().optional(),
51
51
  region: z.string().describe("Region or state name").nullable().optional(),
52
52
  country: z.string().describe("Country name").nullable().optional(),
53
53
  country_code: z.string().describe("Country code (ISO 3166-1 alpha-2)").nullable().optional()
54
- });
54
+ }).passthrough();
55
55
  const FullenrichSearchPeople_LanguageSchema = z.object({
56
56
  code: z.string().describe("Language code (ISO 639-1)").nullable().optional(),
57
57
  language: z.string().describe("Language name").nullable().optional(),
58
58
  proficiency: z.string().describe("Proficiency level (e.g., Native, Professional, Limited)").nullable().optional()
59
- });
59
+ }).passthrough();
60
60
  const FullenrichSearchPeople_EducationSchema = z.object({
61
61
  degree: z.string().describe("Degree obtained").nullable().optional(),
62
62
  end_at: z.string().describe("End date of education").nullable().optional(),
63
63
  start_at: z.string().describe("Start date of education").nullable().optional(),
64
64
  school_name: z.string().describe("Name of the educational institution").nullable().optional()
65
- });
65
+ }).passthrough();
66
66
  const FullenrichSearchPeople_CompanyLocationSchema = z.object({
67
67
  city: z.string().describe("City name").nullable().optional(),
68
68
  region: z.string().describe("Region or state name").nullable().optional(),
69
69
  country: z.string().describe("Country name").nullable().optional(),
70
70
  country_code: z.string().describe("Country code (ISO 3166-1 alpha-2)").nullable().optional()
71
- });
71
+ }).passthrough();
72
72
  const FullenrichSearchPeople_EmploymentCompanySchema = z.object({
73
73
  name: z.string().describe("Company name").nullable().optional(),
74
74
  domain: z.string().describe("Company domain").nullable().optional(),
@@ -79,24 +79,24 @@ const FullenrichSearchPeople_EmploymentCompanySchema = z.object({
79
79
  company_type: z.string().describe("Company type (e.g., Public Company, Privately Held)").nullable().optional(),
80
80
  headquarters: FullenrichSearchPeople_CompanyLocationSchema.nullable().optional(),
81
81
  year_founded: z.number().int().describe("Year the company was founded").nullable().optional()
82
- });
82
+ }).passthrough();
83
83
  const FullenrichSearchPeople_EmploymentSchema = z.object({
84
84
  title: z.string().describe("Job title").nullable().optional(),
85
85
  end_at: z.string().describe("End date of employment").nullable().optional(),
86
86
  company: FullenrichSearchPeople_EmploymentCompanySchema.nullable().optional(),
87
87
  start_at: z.string().describe("Start date of employment").nullable().optional(),
88
88
  is_current: z.boolean().describe("Whether this is the current employment").nullable().optional()
89
- });
89
+ }).passthrough();
90
90
  const FullenrichSearchPeople_EmploymentHistorySchema = z.object({
91
91
  all: z.array(FullenrichSearchPeople_EmploymentSchema).describe("Complete employment history").nullable().optional(),
92
92
  current: FullenrichSearchPeople_EmploymentSchema.nullable().optional()
93
- });
93
+ }).passthrough();
94
94
  const FullenrichSearchPeople_LinkedInProfileSchema = z.object({
95
95
  url: z.string().describe("LinkedIn profile URL").nullable().optional(),
96
96
  handle: z.string().describe("LinkedIn handle").nullable().optional(),
97
97
  connection_count: z.number().int().describe("Number of LinkedIn connections").nullable().optional()
98
- });
99
- const FullenrichSearchPeople_SocialProfilesSchema = z.object({ linkedin: FullenrichSearchPeople_LinkedInProfileSchema.nullable().optional() });
98
+ }).passthrough();
99
+ const FullenrichSearchPeople_SocialProfilesSchema = z.object({ linkedin: FullenrichSearchPeople_LinkedInProfileSchema.nullable().optional() }).passthrough();
100
100
  const FullenrichSearchPeople_PersonSchema = z.object({
101
101
  id: z.string().describe("Unique identifier for the person").nullable().optional(),
102
102
  skills: z.array(z.string()).describe("List of skills").nullable().optional(),
@@ -108,12 +108,12 @@ const FullenrichSearchPeople_PersonSchema = z.object({
108
108
  employment: FullenrichSearchPeople_EmploymentHistorySchema.nullable().optional(),
109
109
  first_name: z.string().describe("First name").nullable().optional(),
110
110
  social_profiles: FullenrichSearchPeople_SocialProfilesSchema.nullable().optional()
111
- });
111
+ }).passthrough();
112
112
  const FullenrichSearchPeople_PeopleMetadataSchema = z.object({
113
113
  total: z.number().int().describe("Total number of people matching the search criteria").nullable().optional(),
114
114
  offset: z.number().int().describe("Current offset in the result set").nullable().optional(),
115
115
  search_after: z.string().describe("Cursor for the next page of results when using cursor-based pagination").nullable().optional()
116
- });
116
+ }).passthrough();
117
117
  const fullenrichSearchPeople = action("FULLENRICH_SEARCH_PEOPLE", {
118
118
  slug: "fullenrich-search-people",
119
119
  name: "Search People",
@@ -122,7 +122,7 @@ const fullenrichSearchPeople = action("FULLENRICH_SEARCH_PEOPLE", {
122
122
  output: z.object({
123
123
  people: z.array(FullenrichSearchPeople_PersonSchema).describe("List of people matching the search criteria").nullable().optional(),
124
124
  metadata: FullenrichSearchPeople_PeopleMetadataSchema.nullable().optional()
125
- })
125
+ }).passthrough()
126
126
  });
127
127
  //#endregion
128
128
  export { fullenrichSearchPeople };
@@ -1 +1 @@
1
- {"version":3,"file":"search-people.mjs","names":[],"sources":["../../src/actions/search-people.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const FullenrichSearchPeopleInput = z.object({\n limit: z.number().int().describe(\"Maximum number of results to return. Default is 20 if not specified.\").optional(),\n offset: z.number().int().describe(\"Number of results to skip for pagination. Use for offset-based pagination.\").optional(),\n search_after: z.string().describe(\"Cursor for deep pagination. Use this for efficient pagination of large result sets beyond 10,000 results instead of offset.\").optional(),\n person_skills: z.array(z.object({\n value: z.string().describe(\"Filter term to match\"),\n exclude: z.boolean().default(false).describe(\"When true, removes matching results; defaults to false\").optional(),\n exact_match: z.boolean().default(false).describe(\"When true, requires precise matching (case-insensitive); defaults to false\").optional(),\n})).describe(\"Filter by skills. Multiple filters are combined with OR logic.\").optional(),\n person_locations: z.array(z.object({\n value: z.string().describe(\"Filter term to match\"),\n exclude: z.boolean().default(false).describe(\"When true, removes matching results; defaults to false\").optional(),\n exact_match: z.boolean().default(false).describe(\"When true, requires precise matching (case-insensitive); defaults to false\").optional(),\n})).describe(\"Filter by person locations (city, region, or country). Multiple filters are combined with OR logic.\").optional(),\n current_company_names: z.array(z.object({\n value: z.string().describe(\"Filter term to match\"),\n exclude: z.boolean().default(false).describe(\"When true, removes matching results; defaults to false\").optional(),\n exact_match: z.boolean().default(false).describe(\"When true, requires precise matching (case-insensitive); defaults to false\").optional(),\n})).describe(\"Filter by current company names. Multiple filters are combined with OR logic.\").optional(),\n current_company_domains: z.array(z.object({\n value: z.string().describe(\"Filter term to match\"),\n exclude: z.boolean().default(false).describe(\"When true, removes matching results; defaults to false\").optional(),\n exact_match: z.boolean().default(false).describe(\"When true, requires precise matching (case-insensitive); defaults to false\").optional(),\n})).describe(\"Filter by current company domains. Multiple filters are combined with OR logic.\").optional(),\n current_position_titles: z.array(z.object({\n value: z.string().describe(\"Filter term to match\"),\n exclude: z.boolean().default(false).describe(\"When true, removes matching results; defaults to false\").optional(),\n exact_match: z.boolean().default(false).describe(\"When true, requires precise matching (case-insensitive); defaults to false\").optional(),\n})).describe(\"Filter by job titles. Multiple filters are combined with OR logic.\").optional(),\n current_company_headcounts: z.array(z.object({\n max: z.number().int().describe(\"Maximum value for range\").optional(),\n min: z.number().int().describe(\"Minimum value for range\").optional(),\n exclude: z.boolean().default(false).describe(\"When true, removes matching results; defaults to false\").optional(),\n})).describe(\"Filter by company headcount ranges. Specify min/max values for the range.\").optional(),\n current_company_industries: z.array(z.object({\n value: z.string().describe(\"Filter term to match\"),\n exclude: z.boolean().default(false).describe(\"When true, removes matching results; defaults to false\").optional(),\n exact_match: z.boolean().default(false).describe(\"When true, requires precise matching (case-insensitive); defaults to false\").optional(),\n})).describe(\"Filter by company industries. Multiple filters are combined with OR logic.\").optional(),\n current_position_seniority_level: z.array(z.object({\n value: z.string().describe(\"Filter term to match\"),\n exclude: z.boolean().default(false).describe(\"When true, removes matching results; defaults to false\").optional(),\n exact_match: z.boolean().default(false).describe(\"When true, requires precise matching (case-insensitive); defaults to false\").optional(),\n})).describe(\"Filter by seniority level (e.g., Director, VP, C-Suite). Multiple filters are combined with OR logic.\").optional(),\n});\nconst FullenrichSearchPeople_PersonLocationSchema = z.object({\n city: z.string().describe(\"City name\").nullable().optional(),\n region: z.string().describe(\"Region or state name\").nullable().optional(),\n country: z.string().describe(\"Country name\").nullable().optional(),\n country_code: z.string().describe(\"Country code (ISO 3166-1 alpha-2)\").nullable().optional(),\n});\nconst FullenrichSearchPeople_LanguageSchema = z.object({\n code: z.string().describe(\"Language code (ISO 639-1)\").nullable().optional(),\n language: z.string().describe(\"Language name\").nullable().optional(),\n proficiency: z.string().describe(\"Proficiency level (e.g., Native, Professional, Limited)\").nullable().optional(),\n});\nconst FullenrichSearchPeople_EducationSchema = z.object({\n degree: z.string().describe(\"Degree obtained\").nullable().optional(),\n end_at: z.string().describe(\"End date of education\").nullable().optional(),\n start_at: z.string().describe(\"Start date of education\").nullable().optional(),\n school_name: z.string().describe(\"Name of the educational institution\").nullable().optional(),\n});\nconst FullenrichSearchPeople_CompanyLocationSchema = z.object({\n city: z.string().describe(\"City name\").nullable().optional(),\n region: z.string().describe(\"Region or state name\").nullable().optional(),\n country: z.string().describe(\"Country name\").nullable().optional(),\n country_code: z.string().describe(\"Country code (ISO 3166-1 alpha-2)\").nullable().optional(),\n});\nconst FullenrichSearchPeople_EmploymentCompanySchema = z.object({\n name: z.string().describe(\"Company name\").nullable().optional(),\n domain: z.string().describe(\"Company domain\").nullable().optional(),\n industry: z.string().describe(\"Company industry\").nullable().optional(),\n headcount: z.string().describe(\"Company headcount range\").nullable().optional(),\n locations: z.array(FullenrichSearchPeople_CompanyLocationSchema).describe(\"List of company office locations\").nullable().optional(),\n description: z.string().describe(\"Company description\").nullable().optional(),\n company_type: z.string().describe(\"Company type (e.g., Public Company, Privately Held)\").nullable().optional(),\n headquarters: FullenrichSearchPeople_CompanyLocationSchema.nullable().optional(),\n year_founded: z.number().int().describe(\"Year the company was founded\").nullable().optional(),\n});\nconst FullenrichSearchPeople_EmploymentSchema = z.object({\n title: z.string().describe(\"Job title\").nullable().optional(),\n end_at: z.string().describe(\"End date of employment\").nullable().optional(),\n company: FullenrichSearchPeople_EmploymentCompanySchema.nullable().optional(),\n start_at: z.string().describe(\"Start date of employment\").nullable().optional(),\n is_current: z.boolean().describe(\"Whether this is the current employment\").nullable().optional(),\n});\nconst FullenrichSearchPeople_EmploymentHistorySchema = z.object({\n all: z.array(FullenrichSearchPeople_EmploymentSchema).describe(\"Complete employment history\").nullable().optional(),\n current: FullenrichSearchPeople_EmploymentSchema.nullable().optional(),\n});\nconst FullenrichSearchPeople_LinkedInProfileSchema = z.object({\n url: z.string().describe(\"LinkedIn profile URL\").nullable().optional(),\n handle: z.string().describe(\"LinkedIn handle\").nullable().optional(),\n connection_count: z.number().int().describe(\"Number of LinkedIn connections\").nullable().optional(),\n});\nconst FullenrichSearchPeople_SocialProfilesSchema = z.object({\n linkedin: FullenrichSearchPeople_LinkedInProfileSchema.nullable().optional(),\n});\nconst FullenrichSearchPeople_PersonSchema = z.object({\n id: z.string().describe(\"Unique identifier for the person\").nullable().optional(),\n skills: z.array(z.string()).describe(\"List of skills\").nullable().optional(),\n location: FullenrichSearchPeople_PersonLocationSchema.nullable().optional(),\n full_name: z.string().describe(\"Full name\").nullable().optional(),\n languages: z.array(FullenrichSearchPeople_LanguageSchema).describe(\"Languages spoken and proficiency levels\").nullable().optional(),\n last_name: z.string().describe(\"Last name\").nullable().optional(),\n educations: z.array(FullenrichSearchPeople_EducationSchema).describe(\"Educational background\").nullable().optional(),\n employment: FullenrichSearchPeople_EmploymentHistorySchema.nullable().optional(),\n first_name: z.string().describe(\"First name\").nullable().optional(),\n social_profiles: FullenrichSearchPeople_SocialProfilesSchema.nullable().optional(),\n});\nconst FullenrichSearchPeople_PeopleMetadataSchema = z.object({\n total: z.number().int().describe(\"Total number of people matching the search criteria\").nullable().optional(),\n offset: z.number().int().describe(\"Current offset in the result set\").nullable().optional(),\n search_after: z.string().describe(\"Cursor for the next page of results when using cursor-based pagination\").nullable().optional(),\n});\nexport const FullenrichSearchPeopleOutput = z.object({\n people: z.array(FullenrichSearchPeople_PersonSchema).describe(\"List of people matching the search criteria\").nullable().optional(),\n metadata: FullenrichSearchPeople_PeopleMetadataSchema.nullable().optional(),\n});\n\nexport const fullenrichSearchPeople = action(\"FULLENRICH_SEARCH_PEOPLE\", {\n slug: \"fullenrich-search-people\",\n name: \"Search People\",\n description: \"Tool to search for people based on filters including company, location, skills, position titles, and seniority levels. Multiple filters within the same field are combined with OR logic. Use when you need to find people matching specific professional criteria.\",\n input: FullenrichSearchPeopleInput,\n output: FullenrichSearchPeopleOutput,\n});\n"],"mappings":"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"}
1
+ {"version":3,"file":"search-people.mjs","names":[],"sources":["../../src/actions/search-people.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const FullenrichSearchPeopleInput = z.object({\n limit: z.number().int().describe(\"Maximum number of results to return. Default is 20 if not specified.\").optional(),\n offset: z.number().int().describe(\"Number of results to skip for pagination. Use for offset-based pagination.\").optional(),\n search_after: z.string().describe(\"Cursor for deep pagination. Use this for efficient pagination of large result sets beyond 10,000 results instead of offset.\").optional(),\n person_skills: z.array(z.object({\n value: z.string().describe(\"Filter term to match\"),\n exclude: z.boolean().default(false).describe(\"When true, removes matching results; defaults to false\").optional(),\n exact_match: z.boolean().default(false).describe(\"When true, requires precise matching (case-insensitive); defaults to false\").optional(),\n}).passthrough()).describe(\"Filter by skills. Multiple filters are combined with OR logic.\").optional(),\n person_locations: z.array(z.object({\n value: z.string().describe(\"Filter term to match\"),\n exclude: z.boolean().default(false).describe(\"When true, removes matching results; defaults to false\").optional(),\n exact_match: z.boolean().default(false).describe(\"When true, requires precise matching (case-insensitive); defaults to false\").optional(),\n}).passthrough()).describe(\"Filter by person locations (city, region, or country). Multiple filters are combined with OR logic.\").optional(),\n current_company_names: z.array(z.object({\n value: z.string().describe(\"Filter term to match\"),\n exclude: z.boolean().default(false).describe(\"When true, removes matching results; defaults to false\").optional(),\n exact_match: z.boolean().default(false).describe(\"When true, requires precise matching (case-insensitive); defaults to false\").optional(),\n}).passthrough()).describe(\"Filter by current company names. Multiple filters are combined with OR logic.\").optional(),\n current_company_domains: z.array(z.object({\n value: z.string().describe(\"Filter term to match\"),\n exclude: z.boolean().default(false).describe(\"When true, removes matching results; defaults to false\").optional(),\n exact_match: z.boolean().default(false).describe(\"When true, requires precise matching (case-insensitive); defaults to false\").optional(),\n}).passthrough()).describe(\"Filter by current company domains. Multiple filters are combined with OR logic.\").optional(),\n current_position_titles: z.array(z.object({\n value: z.string().describe(\"Filter term to match\"),\n exclude: z.boolean().default(false).describe(\"When true, removes matching results; defaults to false\").optional(),\n exact_match: z.boolean().default(false).describe(\"When true, requires precise matching (case-insensitive); defaults to false\").optional(),\n}).passthrough()).describe(\"Filter by job titles. Multiple filters are combined with OR logic.\").optional(),\n current_company_headcounts: z.array(z.object({\n max: z.number().int().describe(\"Maximum value for range\").optional(),\n min: z.number().int().describe(\"Minimum value for range\").optional(),\n exclude: z.boolean().default(false).describe(\"When true, removes matching results; defaults to false\").optional(),\n}).passthrough()).describe(\"Filter by company headcount ranges. Specify min/max values for the range.\").optional(),\n current_company_industries: z.array(z.object({\n value: z.string().describe(\"Filter term to match\"),\n exclude: z.boolean().default(false).describe(\"When true, removes matching results; defaults to false\").optional(),\n exact_match: z.boolean().default(false).describe(\"When true, requires precise matching (case-insensitive); defaults to false\").optional(),\n}).passthrough()).describe(\"Filter by company industries. Multiple filters are combined with OR logic.\").optional(),\n current_position_seniority_level: z.array(z.object({\n value: z.string().describe(\"Filter term to match\"),\n exclude: z.boolean().default(false).describe(\"When true, removes matching results; defaults to false\").optional(),\n exact_match: z.boolean().default(false).describe(\"When true, requires precise matching (case-insensitive); defaults to false\").optional(),\n}).passthrough()).describe(\"Filter by seniority level (e.g., Director, VP, C-Suite). Multiple filters are combined with OR logic.\").optional(),\n});\nconst FullenrichSearchPeople_PersonLocationSchema = z.object({\n city: z.string().describe(\"City name\").nullable().optional(),\n region: z.string().describe(\"Region or state name\").nullable().optional(),\n country: z.string().describe(\"Country name\").nullable().optional(),\n country_code: z.string().describe(\"Country code (ISO 3166-1 alpha-2)\").nullable().optional(),\n}).passthrough();\nconst FullenrichSearchPeople_LanguageSchema = z.object({\n code: z.string().describe(\"Language code (ISO 639-1)\").nullable().optional(),\n language: z.string().describe(\"Language name\").nullable().optional(),\n proficiency: z.string().describe(\"Proficiency level (e.g., Native, Professional, Limited)\").nullable().optional(),\n}).passthrough();\nconst FullenrichSearchPeople_EducationSchema = z.object({\n degree: z.string().describe(\"Degree obtained\").nullable().optional(),\n end_at: z.string().describe(\"End date of education\").nullable().optional(),\n start_at: z.string().describe(\"Start date of education\").nullable().optional(),\n school_name: z.string().describe(\"Name of the educational institution\").nullable().optional(),\n}).passthrough();\nconst FullenrichSearchPeople_CompanyLocationSchema = z.object({\n city: z.string().describe(\"City name\").nullable().optional(),\n region: z.string().describe(\"Region or state name\").nullable().optional(),\n country: z.string().describe(\"Country name\").nullable().optional(),\n country_code: z.string().describe(\"Country code (ISO 3166-1 alpha-2)\").nullable().optional(),\n}).passthrough();\nconst FullenrichSearchPeople_EmploymentCompanySchema = z.object({\n name: z.string().describe(\"Company name\").nullable().optional(),\n domain: z.string().describe(\"Company domain\").nullable().optional(),\n industry: z.string().describe(\"Company industry\").nullable().optional(),\n headcount: z.string().describe(\"Company headcount range\").nullable().optional(),\n locations: z.array(FullenrichSearchPeople_CompanyLocationSchema).describe(\"List of company office locations\").nullable().optional(),\n description: z.string().describe(\"Company description\").nullable().optional(),\n company_type: z.string().describe(\"Company type (e.g., Public Company, Privately Held)\").nullable().optional(),\n headquarters: FullenrichSearchPeople_CompanyLocationSchema.nullable().optional(),\n year_founded: z.number().int().describe(\"Year the company was founded\").nullable().optional(),\n}).passthrough();\nconst FullenrichSearchPeople_EmploymentSchema = z.object({\n title: z.string().describe(\"Job title\").nullable().optional(),\n end_at: z.string().describe(\"End date of employment\").nullable().optional(),\n company: FullenrichSearchPeople_EmploymentCompanySchema.nullable().optional(),\n start_at: z.string().describe(\"Start date of employment\").nullable().optional(),\n is_current: z.boolean().describe(\"Whether this is the current employment\").nullable().optional(),\n}).passthrough();\nconst FullenrichSearchPeople_EmploymentHistorySchema = z.object({\n all: z.array(FullenrichSearchPeople_EmploymentSchema).describe(\"Complete employment history\").nullable().optional(),\n current: FullenrichSearchPeople_EmploymentSchema.nullable().optional(),\n}).passthrough();\nconst FullenrichSearchPeople_LinkedInProfileSchema = z.object({\n url: z.string().describe(\"LinkedIn profile URL\").nullable().optional(),\n handle: z.string().describe(\"LinkedIn handle\").nullable().optional(),\n connection_count: z.number().int().describe(\"Number of LinkedIn connections\").nullable().optional(),\n}).passthrough();\nconst FullenrichSearchPeople_SocialProfilesSchema = z.object({\n linkedin: FullenrichSearchPeople_LinkedInProfileSchema.nullable().optional(),\n}).passthrough();\nconst FullenrichSearchPeople_PersonSchema = z.object({\n id: z.string().describe(\"Unique identifier for the person\").nullable().optional(),\n skills: z.array(z.string()).describe(\"List of skills\").nullable().optional(),\n location: FullenrichSearchPeople_PersonLocationSchema.nullable().optional(),\n full_name: z.string().describe(\"Full name\").nullable().optional(),\n languages: z.array(FullenrichSearchPeople_LanguageSchema).describe(\"Languages spoken and proficiency levels\").nullable().optional(),\n last_name: z.string().describe(\"Last name\").nullable().optional(),\n educations: z.array(FullenrichSearchPeople_EducationSchema).describe(\"Educational background\").nullable().optional(),\n employment: FullenrichSearchPeople_EmploymentHistorySchema.nullable().optional(),\n first_name: z.string().describe(\"First name\").nullable().optional(),\n social_profiles: FullenrichSearchPeople_SocialProfilesSchema.nullable().optional(),\n}).passthrough();\nconst FullenrichSearchPeople_PeopleMetadataSchema = z.object({\n total: z.number().int().describe(\"Total number of people matching the search criteria\").nullable().optional(),\n offset: z.number().int().describe(\"Current offset in the result set\").nullable().optional(),\n search_after: z.string().describe(\"Cursor for the next page of results when using cursor-based pagination\").nullable().optional(),\n}).passthrough();\nexport const FullenrichSearchPeopleOutput = z.object({\n people: z.array(FullenrichSearchPeople_PersonSchema).describe(\"List of people matching the search criteria\").nullable().optional(),\n metadata: FullenrichSearchPeople_PeopleMetadataSchema.nullable().optional(),\n}).passthrough();\n\nexport const fullenrichSearchPeople = action(\"FULLENRICH_SEARCH_PEOPLE\", {\n slug: \"fullenrich-search-people\",\n name: \"Search People\",\n description: \"Tool to search for people based on filters including company, location, skills, position titles, and seniority levels. Multiple filters within the same field are combined with OR logic. Use when you need to find people matching specific professional criteria.\",\n input: FullenrichSearchPeopleInput,\n output: FullenrichSearchPeopleOutput,\n});\n"],"mappings":"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"}
@@ -4,19 +4,19 @@ let zod = require("zod");
4
4
  const FullenrichStartBulkEnrichmentInput = zod.z.object({
5
5
  name: zod.z.string().describe("Human-readable job name (e.g., 'Sales Operations in London')"),
6
6
  datas: zod.z.array(zod.z.object({
7
- custom: zod.z.object({}).describe("Free-form metadata; values must be strings. Numbers or nested objects will error").optional(),
7
+ custom: zod.z.record(zod.z.string(), zod.z.unknown()).describe("Free-form metadata; values must be strings. Numbers or nested objects will error").optional(),
8
8
  domain: zod.z.string().describe("Contact's domain; required with firstname and lastname").optional(),
9
9
  lastname: zod.z.string().describe("Contact's last name; required if not using linkedin_url").optional(),
10
10
  firstname: zod.z.string().describe("Contact's first name; required if not using linkedin_url").optional(),
11
11
  company_name: zod.z.string().describe("Contact's company name; alternative to domain when using names").optional(),
12
12
  linkedin_url: zod.z.string().describe("Full LinkedIn profile URL. If provided, names and domain/company_name are ignored").optional(),
13
13
  enrich_fields: zod.z.array(zod.z.string()).describe("Fields to enrich. Valid values: 'contact.emails', 'contact.personal_emails', 'contact.phones'. Defaults to ['contact.emails', 'contact.phones'] if not specified.").optional()
14
- })).describe("List of 1–100 contacts to enrich; see ContactData for details"),
14
+ }).passthrough()).describe("List of 1–100 contacts to enrich; see ContactData for details"),
15
15
  checkDomain: zod.z.boolean().describe("If false, skip contacts with invalid/missing domains").optional(),
16
16
  webhook_url: zod.z.string().describe("URL to receive a POST callback when job finishes, fails, or lacks credits").optional(),
17
17
  checkLinkedinUrl: zod.z.boolean().describe("If false, skip contacts with invalid/missing LinkedIn URLs").optional()
18
18
  });
19
- const FullenrichStartBulkEnrichmentOutput = zod.z.object({ enrichment_id: zod.z.string().describe("ID of the started bulk enrichment job").nullable() });
19
+ const FullenrichStartBulkEnrichmentOutput = zod.z.object({ enrichment_id: zod.z.string().describe("ID of the started bulk enrichment job").nullable() }).passthrough();
20
20
  const fullenrichStartBulkEnrichment = require_action.action("FULLENRICH_START_BULK_ENRICHMENT", {
21
21
  slug: "fullenrich-start-bulk-enrichment",
22
22
  name: "Start Bulk Enrichment",