@keystrokehq/fullenrich 0.1.2 → 0.1.3

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 (59) 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/package.json +1 -1
@@ -5,19 +5,19 @@ const FullenrichGetEnrichmentResultInput = z.object({
5
5
  forceResults: z.boolean().default(false).describe("Return partial results even if job is not finished (may be incomplete)").optional(),
6
6
  enrichment_id: z.string().describe("Bulk enrichment job ID to fetch")
7
7
  }).describe("Request parameters for retrieving bulk enrichment results.");
8
- const FullenrichGetEnrichmentResult_CostInfoSchema = z.object({ credits: z.number().int().describe("Number of credits consumed by the enrichment job").nullable() });
8
+ const FullenrichGetEnrichmentResult_CostInfoSchema = z.object({ credits: z.number().int().describe("Number of credits consumed by the enrichment job").nullable() }).passthrough();
9
9
  const FullenrichGetEnrichmentResult_EmailItemSchema = z.object({
10
10
  email: z.string().describe("Enriched email address").nullable(),
11
11
  status: z.string().describe("Status of the email (e.g., verified, risky)").nullable()
12
- });
12
+ }).passthrough();
13
13
  const FullenrichGetEnrichmentResult_PhoneItemSchema = z.object({
14
14
  number: z.string().describe("Phone number").nullable(),
15
15
  region: z.string().describe("Region or country code of the phone number").nullable()
16
- });
16
+ }).passthrough();
17
17
  const FullenrichGetEnrichmentResult_DateInfoSchema = z.object({
18
18
  year: z.number().int().describe("Year").nullable().optional(),
19
19
  month: z.number().int().describe("Month (1-12)").nullable().optional()
20
- });
20
+ }).passthrough();
21
21
  const FullenrichGetEnrichmentResult_HeadquartersSchema = z.object({
22
22
  city: z.string().describe("City").nullable().optional(),
23
23
  region: z.string().describe("Region or state").nullable().optional(),
@@ -26,7 +26,7 @@ const FullenrichGetEnrichmentResult_HeadquartersSchema = z.object({
26
26
  country_code: z.string().describe("Country code").nullable().optional(),
27
27
  address_line_1: z.string().describe("Primary address line").nullable().optional(),
28
28
  address_line_2: z.string().describe("Secondary address line").nullable().optional()
29
- });
29
+ }).passthrough();
30
30
  const FullenrichGetEnrichmentResult_CompanySchema = z.object({
31
31
  name: z.string().describe("Company name").nullable().optional(),
32
32
  domain: z.string().describe("Company domain").nullable().optional(),
@@ -40,14 +40,14 @@ const FullenrichGetEnrichmentResult_CompanySchema = z.object({
40
40
  year_founded: z.number().int().describe("Year the company was founded").nullable().optional(),
41
41
  headcount_range: z.string().describe("Employee count range").nullable().optional(),
42
42
  linkedin_handle: z.string().describe("LinkedIn company handle").nullable().optional()
43
- });
43
+ }).passthrough();
44
44
  const FullenrichGetEnrichmentResult_PositionSchema = z.object({
45
45
  title: z.string().describe("Job title").nullable().optional(),
46
46
  end_at: FullenrichGetEnrichmentResult_DateInfoSchema.nullable().optional(),
47
47
  company: FullenrichGetEnrichmentResult_CompanySchema.nullable().optional(),
48
48
  start_at: FullenrichGetEnrichmentResult_DateInfoSchema.nullable().optional(),
49
49
  description: z.string().describe("Position description").nullable().optional()
50
- });
50
+ }).passthrough();
51
51
  const FullenrichGetEnrichmentResult_ContactProfileSchema = z.object({
52
52
  summary: z.string().describe("Profile summary or bio").nullable().optional(),
53
53
  headline: z.string().describe("Profile headline or title").nullable().optional(),
@@ -60,11 +60,11 @@ const FullenrichGetEnrichmentResult_ContactProfileSchema = z.object({
60
60
  linkedin_handle: z.string().describe("LinkedIn handle or username").nullable().optional(),
61
61
  premium_account: z.boolean().describe("Whether the profile has a premium account").nullable().optional(),
62
62
  sales_navigator_id: z.string().describe("Sales Navigator profile ID").nullable().optional()
63
- });
63
+ }).passthrough();
64
64
  const FullenrichGetEnrichmentResult_SocialMediaItemSchema = z.object({
65
65
  url: z.string().describe("URL of the social media profile").nullable(),
66
66
  type: z.string().describe("Type of social media (e.g., LinkedIn, Twitter)").nullable()
67
- });
67
+ }).passthrough();
68
68
  const FullenrichGetEnrichmentResult_ContactSchema = z.object({
69
69
  domain: z.string().describe("Contact's email domain").nullable().optional(),
70
70
  emails: z.array(FullenrichGetEnrichmentResult_EmailItemSchema).describe("List of emails found for the contact").nullable().optional(),
@@ -79,11 +79,11 @@ const FullenrichGetEnrichmentResult_ContactSchema = z.object({
79
79
  most_probable_email_status: z.string().describe("Status of most probable email").nullable().optional(),
80
80
  most_probable_personal_email: z.string().describe("Most probable personal email address").nullable().optional(),
81
81
  most_probable_personal_email_status: z.string().describe("Status of most probable personal email").nullable().optional()
82
- });
82
+ }).passthrough();
83
83
  const FullenrichGetEnrichmentResult_DataItemSchema = z.object({
84
- custom: z.object({}).describe("Custom key/value pairs provided in enrichment request").nullable().optional(),
84
+ custom: z.record(z.string(), z.unknown()).describe("Custom key/value pairs provided in enrichment request").nullable().optional(),
85
85
  contact: FullenrichGetEnrichmentResult_ContactSchema.nullable()
86
- });
86
+ }).passthrough();
87
87
  const fullenrichGetEnrichmentResult = action("FULLENRICH_GET_ENRICHMENT_RESULT", {
88
88
  slug: "fullenrich-get-enrichment-result",
89
89
  name: "Get Bulk Enrichment Result",
@@ -103,7 +103,7 @@ const fullenrichGetEnrichmentResult = action("FULLENRICH_GET_ENRICHMENT_RESULT",
103
103
  "RATE_LIMIT",
104
104
  "UNKNOWN"
105
105
  ]).describe("Status of the enrichment job").nullable().optional()
106
- })
106
+ }).passthrough()
107
107
  });
108
108
  //#endregion
109
109
  export { fullenrichGetEnrichmentResult };
@@ -1 +1 @@
1
- {"version":3,"file":"get-enrichment-result.mjs","names":[],"sources":["../../src/actions/get-enrichment-result.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const FullenrichGetEnrichmentResultInput = z.object({\n forceResults: z.boolean().default(false).describe(\"Return partial results even if job is not finished (may be incomplete)\").optional(),\n enrichment_id: z.string().describe(\"Bulk enrichment job ID to fetch\"),\n}).describe(\"Request parameters for retrieving bulk enrichment results.\");\nconst FullenrichGetEnrichmentResult_CostInfoSchema = z.object({\n credits: z.number().int().describe(\"Number of credits consumed by the enrichment job\").nullable(),\n});\nconst FullenrichGetEnrichmentResult_EmailItemSchema = z.object({\n email: z.string().describe(\"Enriched email address\").nullable(),\n status: z.string().describe(\"Status of the email (e.g., verified, risky)\").nullable(),\n});\nconst FullenrichGetEnrichmentResult_PhoneItemSchema = z.object({\n number: z.string().describe(\"Phone number\").nullable(),\n region: z.string().describe(\"Region or country code of the phone number\").nullable(),\n});\nconst FullenrichGetEnrichmentResult_DateInfoSchema = z.object({\n year: z.number().int().describe(\"Year\").nullable().optional(),\n month: z.number().int().describe(\"Month (1-12)\").nullable().optional(),\n});\nconst FullenrichGetEnrichmentResult_HeadquartersSchema = z.object({\n city: z.string().describe(\"City\").nullable().optional(),\n region: z.string().describe(\"Region or state\").nullable().optional(),\n country: z.string().describe(\"Country name\").nullable().optional(),\n postal_code: z.string().describe(\"Postal code\").nullable().optional(),\n country_code: z.string().describe(\"Country code\").nullable().optional(),\n address_line_1: z.string().describe(\"Primary address line\").nullable().optional(),\n address_line_2: z.string().describe(\"Secondary address line\").nullable().optional(),\n});\nconst FullenrichGetEnrichmentResult_CompanySchema = z.object({\n name: z.string().describe(\"Company name\").nullable().optional(),\n domain: z.string().describe(\"Company domain\").nullable().optional(),\n website: z.string().describe(\"Company website URL\").nullable().optional(),\n industry: z.string().describe(\"Industry sector\").nullable().optional(),\n headcount: z.number().int().describe(\"Number of employees\").nullable().optional(),\n description: z.string().describe(\"Company description\").nullable().optional(),\n linkedin_id: z.number().int().describe(\"LinkedIn company ID\").nullable().optional(),\n headquarters: FullenrichGetEnrichmentResult_HeadquartersSchema.nullable().optional(),\n linkedin_url: z.string().describe(\"LinkedIn company URL\").nullable().optional(),\n year_founded: z.number().int().describe(\"Year the company was founded\").nullable().optional(),\n headcount_range: z.string().describe(\"Employee count range\").nullable().optional(),\n linkedin_handle: z.string().describe(\"LinkedIn company handle\").nullable().optional(),\n});\nconst FullenrichGetEnrichmentResult_PositionSchema = z.object({\n title: z.string().describe(\"Job title\").nullable().optional(),\n end_at: FullenrichGetEnrichmentResult_DateInfoSchema.nullable().optional(),\n company: FullenrichGetEnrichmentResult_CompanySchema.nullable().optional(),\n start_at: FullenrichGetEnrichmentResult_DateInfoSchema.nullable().optional(),\n description: z.string().describe(\"Position description\").nullable().optional(),\n});\nconst FullenrichGetEnrichmentResult_ContactProfileSchema = z.object({\n summary: z.string().describe(\"Profile summary or bio\").nullable().optional(),\n headline: z.string().describe(\"Profile headline or title\").nullable().optional(),\n lastname: z.string().describe(\"Last name as detected on profile\").nullable().optional(),\n location: z.string().describe(\"Profile location\").nullable().optional(),\n position: FullenrichGetEnrichmentResult_PositionSchema.nullable().optional(),\n firstname: z.string().describe(\"First name as detected on profile\").nullable().optional(),\n linkedin_id: z.number().int().describe(\"LinkedIn profile ID\").nullable().optional(),\n linkedin_url: z.string().describe(\"LinkedIn profile URL\").nullable().optional(),\n linkedin_handle: z.string().describe(\"LinkedIn handle or username\").nullable().optional(),\n premium_account: z.boolean().describe(\"Whether the profile has a premium account\").nullable().optional(),\n sales_navigator_id: z.string().describe(\"Sales Navigator profile ID\").nullable().optional(),\n});\nconst FullenrichGetEnrichmentResult_SocialMediaItemSchema = z.object({\n url: z.string().describe(\"URL of the social media profile\").nullable(),\n type: z.string().describe(\"Type of social media (e.g., LinkedIn, Twitter)\").nullable(),\n});\nconst FullenrichGetEnrichmentResult_ContactSchema = z.object({\n domain: z.string().describe(\"Contact's email domain\").nullable().optional(),\n emails: z.array(FullenrichGetEnrichmentResult_EmailItemSchema).describe(\"List of emails found for the contact\").nullable().optional(),\n phones: z.array(FullenrichGetEnrichmentResult_PhoneItemSchema).describe(\"List of phone numbers found for the contact\").nullable().optional(),\n profile: FullenrichGetEnrichmentResult_ContactProfileSchema.nullable().optional(),\n lastname: z.string().describe(\"Contact's last name\").nullable().optional(),\n firstname: z.string().describe(\"Contact's first name\").nullable().optional(),\n social_medias: z.array(FullenrichGetEnrichmentResult_SocialMediaItemSchema).describe(\"List of social media profiles for the contact\").nullable().optional(),\n personal_emails: z.array(FullenrichGetEnrichmentResult_EmailItemSchema).describe(\"List of personal emails found for the contact\").nullable().optional(),\n most_probable_email: z.string().describe(\"Most probable email address\").nullable().optional(),\n most_probable_phone: z.string().describe(\"Most probable phone number\").nullable().optional(),\n most_probable_email_status: z.string().describe(\"Status of most probable email\").nullable().optional(),\n most_probable_personal_email: z.string().describe(\"Most probable personal email address\").nullable().optional(),\n most_probable_personal_email_status: z.string().describe(\"Status of most probable personal email\").nullable().optional(),\n});\nconst FullenrichGetEnrichmentResult_DataItemSchema = z.object({\n custom: z.object({}).describe(\"Custom key/value pairs provided in enrichment request\").nullable().optional(),\n contact: FullenrichGetEnrichmentResult_ContactSchema.nullable(),\n});\nexport const FullenrichGetEnrichmentResultOutput = z.object({\n id: z.string().describe(\"Enrichment job ID\").nullable().optional(),\n cost: FullenrichGetEnrichmentResult_CostInfoSchema.nullable(),\n name: z.string().describe(\"Enrichment job name\").nullable().optional(),\n datas: z.array(FullenrichGetEnrichmentResult_DataItemSchema).describe(\"Array of enrichment result items\"),\n status: z.enum([\"CREATED\", \"IN_PROGRESS\", \"CANCELED\", \"CREDITS_INSUFFICIENT\", \"FINISHED\", \"RATE_LIMIT\", \"UNKNOWN\"]).describe(\"Status of the enrichment job\").nullable().optional(),\n});\n\nexport const fullenrichGetEnrichmentResult = action(\"FULLENRICH_GET_ENRICHMENT_RESULT\", {\n slug: \"fullenrich-get-enrichment-result\",\n name: \"Get Bulk Enrichment Result\",\n description: \"Tool to retrieve results of a bulk enrichment by enrichment ID. Use after submitting a bulk enrichment job to check its status and get enriched data.\",\n input: FullenrichGetEnrichmentResultInput,\n output: FullenrichGetEnrichmentResultOutput,\n});\n"],"mappings":"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"}
1
+ {"version":3,"file":"get-enrichment-result.mjs","names":[],"sources":["../../src/actions/get-enrichment-result.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const FullenrichGetEnrichmentResultInput = z.object({\n forceResults: z.boolean().default(false).describe(\"Return partial results even if job is not finished (may be incomplete)\").optional(),\n enrichment_id: z.string().describe(\"Bulk enrichment job ID to fetch\"),\n}).describe(\"Request parameters for retrieving bulk enrichment results.\");\nconst FullenrichGetEnrichmentResult_CostInfoSchema = z.object({\n credits: z.number().int().describe(\"Number of credits consumed by the enrichment job\").nullable(),\n}).passthrough();\nconst FullenrichGetEnrichmentResult_EmailItemSchema = z.object({\n email: z.string().describe(\"Enriched email address\").nullable(),\n status: z.string().describe(\"Status of the email (e.g., verified, risky)\").nullable(),\n}).passthrough();\nconst FullenrichGetEnrichmentResult_PhoneItemSchema = z.object({\n number: z.string().describe(\"Phone number\").nullable(),\n region: z.string().describe(\"Region or country code of the phone number\").nullable(),\n}).passthrough();\nconst FullenrichGetEnrichmentResult_DateInfoSchema = z.object({\n year: z.number().int().describe(\"Year\").nullable().optional(),\n month: z.number().int().describe(\"Month (1-12)\").nullable().optional(),\n}).passthrough();\nconst FullenrichGetEnrichmentResult_HeadquartersSchema = z.object({\n city: z.string().describe(\"City\").nullable().optional(),\n region: z.string().describe(\"Region or state\").nullable().optional(),\n country: z.string().describe(\"Country name\").nullable().optional(),\n postal_code: z.string().describe(\"Postal code\").nullable().optional(),\n country_code: z.string().describe(\"Country code\").nullable().optional(),\n address_line_1: z.string().describe(\"Primary address line\").nullable().optional(),\n address_line_2: z.string().describe(\"Secondary address line\").nullable().optional(),\n}).passthrough();\nconst FullenrichGetEnrichmentResult_CompanySchema = z.object({\n name: z.string().describe(\"Company name\").nullable().optional(),\n domain: z.string().describe(\"Company domain\").nullable().optional(),\n website: z.string().describe(\"Company website URL\").nullable().optional(),\n industry: z.string().describe(\"Industry sector\").nullable().optional(),\n headcount: z.number().int().describe(\"Number of employees\").nullable().optional(),\n description: z.string().describe(\"Company description\").nullable().optional(),\n linkedin_id: z.number().int().describe(\"LinkedIn company ID\").nullable().optional(),\n headquarters: FullenrichGetEnrichmentResult_HeadquartersSchema.nullable().optional(),\n linkedin_url: z.string().describe(\"LinkedIn company URL\").nullable().optional(),\n year_founded: z.number().int().describe(\"Year the company was founded\").nullable().optional(),\n headcount_range: z.string().describe(\"Employee count range\").nullable().optional(),\n linkedin_handle: z.string().describe(\"LinkedIn company handle\").nullable().optional(),\n}).passthrough();\nconst FullenrichGetEnrichmentResult_PositionSchema = z.object({\n title: z.string().describe(\"Job title\").nullable().optional(),\n end_at: FullenrichGetEnrichmentResult_DateInfoSchema.nullable().optional(),\n company: FullenrichGetEnrichmentResult_CompanySchema.nullable().optional(),\n start_at: FullenrichGetEnrichmentResult_DateInfoSchema.nullable().optional(),\n description: z.string().describe(\"Position description\").nullable().optional(),\n}).passthrough();\nconst FullenrichGetEnrichmentResult_ContactProfileSchema = z.object({\n summary: z.string().describe(\"Profile summary or bio\").nullable().optional(),\n headline: z.string().describe(\"Profile headline or title\").nullable().optional(),\n lastname: z.string().describe(\"Last name as detected on profile\").nullable().optional(),\n location: z.string().describe(\"Profile location\").nullable().optional(),\n position: FullenrichGetEnrichmentResult_PositionSchema.nullable().optional(),\n firstname: z.string().describe(\"First name as detected on profile\").nullable().optional(),\n linkedin_id: z.number().int().describe(\"LinkedIn profile ID\").nullable().optional(),\n linkedin_url: z.string().describe(\"LinkedIn profile URL\").nullable().optional(),\n linkedin_handle: z.string().describe(\"LinkedIn handle or username\").nullable().optional(),\n premium_account: z.boolean().describe(\"Whether the profile has a premium account\").nullable().optional(),\n sales_navigator_id: z.string().describe(\"Sales Navigator profile ID\").nullable().optional(),\n}).passthrough();\nconst FullenrichGetEnrichmentResult_SocialMediaItemSchema = z.object({\n url: z.string().describe(\"URL of the social media profile\").nullable(),\n type: z.string().describe(\"Type of social media (e.g., LinkedIn, Twitter)\").nullable(),\n}).passthrough();\nconst FullenrichGetEnrichmentResult_ContactSchema = z.object({\n domain: z.string().describe(\"Contact's email domain\").nullable().optional(),\n emails: z.array(FullenrichGetEnrichmentResult_EmailItemSchema).describe(\"List of emails found for the contact\").nullable().optional(),\n phones: z.array(FullenrichGetEnrichmentResult_PhoneItemSchema).describe(\"List of phone numbers found for the contact\").nullable().optional(),\n profile: FullenrichGetEnrichmentResult_ContactProfileSchema.nullable().optional(),\n lastname: z.string().describe(\"Contact's last name\").nullable().optional(),\n firstname: z.string().describe(\"Contact's first name\").nullable().optional(),\n social_medias: z.array(FullenrichGetEnrichmentResult_SocialMediaItemSchema).describe(\"List of social media profiles for the contact\").nullable().optional(),\n personal_emails: z.array(FullenrichGetEnrichmentResult_EmailItemSchema).describe(\"List of personal emails found for the contact\").nullable().optional(),\n most_probable_email: z.string().describe(\"Most probable email address\").nullable().optional(),\n most_probable_phone: z.string().describe(\"Most probable phone number\").nullable().optional(),\n most_probable_email_status: z.string().describe(\"Status of most probable email\").nullable().optional(),\n most_probable_personal_email: z.string().describe(\"Most probable personal email address\").nullable().optional(),\n most_probable_personal_email_status: z.string().describe(\"Status of most probable personal email\").nullable().optional(),\n}).passthrough();\nconst FullenrichGetEnrichmentResult_DataItemSchema = z.object({\n custom: z.record(z.string(), z.unknown()).describe(\"Custom key/value pairs provided in enrichment request\").nullable().optional(),\n contact: FullenrichGetEnrichmentResult_ContactSchema.nullable(),\n}).passthrough();\nexport const FullenrichGetEnrichmentResultOutput = z.object({\n id: z.string().describe(\"Enrichment job ID\").nullable().optional(),\n cost: FullenrichGetEnrichmentResult_CostInfoSchema.nullable(),\n name: z.string().describe(\"Enrichment job name\").nullable().optional(),\n datas: z.array(FullenrichGetEnrichmentResult_DataItemSchema).describe(\"Array of enrichment result items\"),\n status: z.enum([\"CREATED\", \"IN_PROGRESS\", \"CANCELED\", \"CREDITS_INSUFFICIENT\", \"FINISHED\", \"RATE_LIMIT\", \"UNKNOWN\"]).describe(\"Status of the enrichment job\").nullable().optional(),\n}).passthrough();\n\nexport const fullenrichGetEnrichmentResult = action(\"FULLENRICH_GET_ENRICHMENT_RESULT\", {\n slug: \"fullenrich-get-enrichment-result\",\n name: \"Get Bulk Enrichment Result\",\n description: \"Tool to retrieve results of a bulk enrichment by enrichment ID. Use after submitting a bulk enrichment job to check its status and get enriched data.\",\n input: FullenrichGetEnrichmentResultInput,\n output: FullenrichGetEnrichmentResultOutput,\n});\n"],"mappings":";;;AAIA,MAAa,qCAAqC,EAAE,OAAO;CACzD,cAAc,EAAE,QAAQ,CAAC,CAAC,QAAQ,KAAK,CAAC,CAAC,SAAS,wEAAwE,CAAC,CAAC,SAAS;CACrI,eAAe,EAAE,OAAO,CAAC,CAAC,SAAS,iCAAiC;AACtE,CAAC,CAAC,CAAC,SAAS,4DAA4D;AACxE,MAAM,+CAA+C,EAAE,OAAO,EAC5D,SAAS,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,SAAS,kDAAkD,CAAC,CAAC,SAAS,EAClG,CAAC,CAAC,CAAC,YAAY;AACf,MAAM,gDAAgD,EAAE,OAAO;CAC7D,OAAO,EAAE,OAAO,CAAC,CAAC,SAAS,wBAAwB,CAAC,CAAC,SAAS;CAC9D,QAAQ,EAAE,OAAO,CAAC,CAAC,SAAS,6CAA6C,CAAC,CAAC,SAAS;AACtF,CAAC,CAAC,CAAC,YAAY;AACf,MAAM,gDAAgD,EAAE,OAAO;CAC7D,QAAQ,EAAE,OAAO,CAAC,CAAC,SAAS,cAAc,CAAC,CAAC,SAAS;CACrD,QAAQ,EAAE,OAAO,CAAC,CAAC,SAAS,4CAA4C,CAAC,CAAC,SAAS;AACrF,CAAC,CAAC,CAAC,YAAY;AACf,MAAM,+CAA+C,EAAE,OAAO;CAC5D,MAAM,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,SAAS,MAAM,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CAC5D,OAAO,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,SAAS,cAAc,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;AACvE,CAAC,CAAC,CAAC,YAAY;AACf,MAAM,mDAAmD,EAAE,OAAO;CAChE,MAAM,EAAE,OAAO,CAAC,CAAC,SAAS,MAAM,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CACtD,QAAQ,EAAE,OAAO,CAAC,CAAC,SAAS,iBAAiB,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CACnE,SAAS,EAAE,OAAO,CAAC,CAAC,SAAS,cAAc,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CACjE,aAAa,EAAE,OAAO,CAAC,CAAC,SAAS,aAAa,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CACpE,cAAc,EAAE,OAAO,CAAC,CAAC,SAAS,cAAc,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CACtE,gBAAgB,EAAE,OAAO,CAAC,CAAC,SAAS,sBAAsB,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CAChF,gBAAgB,EAAE,OAAO,CAAC,CAAC,SAAS,wBAAwB,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;AACpF,CAAC,CAAC,CAAC,YAAY;AACf,MAAM,8CAA8C,EAAE,OAAO;CAC3D,MAAM,EAAE,OAAO,CAAC,CAAC,SAAS,cAAc,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CAC9D,QAAQ,EAAE,OAAO,CAAC,CAAC,SAAS,gBAAgB,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CAClE,SAAS,EAAE,OAAO,CAAC,CAAC,SAAS,qBAAqB,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CACxE,UAAU,EAAE,OAAO,CAAC,CAAC,SAAS,iBAAiB,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CACrE,WAAW,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,SAAS,qBAAqB,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CAChF,aAAa,EAAE,OAAO,CAAC,CAAC,SAAS,qBAAqB,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CAC5E,aAAa,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,SAAS,qBAAqB,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CAClF,cAAc,iDAAiD,SAAS,CAAC,CAAC,SAAS;CACnF,cAAc,EAAE,OAAO,CAAC,CAAC,SAAS,sBAAsB,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CAC9E,cAAc,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,SAAS,8BAA8B,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CAC5F,iBAAiB,EAAE,OAAO,CAAC,CAAC,SAAS,sBAAsB,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CACjF,iBAAiB,EAAE,OAAO,CAAC,CAAC,SAAS,yBAAyB,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;AACtF,CAAC,CAAC,CAAC,YAAY;AACf,MAAM,+CAA+C,EAAE,OAAO;CAC5D,OAAO,EAAE,OAAO,CAAC,CAAC,SAAS,WAAW,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CAC5D,QAAQ,6CAA6C,SAAS,CAAC,CAAC,SAAS;CACzE,SAAS,4CAA4C,SAAS,CAAC,CAAC,SAAS;CACzE,UAAU,6CAA6C,SAAS,CAAC,CAAC,SAAS;CAC3E,aAAa,EAAE,OAAO,CAAC,CAAC,SAAS,sBAAsB,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;AAC/E,CAAC,CAAC,CAAC,YAAY;AACf,MAAM,qDAAqD,EAAE,OAAO;CAClE,SAAS,EAAE,OAAO,CAAC,CAAC,SAAS,wBAAwB,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CAC3E,UAAU,EAAE,OAAO,CAAC,CAAC,SAAS,2BAA2B,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CAC/E,UAAU,EAAE,OAAO,CAAC,CAAC,SAAS,kCAAkC,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CACtF,UAAU,EAAE,OAAO,CAAC,CAAC,SAAS,kBAAkB,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CACtE,UAAU,6CAA6C,SAAS,CAAC,CAAC,SAAS;CAC3E,WAAW,EAAE,OAAO,CAAC,CAAC,SAAS,mCAAmC,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CACxF,aAAa,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,SAAS,qBAAqB,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CAClF,cAAc,EAAE,OAAO,CAAC,CAAC,SAAS,sBAAsB,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CAC9E,iBAAiB,EAAE,OAAO,CAAC,CAAC,SAAS,6BAA6B,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CACxF,iBAAiB,EAAE,QAAQ,CAAC,CAAC,SAAS,2CAA2C,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CACvG,oBAAoB,EAAE,OAAO,CAAC,CAAC,SAAS,4BAA4B,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;AAC5F,CAAC,CAAC,CAAC,YAAY;AACf,MAAM,sDAAsD,EAAE,OAAO;CACnE,KAAK,EAAE,OAAO,CAAC,CAAC,SAAS,iCAAiC,CAAC,CAAC,SAAS;CACrE,MAAM,EAAE,OAAO,CAAC,CAAC,SAAS,gDAAgD,CAAC,CAAC,SAAS;AACvF,CAAC,CAAC,CAAC,YAAY;AACf,MAAM,8CAA8C,EAAE,OAAO;CAC3D,QAAQ,EAAE,OAAO,CAAC,CAAC,SAAS,wBAAwB,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CAC1E,QAAQ,EAAE,MAAM,6CAA6C,CAAC,CAAC,SAAS,sCAAsC,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CACpI,QAAQ,EAAE,MAAM,6CAA6C,CAAC,CAAC,SAAS,6CAA6C,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CAC3I,SAAS,mDAAmD,SAAS,CAAC,CAAC,SAAS;CAChF,UAAU,EAAE,OAAO,CAAC,CAAC,SAAS,qBAAqB,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CACzE,WAAW,EAAE,OAAO,CAAC,CAAC,SAAS,sBAAsB,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CAC3E,eAAe,EAAE,MAAM,mDAAmD,CAAC,CAAC,SAAS,+CAA+C,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CAC1J,iBAAiB,EAAE,MAAM,6CAA6C,CAAC,CAAC,SAAS,+CAA+C,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CACtJ,qBAAqB,EAAE,OAAO,CAAC,CAAC,SAAS,6BAA6B,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CAC5F,qBAAqB,EAAE,OAAO,CAAC,CAAC,SAAS,4BAA4B,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CAC3F,4BAA4B,EAAE,OAAO,CAAC,CAAC,SAAS,+BAA+B,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CACrG,8BAA8B,EAAE,OAAO,CAAC,CAAC,SAAS,sCAAsC,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CAC9G,qCAAqC,EAAE,OAAO,CAAC,CAAC,SAAS,wCAAwC,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;AACzH,CAAC,CAAC,CAAC,YAAY;AACf,MAAM,+CAA+C,EAAE,OAAO;CAC5D,QAAQ,EAAE,OAAO,EAAE,OAAO,GAAG,EAAE,QAAQ,CAAC,CAAC,CAAC,SAAS,uDAAuD,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CAChI,SAAS,4CAA4C,SAAS;AAChE,CAAC,CAAC,CAAC,YAAY;AASf,MAAa,gCAAgC,OAAO,oCAAoC;CACtF,MAAM;CACN,MAAM;CACN,aAAa;CACb,OAAO;CACP,QAbiD,EAAE,OAAO;EAC1D,IAAI,EAAE,OAAO,CAAC,CAAC,SAAS,mBAAmB,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;EACjE,MAAM,6CAA6C,SAAS;EAC5D,MAAM,EAAE,OAAO,CAAC,CAAC,SAAS,qBAAqB,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;EACrE,OAAO,EAAE,MAAM,4CAA4C,CAAC,CAAC,SAAS,kCAAkC;EACxG,QAAQ,EAAE,KAAK;GAAC;GAAW;GAAe;GAAY;GAAwB;GAAY;GAAc;EAAS,CAAC,CAAC,CAAC,SAAS,8BAA8B,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CACnL,CAAC,CAAC,CAAC,YAOO;AACV,CAAC"}
@@ -2,12 +2,12 @@ const require_action = require("../action.cjs");
2
2
  let zod = require("zod");
3
3
  //#region src/actions/get-reverse-email-result.ts
4
4
  const FullenrichGetReverseEmailResultInput = zod.z.object({ reverse_email_id: zod.z.string().describe("The unique identifier (UUID) for the reverse email lookup operation") }).describe("Request parameters for retrieving reverse email lookup results.");
5
- const FullenrichGetReverseEmailResult_CostInfoSchema = zod.z.object({ credits: zod.z.number().int().describe("Number of credits consumed by the operation").nullable() });
6
- const FullenrichGetReverseEmailResult_InputInfoSchema = zod.z.object({ email: zod.z.string().describe("The email address that was looked up").nullable() });
5
+ const FullenrichGetReverseEmailResult_CostInfoSchema = zod.z.object({ credits: zod.z.number().int().describe("Number of credits consumed by the operation").nullable() }).passthrough();
6
+ const FullenrichGetReverseEmailResult_InputInfoSchema = zod.z.object({ email: zod.z.string().describe("The email address that was looked up").nullable() }).passthrough();
7
7
  const FullenrichGetReverseEmailResult_DateInfoSchema = zod.z.object({
8
8
  year: zod.z.number().int().describe("Year").nullable().optional(),
9
9
  month: zod.z.number().int().describe("Month (1-12)").nullable().optional()
10
- });
10
+ }).passthrough();
11
11
  const FullenrichGetReverseEmailResult_CompanyHeadquartersSchema = zod.z.object({
12
12
  city: zod.z.string().describe("City name").nullable().optional(),
13
13
  region: zod.z.string().describe("Geographic region").nullable().optional(),
@@ -16,7 +16,7 @@ const FullenrichGetReverseEmailResult_CompanyHeadquartersSchema = zod.z.object({
16
16
  country_code: zod.z.string().describe("ISO country code").nullable().optional(),
17
17
  address_line_1: zod.z.string().describe("Primary address").nullable().optional(),
18
18
  address_line_2: zod.z.string().describe("Secondary address").nullable().optional()
19
- });
19
+ }).passthrough();
20
20
  const FullenrichGetReverseEmailResult_CompanyInfoSchema = zod.z.object({
21
21
  name: zod.z.string().describe("Company name").nullable().optional(),
22
22
  type: zod.z.string().describe("Company type").nullable().optional(),
@@ -31,14 +31,14 @@ const FullenrichGetReverseEmailResult_CompanyInfoSchema = zod.z.object({
31
31
  year_founded: zod.z.number().int().describe("Year company was founded").nullable().optional(),
32
32
  headcount_range: zod.z.string().describe("Employee count range").nullable().optional(),
33
33
  linkedin_handle: zod.z.string().describe("Company LinkedIn handle").nullable().optional()
34
- });
34
+ }).passthrough();
35
35
  const FullenrichGetReverseEmailResult_PositionInfoSchema = zod.z.object({
36
36
  title: zod.z.string().describe("Job title").nullable().optional(),
37
37
  end_at: FullenrichGetReverseEmailResult_DateInfoSchema.nullable().optional(),
38
38
  company: FullenrichGetReverseEmailResult_CompanyInfoSchema.nullable().optional(),
39
39
  start_at: FullenrichGetReverseEmailResult_DateInfoSchema.nullable().optional(),
40
40
  description: zod.z.string().describe("Role description").nullable().optional()
41
- });
41
+ }).passthrough();
42
42
  const FullenrichGetReverseEmailResult_ProfileInfoSchema = zod.z.object({
43
43
  summary: zod.z.string().describe("Profile summary/bio").nullable().optional(),
44
44
  headline: zod.z.string().describe("Professional headline").nullable().optional(),
@@ -51,17 +51,17 @@ const FullenrichGetReverseEmailResult_ProfileInfoSchema = zod.z.object({
51
51
  linkedin_handle: zod.z.string().describe("LinkedIn username/handle").nullable().optional(),
52
52
  premium_account: zod.z.boolean().describe("Whether user has LinkedIn Premium").nullable().optional(),
53
53
  sales_navigator_id: zod.z.string().describe("Sales Navigator ID").nullable().optional()
54
- });
54
+ }).passthrough();
55
55
  const FullenrichGetReverseEmailResult_ContactInfoSchema = zod.z.object({
56
56
  domain: zod.z.string().describe("Email domain").nullable().optional(),
57
57
  profile: FullenrichGetReverseEmailResult_ProfileInfoSchema.nullable().optional(),
58
58
  lastname: zod.z.string().describe("Contact's last name").nullable().optional(),
59
59
  firstname: zod.z.string().describe("Contact's first name").nullable().optional()
60
- });
60
+ }).passthrough();
61
61
  const FullenrichGetReverseEmailResult_ReverseEmailDataSchema = zod.z.object({
62
62
  input: FullenrichGetReverseEmailResult_InputInfoSchema.nullable(),
63
63
  contact: FullenrichGetReverseEmailResult_ContactInfoSchema.nullable()
64
- });
64
+ }).passthrough();
65
65
  const FullenrichGetReverseEmailResultOutput = zod.z.object({
66
66
  id: zod.z.string().describe("Unique identifier for the bulk operation").nullable(),
67
67
  cost: FullenrichGetReverseEmailResult_CostInfoSchema.nullable(),
@@ -76,7 +76,7 @@ const FullenrichGetReverseEmailResultOutput = zod.z.object({
76
76
  "RATE_LIMIT",
77
77
  "UNKNOWN"
78
78
  ]).describe("Operation status").nullable()
79
- });
79
+ }).passthrough();
80
80
  const fullenrichGetReverseEmailResult = require_action.action("FULLENRICH_GET_REVERSE_EMAIL_RESULT", {
81
81
  slug: "fullenrich-get-reverse-email-result",
82
82
  name: "Get Reverse Email Result",
@@ -1 +1 @@
1
- {"version":3,"file":"get-reverse-email-result.cjs","names":["z","action"],"sources":["../../src/actions/get-reverse-email-result.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const FullenrichGetReverseEmailResultInput = z.object({\n reverse_email_id: z.string().describe(\"The unique identifier (UUID) for the reverse email lookup operation\"),\n}).describe(\"Request parameters for retrieving reverse email lookup results.\");\nconst FullenrichGetReverseEmailResult_CostInfoSchema = z.object({\n credits: z.number().int().describe(\"Number of credits consumed by the operation\").nullable(),\n});\nconst FullenrichGetReverseEmailResult_InputInfoSchema = z.object({\n email: z.string().describe(\"The email address that was looked up\").nullable(),\n});\nconst FullenrichGetReverseEmailResult_DateInfoSchema = z.object({\n year: z.number().int().describe(\"Year\").nullable().optional(),\n month: z.number().int().describe(\"Month (1-12)\").nullable().optional(),\n});\nconst FullenrichGetReverseEmailResult_CompanyHeadquartersSchema = z.object({\n city: z.string().describe(\"City name\").nullable().optional(),\n region: z.string().describe(\"Geographic region\").nullable().optional(),\n country: z.string().describe(\"Country name\").nullable().optional(),\n postal_code: z.string().describe(\"Postal/ZIP code\").nullable().optional(),\n country_code: z.string().describe(\"ISO country code\").nullable().optional(),\n address_line_1: z.string().describe(\"Primary address\").nullable().optional(),\n address_line_2: z.string().describe(\"Secondary address\").nullable().optional(),\n});\nconst FullenrichGetReverseEmailResult_CompanyInfoSchema = z.object({\n name: z.string().describe(\"Company name\").nullable().optional(),\n type: z.string().describe(\"Company type\").nullable().optional(),\n domain: z.string().describe(\"Company domain\").nullable().optional(),\n website: z.string().describe(\"Company website\").nullable().optional(),\n industry: z.string().describe(\"Industry classification\").nullable().optional(),\n headcount: z.number().int().describe(\"Employee count\").nullable().optional(),\n description: z.string().describe(\"Company description\").nullable().optional(),\n linkedin_id: z.number().int().describe(\"Company LinkedIn ID\").nullable().optional(),\n headquarters: FullenrichGetReverseEmailResult_CompanyHeadquartersSchema.nullable().optional(),\n linkedin_url: z.string().describe(\"Company LinkedIn URL\").nullable().optional(),\n year_founded: z.number().int().describe(\"Year company was founded\").nullable().optional(),\n headcount_range: z.string().describe(\"Employee count range\").nullable().optional(),\n linkedin_handle: z.string().describe(\"Company LinkedIn handle\").nullable().optional(),\n});\nconst FullenrichGetReverseEmailResult_PositionInfoSchema = z.object({\n title: z.string().describe(\"Job title\").nullable().optional(),\n end_at: FullenrichGetReverseEmailResult_DateInfoSchema.nullable().optional(),\n company: FullenrichGetReverseEmailResult_CompanyInfoSchema.nullable().optional(),\n start_at: FullenrichGetReverseEmailResult_DateInfoSchema.nullable().optional(),\n description: z.string().describe(\"Role description\").nullable().optional(),\n});\nconst FullenrichGetReverseEmailResult_ProfileInfoSchema = z.object({\n summary: z.string().describe(\"Profile summary/bio\").nullable().optional(),\n headline: z.string().describe(\"Professional headline\").nullable().optional(),\n lastname: z.string().describe(\"Last name from LinkedIn\").nullable().optional(),\n location: z.string().describe(\"Geographic location\").nullable().optional(),\n position: FullenrichGetReverseEmailResult_PositionInfoSchema.nullable().optional(),\n firstname: z.string().describe(\"First name from LinkedIn\").nullable().optional(),\n linkedin_id: z.number().int().describe(\"LinkedIn profile ID\").nullable().optional(),\n linkedin_url: z.string().describe(\"Full LinkedIn profile URL\").nullable().optional(),\n linkedin_handle: z.string().describe(\"LinkedIn username/handle\").nullable().optional(),\n premium_account: z.boolean().describe(\"Whether user has LinkedIn Premium\").nullable().optional(),\n sales_navigator_id: z.string().describe(\"Sales Navigator ID\").nullable().optional(),\n});\nconst FullenrichGetReverseEmailResult_ContactInfoSchema = z.object({\n domain: z.string().describe(\"Email domain\").nullable().optional(),\n profile: FullenrichGetReverseEmailResult_ProfileInfoSchema.nullable().optional(),\n lastname: z.string().describe(\"Contact's last name\").nullable().optional(),\n firstname: z.string().describe(\"Contact's first name\").nullable().optional(),\n});\nconst FullenrichGetReverseEmailResult_ReverseEmailDataSchema = z.object({\n input: FullenrichGetReverseEmailResult_InputInfoSchema.nullable(),\n contact: FullenrichGetReverseEmailResult_ContactInfoSchema.nullable(),\n});\nexport const FullenrichGetReverseEmailResultOutput = z.object({\n id: z.string().describe(\"Unique identifier for the bulk operation\").nullable(),\n cost: FullenrichGetReverseEmailResult_CostInfoSchema.nullable(),\n name: z.string().describe(\"Name/label for the operation\").nullable(),\n datas: z.array(FullenrichGetReverseEmailResult_ReverseEmailDataSchema).describe(\"Array of result objects containing enrichment data\"),\n status: z.enum([\"CREATED\", \"IN_PROGRESS\", \"CANCELED\", \"CREDITS_INSUFFICIENT\", \"FINISHED\", \"RATE_LIMIT\", \"UNKNOWN\"]).describe(\"Operation status\").nullable(),\n});\n\nexport const fullenrichGetReverseEmailResult = action(\"FULLENRICH_GET_REVERSE_EMAIL_RESULT\", {\n slug: \"fullenrich-get-reverse-email-result\",\n name: \"Get Reverse Email Result\",\n description: \"Tool to retrieve results from a reverse email lookup operation using reverse email ID. Use after submitting a reverse email lookup to check its status and get contact data.\",\n input: FullenrichGetReverseEmailResultInput,\n output: FullenrichGetReverseEmailResultOutput,\n});\n"],"mappings":"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"}
1
+ {"version":3,"file":"get-reverse-email-result.cjs","names":["z","action"],"sources":["../../src/actions/get-reverse-email-result.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const FullenrichGetReverseEmailResultInput = z.object({\n reverse_email_id: z.string().describe(\"The unique identifier (UUID) for the reverse email lookup operation\"),\n}).describe(\"Request parameters for retrieving reverse email lookup results.\");\nconst FullenrichGetReverseEmailResult_CostInfoSchema = z.object({\n credits: z.number().int().describe(\"Number of credits consumed by the operation\").nullable(),\n}).passthrough();\nconst FullenrichGetReverseEmailResult_InputInfoSchema = z.object({\n email: z.string().describe(\"The email address that was looked up\").nullable(),\n}).passthrough();\nconst FullenrichGetReverseEmailResult_DateInfoSchema = z.object({\n year: z.number().int().describe(\"Year\").nullable().optional(),\n month: z.number().int().describe(\"Month (1-12)\").nullable().optional(),\n}).passthrough();\nconst FullenrichGetReverseEmailResult_CompanyHeadquartersSchema = z.object({\n city: z.string().describe(\"City name\").nullable().optional(),\n region: z.string().describe(\"Geographic region\").nullable().optional(),\n country: z.string().describe(\"Country name\").nullable().optional(),\n postal_code: z.string().describe(\"Postal/ZIP code\").nullable().optional(),\n country_code: z.string().describe(\"ISO country code\").nullable().optional(),\n address_line_1: z.string().describe(\"Primary address\").nullable().optional(),\n address_line_2: z.string().describe(\"Secondary address\").nullable().optional(),\n}).passthrough();\nconst FullenrichGetReverseEmailResult_CompanyInfoSchema = z.object({\n name: z.string().describe(\"Company name\").nullable().optional(),\n type: z.string().describe(\"Company type\").nullable().optional(),\n domain: z.string().describe(\"Company domain\").nullable().optional(),\n website: z.string().describe(\"Company website\").nullable().optional(),\n industry: z.string().describe(\"Industry classification\").nullable().optional(),\n headcount: z.number().int().describe(\"Employee count\").nullable().optional(),\n description: z.string().describe(\"Company description\").nullable().optional(),\n linkedin_id: z.number().int().describe(\"Company LinkedIn ID\").nullable().optional(),\n headquarters: FullenrichGetReverseEmailResult_CompanyHeadquartersSchema.nullable().optional(),\n linkedin_url: z.string().describe(\"Company LinkedIn URL\").nullable().optional(),\n year_founded: z.number().int().describe(\"Year company was founded\").nullable().optional(),\n headcount_range: z.string().describe(\"Employee count range\").nullable().optional(),\n linkedin_handle: z.string().describe(\"Company LinkedIn handle\").nullable().optional(),\n}).passthrough();\nconst FullenrichGetReverseEmailResult_PositionInfoSchema = z.object({\n title: z.string().describe(\"Job title\").nullable().optional(),\n end_at: FullenrichGetReverseEmailResult_DateInfoSchema.nullable().optional(),\n company: FullenrichGetReverseEmailResult_CompanyInfoSchema.nullable().optional(),\n start_at: FullenrichGetReverseEmailResult_DateInfoSchema.nullable().optional(),\n description: z.string().describe(\"Role description\").nullable().optional(),\n}).passthrough();\nconst FullenrichGetReverseEmailResult_ProfileInfoSchema = z.object({\n summary: z.string().describe(\"Profile summary/bio\").nullable().optional(),\n headline: z.string().describe(\"Professional headline\").nullable().optional(),\n lastname: z.string().describe(\"Last name from LinkedIn\").nullable().optional(),\n location: z.string().describe(\"Geographic location\").nullable().optional(),\n position: FullenrichGetReverseEmailResult_PositionInfoSchema.nullable().optional(),\n firstname: z.string().describe(\"First name from LinkedIn\").nullable().optional(),\n linkedin_id: z.number().int().describe(\"LinkedIn profile ID\").nullable().optional(),\n linkedin_url: z.string().describe(\"Full LinkedIn profile URL\").nullable().optional(),\n linkedin_handle: z.string().describe(\"LinkedIn username/handle\").nullable().optional(),\n premium_account: z.boolean().describe(\"Whether user has LinkedIn Premium\").nullable().optional(),\n sales_navigator_id: z.string().describe(\"Sales Navigator ID\").nullable().optional(),\n}).passthrough();\nconst FullenrichGetReverseEmailResult_ContactInfoSchema = z.object({\n domain: z.string().describe(\"Email domain\").nullable().optional(),\n profile: FullenrichGetReverseEmailResult_ProfileInfoSchema.nullable().optional(),\n lastname: z.string().describe(\"Contact's last name\").nullable().optional(),\n firstname: z.string().describe(\"Contact's first name\").nullable().optional(),\n}).passthrough();\nconst FullenrichGetReverseEmailResult_ReverseEmailDataSchema = z.object({\n input: FullenrichGetReverseEmailResult_InputInfoSchema.nullable(),\n contact: FullenrichGetReverseEmailResult_ContactInfoSchema.nullable(),\n}).passthrough();\nexport const FullenrichGetReverseEmailResultOutput = z.object({\n id: z.string().describe(\"Unique identifier for the bulk operation\").nullable(),\n cost: FullenrichGetReverseEmailResult_CostInfoSchema.nullable(),\n name: z.string().describe(\"Name/label for the operation\").nullable(),\n datas: z.array(FullenrichGetReverseEmailResult_ReverseEmailDataSchema).describe(\"Array of result objects containing enrichment data\"),\n status: z.enum([\"CREATED\", \"IN_PROGRESS\", \"CANCELED\", \"CREDITS_INSUFFICIENT\", \"FINISHED\", \"RATE_LIMIT\", \"UNKNOWN\"]).describe(\"Operation status\").nullable(),\n}).passthrough();\n\nexport const fullenrichGetReverseEmailResult = action(\"FULLENRICH_GET_REVERSE_EMAIL_RESULT\", {\n slug: \"fullenrich-get-reverse-email-result\",\n name: \"Get Reverse Email Result\",\n description: \"Tool to retrieve results from a reverse email lookup operation using reverse email ID. Use after submitting a reverse email lookup to check its status and get contact data.\",\n input: FullenrichGetReverseEmailResultInput,\n output: FullenrichGetReverseEmailResultOutput,\n});\n"],"mappings":"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"}
@@ -8,12 +8,12 @@ declare const FullenrichGetReverseEmailResultOutput: z.ZodObject<{
8
8
  id: z.ZodNullable<z.ZodString>;
9
9
  cost: z.ZodNullable<z.ZodObject<{
10
10
  credits: z.ZodNullable<z.ZodNumber>;
11
- }, z.core.$strip>>;
11
+ }, z.core.$loose>>;
12
12
  name: z.ZodNullable<z.ZodString>;
13
13
  datas: z.ZodArray<z.ZodObject<{
14
14
  input: z.ZodNullable<z.ZodObject<{
15
15
  email: z.ZodNullable<z.ZodString>;
16
- }, z.core.$strip>>;
16
+ }, z.core.$loose>>;
17
17
  contact: z.ZodNullable<z.ZodObject<{
18
18
  domain: z.ZodOptional<z.ZodNullable<z.ZodString>>;
19
19
  profile: z.ZodOptional<z.ZodNullable<z.ZodObject<{
@@ -26,7 +26,7 @@ declare const FullenrichGetReverseEmailResultOutput: z.ZodObject<{
26
26
  end_at: z.ZodOptional<z.ZodNullable<z.ZodObject<{
27
27
  year: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
28
28
  month: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
29
- }, z.core.$strip>>>;
29
+ }, z.core.$loose>>>;
30
30
  company: z.ZodOptional<z.ZodNullable<z.ZodObject<{
31
31
  name: z.ZodOptional<z.ZodNullable<z.ZodString>>;
32
32
  type: z.ZodOptional<z.ZodNullable<z.ZodString>>;
@@ -44,29 +44,29 @@ declare const FullenrichGetReverseEmailResultOutput: z.ZodObject<{
44
44
  country_code: z.ZodOptional<z.ZodNullable<z.ZodString>>;
45
45
  address_line_1: z.ZodOptional<z.ZodNullable<z.ZodString>>;
46
46
  address_line_2: z.ZodOptional<z.ZodNullable<z.ZodString>>;
47
- }, z.core.$strip>>>;
47
+ }, z.core.$loose>>>;
48
48
  linkedin_url: z.ZodOptional<z.ZodNullable<z.ZodString>>;
49
49
  year_founded: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
50
50
  headcount_range: z.ZodOptional<z.ZodNullable<z.ZodString>>;
51
51
  linkedin_handle: z.ZodOptional<z.ZodNullable<z.ZodString>>;
52
- }, z.core.$strip>>>;
52
+ }, z.core.$loose>>>;
53
53
  start_at: z.ZodOptional<z.ZodNullable<z.ZodObject<{
54
54
  year: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
55
55
  month: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
56
- }, z.core.$strip>>>;
56
+ }, z.core.$loose>>>;
57
57
  description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
58
- }, z.core.$strip>>>;
58
+ }, z.core.$loose>>>;
59
59
  firstname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
60
60
  linkedin_id: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
61
61
  linkedin_url: z.ZodOptional<z.ZodNullable<z.ZodString>>;
62
62
  linkedin_handle: z.ZodOptional<z.ZodNullable<z.ZodString>>;
63
63
  premium_account: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
64
64
  sales_navigator_id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
65
- }, z.core.$strip>>>;
65
+ }, z.core.$loose>>>;
66
66
  lastname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
67
67
  firstname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
68
- }, z.core.$strip>>;
69
- }, z.core.$strip>>;
68
+ }, z.core.$loose>>;
69
+ }, z.core.$loose>>;
70
70
  status: z.ZodNullable<z.ZodEnum<{
71
71
  CREATED: "CREATED";
72
72
  IN_PROGRESS: "IN_PROGRESS";
@@ -76,7 +76,7 @@ declare const FullenrichGetReverseEmailResultOutput: z.ZodObject<{
76
76
  RATE_LIMIT: "RATE_LIMIT";
77
77
  UNKNOWN: "UNKNOWN";
78
78
  }>>;
79
- }, z.core.$strip>;
79
+ }, z.core.$loose>;
80
80
  declare const fullenrichGetReverseEmailResult: import("@keystrokehq/action").WorkflowActionDefinition<{
81
81
  reverse_email_id: string;
82
82
  }, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
@@ -8,12 +8,12 @@ declare const FullenrichGetReverseEmailResultOutput: z.ZodObject<{
8
8
  id: z.ZodNullable<z.ZodString>;
9
9
  cost: z.ZodNullable<z.ZodObject<{
10
10
  credits: z.ZodNullable<z.ZodNumber>;
11
- }, z.core.$strip>>;
11
+ }, z.core.$loose>>;
12
12
  name: z.ZodNullable<z.ZodString>;
13
13
  datas: z.ZodArray<z.ZodObject<{
14
14
  input: z.ZodNullable<z.ZodObject<{
15
15
  email: z.ZodNullable<z.ZodString>;
16
- }, z.core.$strip>>;
16
+ }, z.core.$loose>>;
17
17
  contact: z.ZodNullable<z.ZodObject<{
18
18
  domain: z.ZodOptional<z.ZodNullable<z.ZodString>>;
19
19
  profile: z.ZodOptional<z.ZodNullable<z.ZodObject<{
@@ -26,7 +26,7 @@ declare const FullenrichGetReverseEmailResultOutput: z.ZodObject<{
26
26
  end_at: z.ZodOptional<z.ZodNullable<z.ZodObject<{
27
27
  year: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
28
28
  month: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
29
- }, z.core.$strip>>>;
29
+ }, z.core.$loose>>>;
30
30
  company: z.ZodOptional<z.ZodNullable<z.ZodObject<{
31
31
  name: z.ZodOptional<z.ZodNullable<z.ZodString>>;
32
32
  type: z.ZodOptional<z.ZodNullable<z.ZodString>>;
@@ -44,29 +44,29 @@ declare const FullenrichGetReverseEmailResultOutput: z.ZodObject<{
44
44
  country_code: z.ZodOptional<z.ZodNullable<z.ZodString>>;
45
45
  address_line_1: z.ZodOptional<z.ZodNullable<z.ZodString>>;
46
46
  address_line_2: z.ZodOptional<z.ZodNullable<z.ZodString>>;
47
- }, z.core.$strip>>>;
47
+ }, z.core.$loose>>>;
48
48
  linkedin_url: z.ZodOptional<z.ZodNullable<z.ZodString>>;
49
49
  year_founded: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
50
50
  headcount_range: z.ZodOptional<z.ZodNullable<z.ZodString>>;
51
51
  linkedin_handle: z.ZodOptional<z.ZodNullable<z.ZodString>>;
52
- }, z.core.$strip>>>;
52
+ }, z.core.$loose>>>;
53
53
  start_at: z.ZodOptional<z.ZodNullable<z.ZodObject<{
54
54
  year: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
55
55
  month: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
56
- }, z.core.$strip>>>;
56
+ }, z.core.$loose>>>;
57
57
  description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
58
- }, z.core.$strip>>>;
58
+ }, z.core.$loose>>>;
59
59
  firstname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
60
60
  linkedin_id: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
61
61
  linkedin_url: z.ZodOptional<z.ZodNullable<z.ZodString>>;
62
62
  linkedin_handle: z.ZodOptional<z.ZodNullable<z.ZodString>>;
63
63
  premium_account: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
64
64
  sales_navigator_id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
65
- }, z.core.$strip>>>;
65
+ }, z.core.$loose>>>;
66
66
  lastname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
67
67
  firstname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
68
- }, z.core.$strip>>;
69
- }, z.core.$strip>>;
68
+ }, z.core.$loose>>;
69
+ }, z.core.$loose>>;
70
70
  status: z.ZodNullable<z.ZodEnum<{
71
71
  CREATED: "CREATED";
72
72
  IN_PROGRESS: "IN_PROGRESS";
@@ -76,7 +76,7 @@ declare const FullenrichGetReverseEmailResultOutput: z.ZodObject<{
76
76
  RATE_LIMIT: "RATE_LIMIT";
77
77
  UNKNOWN: "UNKNOWN";
78
78
  }>>;
79
- }, z.core.$strip>;
79
+ }, z.core.$loose>;
80
80
  declare const fullenrichGetReverseEmailResult: import("@keystrokehq/action").WorkflowActionDefinition<{
81
81
  reverse_email_id: string;
82
82
  }, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
@@ -2,12 +2,12 @@ import { action } from "../action.mjs";
2
2
  import { z } from "zod";
3
3
  //#region src/actions/get-reverse-email-result.ts
4
4
  const FullenrichGetReverseEmailResultInput = z.object({ reverse_email_id: z.string().describe("The unique identifier (UUID) for the reverse email lookup operation") }).describe("Request parameters for retrieving reverse email lookup results.");
5
- const FullenrichGetReverseEmailResult_CostInfoSchema = z.object({ credits: z.number().int().describe("Number of credits consumed by the operation").nullable() });
6
- const FullenrichGetReverseEmailResult_InputInfoSchema = z.object({ email: z.string().describe("The email address that was looked up").nullable() });
5
+ const FullenrichGetReverseEmailResult_CostInfoSchema = z.object({ credits: z.number().int().describe("Number of credits consumed by the operation").nullable() }).passthrough();
6
+ const FullenrichGetReverseEmailResult_InputInfoSchema = z.object({ email: z.string().describe("The email address that was looked up").nullable() }).passthrough();
7
7
  const FullenrichGetReverseEmailResult_DateInfoSchema = z.object({
8
8
  year: z.number().int().describe("Year").nullable().optional(),
9
9
  month: z.number().int().describe("Month (1-12)").nullable().optional()
10
- });
10
+ }).passthrough();
11
11
  const FullenrichGetReverseEmailResult_CompanyHeadquartersSchema = z.object({
12
12
  city: z.string().describe("City name").nullable().optional(),
13
13
  region: z.string().describe("Geographic region").nullable().optional(),
@@ -16,7 +16,7 @@ const FullenrichGetReverseEmailResult_CompanyHeadquartersSchema = z.object({
16
16
  country_code: z.string().describe("ISO country code").nullable().optional(),
17
17
  address_line_1: z.string().describe("Primary address").nullable().optional(),
18
18
  address_line_2: z.string().describe("Secondary address").nullable().optional()
19
- });
19
+ }).passthrough();
20
20
  const FullenrichGetReverseEmailResult_CompanyInfoSchema = z.object({
21
21
  name: z.string().describe("Company name").nullable().optional(),
22
22
  type: z.string().describe("Company type").nullable().optional(),
@@ -31,14 +31,14 @@ const FullenrichGetReverseEmailResult_CompanyInfoSchema = z.object({
31
31
  year_founded: z.number().int().describe("Year company was founded").nullable().optional(),
32
32
  headcount_range: z.string().describe("Employee count range").nullable().optional(),
33
33
  linkedin_handle: z.string().describe("Company LinkedIn handle").nullable().optional()
34
- });
34
+ }).passthrough();
35
35
  const FullenrichGetReverseEmailResult_PositionInfoSchema = z.object({
36
36
  title: z.string().describe("Job title").nullable().optional(),
37
37
  end_at: FullenrichGetReverseEmailResult_DateInfoSchema.nullable().optional(),
38
38
  company: FullenrichGetReverseEmailResult_CompanyInfoSchema.nullable().optional(),
39
39
  start_at: FullenrichGetReverseEmailResult_DateInfoSchema.nullable().optional(),
40
40
  description: z.string().describe("Role description").nullable().optional()
41
- });
41
+ }).passthrough();
42
42
  const FullenrichGetReverseEmailResult_ProfileInfoSchema = z.object({
43
43
  summary: z.string().describe("Profile summary/bio").nullable().optional(),
44
44
  headline: z.string().describe("Professional headline").nullable().optional(),
@@ -51,17 +51,17 @@ const FullenrichGetReverseEmailResult_ProfileInfoSchema = z.object({
51
51
  linkedin_handle: z.string().describe("LinkedIn username/handle").nullable().optional(),
52
52
  premium_account: z.boolean().describe("Whether user has LinkedIn Premium").nullable().optional(),
53
53
  sales_navigator_id: z.string().describe("Sales Navigator ID").nullable().optional()
54
- });
54
+ }).passthrough();
55
55
  const FullenrichGetReverseEmailResult_ContactInfoSchema = z.object({
56
56
  domain: z.string().describe("Email domain").nullable().optional(),
57
57
  profile: FullenrichGetReverseEmailResult_ProfileInfoSchema.nullable().optional(),
58
58
  lastname: z.string().describe("Contact's last name").nullable().optional(),
59
59
  firstname: z.string().describe("Contact's first name").nullable().optional()
60
- });
60
+ }).passthrough();
61
61
  const FullenrichGetReverseEmailResult_ReverseEmailDataSchema = z.object({
62
62
  input: FullenrichGetReverseEmailResult_InputInfoSchema.nullable(),
63
63
  contact: FullenrichGetReverseEmailResult_ContactInfoSchema.nullable()
64
- });
64
+ }).passthrough();
65
65
  const fullenrichGetReverseEmailResult = action("FULLENRICH_GET_REVERSE_EMAIL_RESULT", {
66
66
  slug: "fullenrich-get-reverse-email-result",
67
67
  name: "Get Reverse Email Result",
@@ -81,7 +81,7 @@ const fullenrichGetReverseEmailResult = action("FULLENRICH_GET_REVERSE_EMAIL_RES
81
81
  "RATE_LIMIT",
82
82
  "UNKNOWN"
83
83
  ]).describe("Operation status").nullable()
84
- })
84
+ }).passthrough()
85
85
  });
86
86
  //#endregion
87
87
  export { fullenrichGetReverseEmailResult };
@@ -1 +1 @@
1
- {"version":3,"file":"get-reverse-email-result.mjs","names":[],"sources":["../../src/actions/get-reverse-email-result.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const FullenrichGetReverseEmailResultInput = z.object({\n reverse_email_id: z.string().describe(\"The unique identifier (UUID) for the reverse email lookup operation\"),\n}).describe(\"Request parameters for retrieving reverse email lookup results.\");\nconst FullenrichGetReverseEmailResult_CostInfoSchema = z.object({\n credits: z.number().int().describe(\"Number of credits consumed by the operation\").nullable(),\n});\nconst FullenrichGetReverseEmailResult_InputInfoSchema = z.object({\n email: z.string().describe(\"The email address that was looked up\").nullable(),\n});\nconst FullenrichGetReverseEmailResult_DateInfoSchema = z.object({\n year: z.number().int().describe(\"Year\").nullable().optional(),\n month: z.number().int().describe(\"Month (1-12)\").nullable().optional(),\n});\nconst FullenrichGetReverseEmailResult_CompanyHeadquartersSchema = z.object({\n city: z.string().describe(\"City name\").nullable().optional(),\n region: z.string().describe(\"Geographic region\").nullable().optional(),\n country: z.string().describe(\"Country name\").nullable().optional(),\n postal_code: z.string().describe(\"Postal/ZIP code\").nullable().optional(),\n country_code: z.string().describe(\"ISO country code\").nullable().optional(),\n address_line_1: z.string().describe(\"Primary address\").nullable().optional(),\n address_line_2: z.string().describe(\"Secondary address\").nullable().optional(),\n});\nconst FullenrichGetReverseEmailResult_CompanyInfoSchema = z.object({\n name: z.string().describe(\"Company name\").nullable().optional(),\n type: z.string().describe(\"Company type\").nullable().optional(),\n domain: z.string().describe(\"Company domain\").nullable().optional(),\n website: z.string().describe(\"Company website\").nullable().optional(),\n industry: z.string().describe(\"Industry classification\").nullable().optional(),\n headcount: z.number().int().describe(\"Employee count\").nullable().optional(),\n description: z.string().describe(\"Company description\").nullable().optional(),\n linkedin_id: z.number().int().describe(\"Company LinkedIn ID\").nullable().optional(),\n headquarters: FullenrichGetReverseEmailResult_CompanyHeadquartersSchema.nullable().optional(),\n linkedin_url: z.string().describe(\"Company LinkedIn URL\").nullable().optional(),\n year_founded: z.number().int().describe(\"Year company was founded\").nullable().optional(),\n headcount_range: z.string().describe(\"Employee count range\").nullable().optional(),\n linkedin_handle: z.string().describe(\"Company LinkedIn handle\").nullable().optional(),\n});\nconst FullenrichGetReverseEmailResult_PositionInfoSchema = z.object({\n title: z.string().describe(\"Job title\").nullable().optional(),\n end_at: FullenrichGetReverseEmailResult_DateInfoSchema.nullable().optional(),\n company: FullenrichGetReverseEmailResult_CompanyInfoSchema.nullable().optional(),\n start_at: FullenrichGetReverseEmailResult_DateInfoSchema.nullable().optional(),\n description: z.string().describe(\"Role description\").nullable().optional(),\n});\nconst FullenrichGetReverseEmailResult_ProfileInfoSchema = z.object({\n summary: z.string().describe(\"Profile summary/bio\").nullable().optional(),\n headline: z.string().describe(\"Professional headline\").nullable().optional(),\n lastname: z.string().describe(\"Last name from LinkedIn\").nullable().optional(),\n location: z.string().describe(\"Geographic location\").nullable().optional(),\n position: FullenrichGetReverseEmailResult_PositionInfoSchema.nullable().optional(),\n firstname: z.string().describe(\"First name from LinkedIn\").nullable().optional(),\n linkedin_id: z.number().int().describe(\"LinkedIn profile ID\").nullable().optional(),\n linkedin_url: z.string().describe(\"Full LinkedIn profile URL\").nullable().optional(),\n linkedin_handle: z.string().describe(\"LinkedIn username/handle\").nullable().optional(),\n premium_account: z.boolean().describe(\"Whether user has LinkedIn Premium\").nullable().optional(),\n sales_navigator_id: z.string().describe(\"Sales Navigator ID\").nullable().optional(),\n});\nconst FullenrichGetReverseEmailResult_ContactInfoSchema = z.object({\n domain: z.string().describe(\"Email domain\").nullable().optional(),\n profile: FullenrichGetReverseEmailResult_ProfileInfoSchema.nullable().optional(),\n lastname: z.string().describe(\"Contact's last name\").nullable().optional(),\n firstname: z.string().describe(\"Contact's first name\").nullable().optional(),\n});\nconst FullenrichGetReverseEmailResult_ReverseEmailDataSchema = z.object({\n input: FullenrichGetReverseEmailResult_InputInfoSchema.nullable(),\n contact: FullenrichGetReverseEmailResult_ContactInfoSchema.nullable(),\n});\nexport const FullenrichGetReverseEmailResultOutput = z.object({\n id: z.string().describe(\"Unique identifier for the bulk operation\").nullable(),\n cost: FullenrichGetReverseEmailResult_CostInfoSchema.nullable(),\n name: z.string().describe(\"Name/label for the operation\").nullable(),\n datas: z.array(FullenrichGetReverseEmailResult_ReverseEmailDataSchema).describe(\"Array of result objects containing enrichment data\"),\n status: z.enum([\"CREATED\", \"IN_PROGRESS\", \"CANCELED\", \"CREDITS_INSUFFICIENT\", \"FINISHED\", \"RATE_LIMIT\", \"UNKNOWN\"]).describe(\"Operation status\").nullable(),\n});\n\nexport const fullenrichGetReverseEmailResult = action(\"FULLENRICH_GET_REVERSE_EMAIL_RESULT\", {\n slug: \"fullenrich-get-reverse-email-result\",\n name: \"Get Reverse Email Result\",\n description: \"Tool to retrieve results from a reverse email lookup operation using reverse email ID. Use after submitting a reverse email lookup to check its status and get contact data.\",\n input: FullenrichGetReverseEmailResultInput,\n output: FullenrichGetReverseEmailResultOutput,\n});\n"],"mappings":"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"}
1
+ {"version":3,"file":"get-reverse-email-result.mjs","names":[],"sources":["../../src/actions/get-reverse-email-result.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const FullenrichGetReverseEmailResultInput = z.object({\n reverse_email_id: z.string().describe(\"The unique identifier (UUID) for the reverse email lookup operation\"),\n}).describe(\"Request parameters for retrieving reverse email lookup results.\");\nconst FullenrichGetReverseEmailResult_CostInfoSchema = z.object({\n credits: z.number().int().describe(\"Number of credits consumed by the operation\").nullable(),\n}).passthrough();\nconst FullenrichGetReverseEmailResult_InputInfoSchema = z.object({\n email: z.string().describe(\"The email address that was looked up\").nullable(),\n}).passthrough();\nconst FullenrichGetReverseEmailResult_DateInfoSchema = z.object({\n year: z.number().int().describe(\"Year\").nullable().optional(),\n month: z.number().int().describe(\"Month (1-12)\").nullable().optional(),\n}).passthrough();\nconst FullenrichGetReverseEmailResult_CompanyHeadquartersSchema = z.object({\n city: z.string().describe(\"City name\").nullable().optional(),\n region: z.string().describe(\"Geographic region\").nullable().optional(),\n country: z.string().describe(\"Country name\").nullable().optional(),\n postal_code: z.string().describe(\"Postal/ZIP code\").nullable().optional(),\n country_code: z.string().describe(\"ISO country code\").nullable().optional(),\n address_line_1: z.string().describe(\"Primary address\").nullable().optional(),\n address_line_2: z.string().describe(\"Secondary address\").nullable().optional(),\n}).passthrough();\nconst FullenrichGetReverseEmailResult_CompanyInfoSchema = z.object({\n name: z.string().describe(\"Company name\").nullable().optional(),\n type: z.string().describe(\"Company type\").nullable().optional(),\n domain: z.string().describe(\"Company domain\").nullable().optional(),\n website: z.string().describe(\"Company website\").nullable().optional(),\n industry: z.string().describe(\"Industry classification\").nullable().optional(),\n headcount: z.number().int().describe(\"Employee count\").nullable().optional(),\n description: z.string().describe(\"Company description\").nullable().optional(),\n linkedin_id: z.number().int().describe(\"Company LinkedIn ID\").nullable().optional(),\n headquarters: FullenrichGetReverseEmailResult_CompanyHeadquartersSchema.nullable().optional(),\n linkedin_url: z.string().describe(\"Company LinkedIn URL\").nullable().optional(),\n year_founded: z.number().int().describe(\"Year company was founded\").nullable().optional(),\n headcount_range: z.string().describe(\"Employee count range\").nullable().optional(),\n linkedin_handle: z.string().describe(\"Company LinkedIn handle\").nullable().optional(),\n}).passthrough();\nconst FullenrichGetReverseEmailResult_PositionInfoSchema = z.object({\n title: z.string().describe(\"Job title\").nullable().optional(),\n end_at: FullenrichGetReverseEmailResult_DateInfoSchema.nullable().optional(),\n company: FullenrichGetReverseEmailResult_CompanyInfoSchema.nullable().optional(),\n start_at: FullenrichGetReverseEmailResult_DateInfoSchema.nullable().optional(),\n description: z.string().describe(\"Role description\").nullable().optional(),\n}).passthrough();\nconst FullenrichGetReverseEmailResult_ProfileInfoSchema = z.object({\n summary: z.string().describe(\"Profile summary/bio\").nullable().optional(),\n headline: z.string().describe(\"Professional headline\").nullable().optional(),\n lastname: z.string().describe(\"Last name from LinkedIn\").nullable().optional(),\n location: z.string().describe(\"Geographic location\").nullable().optional(),\n position: FullenrichGetReverseEmailResult_PositionInfoSchema.nullable().optional(),\n firstname: z.string().describe(\"First name from LinkedIn\").nullable().optional(),\n linkedin_id: z.number().int().describe(\"LinkedIn profile ID\").nullable().optional(),\n linkedin_url: z.string().describe(\"Full LinkedIn profile URL\").nullable().optional(),\n linkedin_handle: z.string().describe(\"LinkedIn username/handle\").nullable().optional(),\n premium_account: z.boolean().describe(\"Whether user has LinkedIn Premium\").nullable().optional(),\n sales_navigator_id: z.string().describe(\"Sales Navigator ID\").nullable().optional(),\n}).passthrough();\nconst FullenrichGetReverseEmailResult_ContactInfoSchema = z.object({\n domain: z.string().describe(\"Email domain\").nullable().optional(),\n profile: FullenrichGetReverseEmailResult_ProfileInfoSchema.nullable().optional(),\n lastname: z.string().describe(\"Contact's last name\").nullable().optional(),\n firstname: z.string().describe(\"Contact's first name\").nullable().optional(),\n}).passthrough();\nconst FullenrichGetReverseEmailResult_ReverseEmailDataSchema = z.object({\n input: FullenrichGetReverseEmailResult_InputInfoSchema.nullable(),\n contact: FullenrichGetReverseEmailResult_ContactInfoSchema.nullable(),\n}).passthrough();\nexport const FullenrichGetReverseEmailResultOutput = z.object({\n id: z.string().describe(\"Unique identifier for the bulk operation\").nullable(),\n cost: FullenrichGetReverseEmailResult_CostInfoSchema.nullable(),\n name: z.string().describe(\"Name/label for the operation\").nullable(),\n datas: z.array(FullenrichGetReverseEmailResult_ReverseEmailDataSchema).describe(\"Array of result objects containing enrichment data\"),\n status: z.enum([\"CREATED\", \"IN_PROGRESS\", \"CANCELED\", \"CREDITS_INSUFFICIENT\", \"FINISHED\", \"RATE_LIMIT\", \"UNKNOWN\"]).describe(\"Operation status\").nullable(),\n}).passthrough();\n\nexport const fullenrichGetReverseEmailResult = action(\"FULLENRICH_GET_REVERSE_EMAIL_RESULT\", {\n slug: \"fullenrich-get-reverse-email-result\",\n name: \"Get Reverse Email Result\",\n description: \"Tool to retrieve results from a reverse email lookup operation using reverse email ID. Use after submitting a reverse email lookup to check its status and get contact data.\",\n input: FullenrichGetReverseEmailResultInput,\n output: FullenrichGetReverseEmailResultOutput,\n});\n"],"mappings":";;;AAIA,MAAa,uCAAuC,EAAE,OAAO,EAC3D,kBAAkB,EAAE,OAAO,CAAC,CAAC,SAAS,qEAAqE,EAC7G,CAAC,CAAC,CAAC,SAAS,iEAAiE;AAC7E,MAAM,iDAAiD,EAAE,OAAO,EAC9D,SAAS,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,SAAS,6CAA6C,CAAC,CAAC,SAAS,EAC7F,CAAC,CAAC,CAAC,YAAY;AACf,MAAM,kDAAkD,EAAE,OAAO,EAC/D,OAAO,EAAE,OAAO,CAAC,CAAC,SAAS,sCAAsC,CAAC,CAAC,SAAS,EAC9E,CAAC,CAAC,CAAC,YAAY;AACf,MAAM,iDAAiD,EAAE,OAAO;CAC9D,MAAM,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,SAAS,MAAM,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CAC5D,OAAO,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,SAAS,cAAc,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;AACvE,CAAC,CAAC,CAAC,YAAY;AACf,MAAM,4DAA4D,EAAE,OAAO;CACzE,MAAM,EAAE,OAAO,CAAC,CAAC,SAAS,WAAW,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CAC3D,QAAQ,EAAE,OAAO,CAAC,CAAC,SAAS,mBAAmB,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CACrE,SAAS,EAAE,OAAO,CAAC,CAAC,SAAS,cAAc,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CACjE,aAAa,EAAE,OAAO,CAAC,CAAC,SAAS,iBAAiB,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CACxE,cAAc,EAAE,OAAO,CAAC,CAAC,SAAS,kBAAkB,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CAC1E,gBAAgB,EAAE,OAAO,CAAC,CAAC,SAAS,iBAAiB,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CAC3E,gBAAgB,EAAE,OAAO,CAAC,CAAC,SAAS,mBAAmB,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;AAC/E,CAAC,CAAC,CAAC,YAAY;AACf,MAAM,oDAAoD,EAAE,OAAO;CACjE,MAAM,EAAE,OAAO,CAAC,CAAC,SAAS,cAAc,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CAC9D,MAAM,EAAE,OAAO,CAAC,CAAC,SAAS,cAAc,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CAC9D,QAAQ,EAAE,OAAO,CAAC,CAAC,SAAS,gBAAgB,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CAClE,SAAS,EAAE,OAAO,CAAC,CAAC,SAAS,iBAAiB,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CACpE,UAAU,EAAE,OAAO,CAAC,CAAC,SAAS,yBAAyB,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CAC7E,WAAW,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,SAAS,gBAAgB,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CAC3E,aAAa,EAAE,OAAO,CAAC,CAAC,SAAS,qBAAqB,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CAC5E,aAAa,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,SAAS,qBAAqB,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CAClF,cAAc,0DAA0D,SAAS,CAAC,CAAC,SAAS;CAC5F,cAAc,EAAE,OAAO,CAAC,CAAC,SAAS,sBAAsB,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CAC9E,cAAc,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,SAAS,0BAA0B,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CACxF,iBAAiB,EAAE,OAAO,CAAC,CAAC,SAAS,sBAAsB,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CACjF,iBAAiB,EAAE,OAAO,CAAC,CAAC,SAAS,yBAAyB,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;AACtF,CAAC,CAAC,CAAC,YAAY;AACf,MAAM,qDAAqD,EAAE,OAAO;CAClE,OAAO,EAAE,OAAO,CAAC,CAAC,SAAS,WAAW,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CAC5D,QAAQ,+CAA+C,SAAS,CAAC,CAAC,SAAS;CAC3E,SAAS,kDAAkD,SAAS,CAAC,CAAC,SAAS;CAC/E,UAAU,+CAA+C,SAAS,CAAC,CAAC,SAAS;CAC7E,aAAa,EAAE,OAAO,CAAC,CAAC,SAAS,kBAAkB,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;AAC3E,CAAC,CAAC,CAAC,YAAY;AACf,MAAM,oDAAoD,EAAE,OAAO;CACjE,SAAS,EAAE,OAAO,CAAC,CAAC,SAAS,qBAAqB,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CACxE,UAAU,EAAE,OAAO,CAAC,CAAC,SAAS,uBAAuB,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CAC3E,UAAU,EAAE,OAAO,CAAC,CAAC,SAAS,yBAAyB,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CAC7E,UAAU,EAAE,OAAO,CAAC,CAAC,SAAS,qBAAqB,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CACzE,UAAU,mDAAmD,SAAS,CAAC,CAAC,SAAS;CACjF,WAAW,EAAE,OAAO,CAAC,CAAC,SAAS,0BAA0B,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CAC/E,aAAa,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,SAAS,qBAAqB,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CAClF,cAAc,EAAE,OAAO,CAAC,CAAC,SAAS,2BAA2B,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CACnF,iBAAiB,EAAE,OAAO,CAAC,CAAC,SAAS,0BAA0B,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CACrF,iBAAiB,EAAE,QAAQ,CAAC,CAAC,SAAS,mCAAmC,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CAC/F,oBAAoB,EAAE,OAAO,CAAC,CAAC,SAAS,oBAAoB,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;AACpF,CAAC,CAAC,CAAC,YAAY;AACf,MAAM,oDAAoD,EAAE,OAAO;CACjE,QAAQ,EAAE,OAAO,CAAC,CAAC,SAAS,cAAc,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CAChE,SAAS,kDAAkD,SAAS,CAAC,CAAC,SAAS;CAC/E,UAAU,EAAE,OAAO,CAAC,CAAC,SAAS,qBAAqB,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CACzE,WAAW,EAAE,OAAO,CAAC,CAAC,SAAS,sBAAsB,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;AAC7E,CAAC,CAAC,CAAC,YAAY;AACf,MAAM,yDAAyD,EAAE,OAAO;CACtE,OAAO,gDAAgD,SAAS;CAChE,SAAS,kDAAkD,SAAS;AACtE,CAAC,CAAC,CAAC,YAAY;AASf,MAAa,kCAAkC,OAAO,uCAAuC;CAC3F,MAAM;CACN,MAAM;CACN,aAAa;CACb,OAAO;CACP,QAbmD,EAAE,OAAO;EAC5D,IAAI,EAAE,OAAO,CAAC,CAAC,SAAS,0CAA0C,CAAC,CAAC,SAAS;EAC7E,MAAM,+CAA+C,SAAS;EAC9D,MAAM,EAAE,OAAO,CAAC,CAAC,SAAS,8BAA8B,CAAC,CAAC,SAAS;EACnE,OAAO,EAAE,MAAM,sDAAsD,CAAC,CAAC,SAAS,oDAAoD;EACpI,QAAQ,EAAE,KAAK;GAAC;GAAW;GAAe;GAAY;GAAwB;GAAY;GAAc;EAAS,CAAC,CAAC,CAAC,SAAS,kBAAkB,CAAC,CAAC,SAAS;CAC5J,CAAC,CAAC,CAAC,YAOO;AACV,CAAC"}
@@ -2,11 +2,11 @@ const require_action = require("../action.cjs");
2
2
  let zod = require("zod");
3
3
  //#region src/actions/reverse-email-lookup.ts
4
4
  const FullenrichReverseEmailLookupInput = zod.z.object({
5
- data: zod.z.array(zod.z.object({ email: zod.z.string().describe("Email address for reverse lookup (work or personal)") })).describe("Collection of email objects to process; each email lookup consumes 1 credit"),
5
+ data: zod.z.array(zod.z.object({ email: zod.z.string().describe("Email address for reverse lookup (work or personal)") }).passthrough()).describe("Collection of email objects to process; each email lookup consumes 1 credit"),
6
6
  name: zod.z.string().describe("Operation identifier for the enrichment task"),
7
7
  webhook_url: zod.z.string().describe("Webhook URL to be triggered when enrichment is complete. Useful for n8n integrations and async processing").optional()
8
8
  });
9
- const FullenrichReverseEmailLookupOutput = zod.z.object({ enrichment_id: zod.z.string().describe("Unique identifier in UUID format for the bulk operation. Use this ID to retrieve enrichment results via the 'Get Reverse Email Result' endpoint").nullable() });
9
+ const FullenrichReverseEmailLookupOutput = zod.z.object({ enrichment_id: zod.z.string().describe("Unique identifier in UUID format for the bulk operation. Use this ID to retrieve enrichment results via the 'Get Reverse Email Result' endpoint").nullable() }).passthrough();
10
10
  const fullenrichReverseEmailLookup = require_action.action("FULLENRICH_REVERSE_EMAIL_LOOKUP", {
11
11
  slug: "fullenrich-reverse-email-lookup",
12
12
  name: "Reverse Email Lookup",
@@ -1 +1 @@
1
- {"version":3,"file":"reverse-email-lookup.cjs","names":["z","action"],"sources":["../../src/actions/reverse-email-lookup.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const FullenrichReverseEmailLookupInput = z.object({\n data: z.array(z.object({\n email: z.string().describe(\"Email address for reverse lookup (work or personal)\"),\n})).describe(\"Collection of email objects to process; each email lookup consumes 1 credit\"),\n name: z.string().describe(\"Operation identifier for the enrichment task\"),\n webhook_url: z.string().describe(\"Webhook URL to be triggered when enrichment is complete. Useful for n8n integrations and async processing\").optional(),\n});\nexport const FullenrichReverseEmailLookupOutput = z.object({\n enrichment_id: z.string().describe(\"Unique identifier in UUID format for the bulk operation. Use this ID to retrieve enrichment results via the 'Get Reverse Email Result' endpoint\").nullable(),\n});\n\nexport const fullenrichReverseEmailLookup = action(\"FULLENRICH_REVERSE_EMAIL_LOOKUP\", {\n slug: \"fullenrich-reverse-email-lookup\",\n name: \"Reverse Email Lookup\",\n description: \"Tool to perform bulk reverse email lookup to retrieve full person and company profile from work or personal email addresses. Use when you have email addresses and need to enrich them with complete contact information. Results are processed asynchronously; use the returned enrichment_id to retrieve actual data.\",\n input: FullenrichReverseEmailLookupInput,\n output: FullenrichReverseEmailLookupOutput,\n});\n"],"mappings":";;;AAIA,MAAa,oCAAoCA,IAAAA,EAAE,OAAO;CACxD,MAAMA,IAAAA,EAAE,MAAMA,IAAAA,EAAE,OAAO,EACvB,OAAOA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,qDAAqD,EAClF,CAAC,CAAC,CAAC,CAAC,SAAS,6EAA6E;CACxF,MAAMA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,8CAA8C;CACxE,aAAaA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,2GAA2G,CAAC,CAAC,SAAS;AACzJ,CAAC;AACD,MAAa,qCAAqCA,IAAAA,EAAE,OAAO,EACzD,eAAeA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,iJAAiJ,CAAC,CAAC,SAAS,EACjM,CAAC;AAED,MAAa,+BAA+BC,eAAAA,OAAO,mCAAmC;CACpF,MAAM;CACN,MAAM;CACN,aAAa;CACb,OAAO;CACP,QAAQ;AACV,CAAC"}
1
+ {"version":3,"file":"reverse-email-lookup.cjs","names":["z","action"],"sources":["../../src/actions/reverse-email-lookup.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const FullenrichReverseEmailLookupInput = z.object({\n data: z.array(z.object({\n email: z.string().describe(\"Email address for reverse lookup (work or personal)\"),\n}).passthrough()).describe(\"Collection of email objects to process; each email lookup consumes 1 credit\"),\n name: z.string().describe(\"Operation identifier for the enrichment task\"),\n webhook_url: z.string().describe(\"Webhook URL to be triggered when enrichment is complete. Useful for n8n integrations and async processing\").optional(),\n});\nexport const FullenrichReverseEmailLookupOutput = z.object({\n enrichment_id: z.string().describe(\"Unique identifier in UUID format for the bulk operation. Use this ID to retrieve enrichment results via the 'Get Reverse Email Result' endpoint\").nullable(),\n}).passthrough();\n\nexport const fullenrichReverseEmailLookup = action(\"FULLENRICH_REVERSE_EMAIL_LOOKUP\", {\n slug: \"fullenrich-reverse-email-lookup\",\n name: \"Reverse Email Lookup\",\n description: \"Tool to perform bulk reverse email lookup to retrieve full person and company profile from work or personal email addresses. Use when you have email addresses and need to enrich them with complete contact information. Results are processed asynchronously; use the returned enrichment_id to retrieve actual data.\",\n input: FullenrichReverseEmailLookupInput,\n output: FullenrichReverseEmailLookupOutput,\n});\n"],"mappings":";;;AAIA,MAAa,oCAAoCA,IAAAA,EAAE,OAAO;CACxD,MAAMA,IAAAA,EAAE,MAAMA,IAAAA,EAAE,OAAO,EACvB,OAAOA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,qDAAqD,EAClF,CAAC,CAAC,CAAC,YAAY,CAAC,CAAC,CAAC,SAAS,6EAA6E;CACtG,MAAMA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,8CAA8C;CACxE,aAAaA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,2GAA2G,CAAC,CAAC,SAAS;AACzJ,CAAC;AACD,MAAa,qCAAqCA,IAAAA,EAAE,OAAO,EACzD,eAAeA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,iJAAiJ,CAAC,CAAC,SAAS,EACjM,CAAC,CAAC,CAAC,YAAY;AAEf,MAAa,+BAA+BC,eAAAA,OAAO,mCAAmC;CACpF,MAAM;CACN,MAAM;CACN,aAAa;CACb,OAAO;CACP,QAAQ;AACV,CAAC"}
@@ -4,15 +4,16 @@ import { z } from "zod";
4
4
  declare const FullenrichReverseEmailLookupInput: z.ZodObject<{
5
5
  data: z.ZodArray<z.ZodObject<{
6
6
  email: z.ZodString;
7
- }, z.core.$strip>>;
7
+ }, z.core.$loose>>;
8
8
  name: z.ZodString;
9
9
  webhook_url: z.ZodOptional<z.ZodString>;
10
10
  }, z.core.$strip>;
11
11
  declare const FullenrichReverseEmailLookupOutput: z.ZodObject<{
12
12
  enrichment_id: z.ZodNullable<z.ZodString>;
13
- }, z.core.$strip>;
13
+ }, z.core.$loose>;
14
14
  declare const fullenrichReverseEmailLookup: import("@keystrokehq/action").WorkflowActionDefinition<{
15
15
  data: {
16
+ [x: string]: unknown;
16
17
  email: string;
17
18
  }[];
18
19
  name: string;
@@ -4,15 +4,16 @@ import { z } from "zod";
4
4
  declare const FullenrichReverseEmailLookupInput: z.ZodObject<{
5
5
  data: z.ZodArray<z.ZodObject<{
6
6
  email: z.ZodString;
7
- }, z.core.$strip>>;
7
+ }, z.core.$loose>>;
8
8
  name: z.ZodString;
9
9
  webhook_url: z.ZodOptional<z.ZodString>;
10
10
  }, z.core.$strip>;
11
11
  declare const FullenrichReverseEmailLookupOutput: z.ZodObject<{
12
12
  enrichment_id: z.ZodNullable<z.ZodString>;
13
- }, z.core.$strip>;
13
+ }, z.core.$loose>;
14
14
  declare const fullenrichReverseEmailLookup: import("@keystrokehq/action").WorkflowActionDefinition<{
15
15
  data: {
16
+ [x: string]: unknown;
16
17
  email: string;
17
18
  }[];
18
19
  name: string;