@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
@@ -1 +1 @@
1
- {"version":3,"file":"start-bulk-enrichment.cjs","names":["z","action"],"sources":["../../src/actions/start-bulk-enrichment.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const FullenrichStartBulkEnrichmentInput = z.object({\n name: z.string().describe(\"Human-readable job name (e.g., 'Sales Operations in London')\"),\n datas: z.array(z.object({\n custom: z.object({}).describe(\"Free-form metadata; values must be strings. Numbers or nested objects will error\").optional(),\n domain: z.string().describe(\"Contact's domain; required with firstname and lastname\").optional(),\n lastname: z.string().describe(\"Contact's last name; required if not using linkedin_url\").optional(),\n firstname: z.string().describe(\"Contact's first name; required if not using linkedin_url\").optional(),\n company_name: z.string().describe(\"Contact's company name; alternative to domain when using names\").optional(),\n linkedin_url: z.string().describe(\"Full LinkedIn profile URL. If provided, names and domain/company_name are ignored\").optional(),\n enrich_fields: z.array(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(),\n})).describe(\"List of 1–100 contacts to enrich; see ContactData for details\"),\n checkDomain: z.boolean().describe(\"If false, skip contacts with invalid/missing domains\").optional(),\n webhook_url: z.string().describe(\"URL to receive a POST callback when job finishes, fails, or lacks credits\").optional(),\n checkLinkedinUrl: z.boolean().describe(\"If false, skip contacts with invalid/missing LinkedIn URLs\").optional(),\n});\nexport const FullenrichStartBulkEnrichmentOutput = z.object({\n enrichment_id: z.string().describe(\"ID of the started bulk enrichment job\").nullable(),\n});\n\nexport const fullenrichStartBulkEnrichment = action(\"FULLENRICH_START_BULK_ENRICHMENT\", {\n slug: \"fullenrich-start-bulk-enrichment\",\n name: \"Start Bulk Enrichment\",\n description: \"Tool to start a bulk enrichment job. Use when you have up to 100 contacts prepared and need batch enrichment. Use after confirming contact data.\",\n input: FullenrichStartBulkEnrichmentInput,\n output: FullenrichStartBulkEnrichmentOutput,\n});\n"],"mappings":";;;AAIA,MAAa,qCAAqCA,IAAAA,EAAE,OAAO;CACzD,MAAMA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,8DAA8D;CACxF,OAAOA,IAAAA,EAAE,MAAMA,IAAAA,EAAE,OAAO;EACxB,QAAQA,IAAAA,EAAE,OAAO,CAAC,CAAC,CAAC,CAAC,SAAS,kFAAkF,CAAC,CAAC,SAAS;EAC3H,QAAQA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,wDAAwD,CAAC,CAAC,SAAS;EAC/F,UAAUA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,yDAAyD,CAAC,CAAC,SAAS;EAClG,WAAWA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,0DAA0D,CAAC,CAAC,SAAS;EACpG,cAAcA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,gEAAgE,CAAC,CAAC,SAAS;EAC7G,cAAcA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,mFAAmF,CAAC,CAAC,SAAS;EAChI,eAAeA,IAAAA,EAAE,MAAMA,IAAAA,EAAE,OAAO,CAAC,CAAC,CAAC,SAAS,mKAAmK,CAAC,CAAC,SAAS;CAC5N,CAAC,CAAC,CAAC,CAAC,SAAS,+DAA+D;CAC1E,aAAaA,IAAAA,EAAE,QAAQ,CAAC,CAAC,SAAS,sDAAsD,CAAC,CAAC,SAAS;CACnG,aAAaA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,2EAA2E,CAAC,CAAC,SAAS;CACvH,kBAAkBA,IAAAA,EAAE,QAAQ,CAAC,CAAC,SAAS,4DAA4D,CAAC,CAAC,SAAS;AAChH,CAAC;AACD,MAAa,sCAAsCA,IAAAA,EAAE,OAAO,EAC1D,eAAeA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,uCAAuC,CAAC,CAAC,SAAS,EACvF,CAAC;AAED,MAAa,gCAAgCC,eAAAA,OAAO,oCAAoC;CACtF,MAAM;CACN,MAAM;CACN,aAAa;CACb,OAAO;CACP,QAAQ;AACV,CAAC"}
1
+ {"version":3,"file":"start-bulk-enrichment.cjs","names":["z","action"],"sources":["../../src/actions/start-bulk-enrichment.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const FullenrichStartBulkEnrichmentInput = z.object({\n name: z.string().describe(\"Human-readable job name (e.g., 'Sales Operations in London')\"),\n datas: z.array(z.object({\n custom: z.record(z.string(), z.unknown()).describe(\"Free-form metadata; values must be strings. Numbers or nested objects will error\").optional(),\n domain: z.string().describe(\"Contact's domain; required with firstname and lastname\").optional(),\n lastname: z.string().describe(\"Contact's last name; required if not using linkedin_url\").optional(),\n firstname: z.string().describe(\"Contact's first name; required if not using linkedin_url\").optional(),\n company_name: z.string().describe(\"Contact's company name; alternative to domain when using names\").optional(),\n linkedin_url: z.string().describe(\"Full LinkedIn profile URL. If provided, names and domain/company_name are ignored\").optional(),\n enrich_fields: z.array(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(),\n}).passthrough()).describe(\"List of 1–100 contacts to enrich; see ContactData for details\"),\n checkDomain: z.boolean().describe(\"If false, skip contacts with invalid/missing domains\").optional(),\n webhook_url: z.string().describe(\"URL to receive a POST callback when job finishes, fails, or lacks credits\").optional(),\n checkLinkedinUrl: z.boolean().describe(\"If false, skip contacts with invalid/missing LinkedIn URLs\").optional(),\n});\nexport const FullenrichStartBulkEnrichmentOutput = z.object({\n enrichment_id: z.string().describe(\"ID of the started bulk enrichment job\").nullable(),\n}).passthrough();\n\nexport const fullenrichStartBulkEnrichment = action(\"FULLENRICH_START_BULK_ENRICHMENT\", {\n slug: \"fullenrich-start-bulk-enrichment\",\n name: \"Start Bulk Enrichment\",\n description: \"Tool to start a bulk enrichment job. Use when you have up to 100 contacts prepared and need batch enrichment. Use after confirming contact data.\",\n input: FullenrichStartBulkEnrichmentInput,\n output: FullenrichStartBulkEnrichmentOutput,\n});\n"],"mappings":";;;AAIA,MAAa,qCAAqCA,IAAAA,EAAE,OAAO;CACzD,MAAMA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,8DAA8D;CACxF,OAAOA,IAAAA,EAAE,MAAMA,IAAAA,EAAE,OAAO;EACxB,QAAQA,IAAAA,EAAE,OAAOA,IAAAA,EAAE,OAAO,GAAGA,IAAAA,EAAE,QAAQ,CAAC,CAAC,CAAC,SAAS,kFAAkF,CAAC,CAAC,SAAS;EAChJ,QAAQA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,wDAAwD,CAAC,CAAC,SAAS;EAC/F,UAAUA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,yDAAyD,CAAC,CAAC,SAAS;EAClG,WAAWA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,0DAA0D,CAAC,CAAC,SAAS;EACpG,cAAcA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,gEAAgE,CAAC,CAAC,SAAS;EAC7G,cAAcA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,mFAAmF,CAAC,CAAC,SAAS;EAChI,eAAeA,IAAAA,EAAE,MAAMA,IAAAA,EAAE,OAAO,CAAC,CAAC,CAAC,SAAS,mKAAmK,CAAC,CAAC,SAAS;CAC5N,CAAC,CAAC,CAAC,YAAY,CAAC,CAAC,CAAC,SAAS,+DAA+D;CACxF,aAAaA,IAAAA,EAAE,QAAQ,CAAC,CAAC,SAAS,sDAAsD,CAAC,CAAC,SAAS;CACnG,aAAaA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,2EAA2E,CAAC,CAAC,SAAS;CACvH,kBAAkBA,IAAAA,EAAE,QAAQ,CAAC,CAAC,SAAS,4DAA4D,CAAC,CAAC,SAAS;AAChH,CAAC;AACD,MAAa,sCAAsCA,IAAAA,EAAE,OAAO,EAC1D,eAAeA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,uCAAuC,CAAC,CAAC,SAAS,EACvF,CAAC,CAAC,CAAC,YAAY;AAEf,MAAa,gCAAgCC,eAAAA,OAAO,oCAAoC;CACtF,MAAM;CACN,MAAM;CACN,aAAa;CACb,OAAO;CACP,QAAQ;AACV,CAAC"}
@@ -4,25 +4,26 @@ import { z } from "zod";
4
4
  declare const FullenrichStartBulkEnrichmentInput: z.ZodObject<{
5
5
  name: z.ZodString;
6
6
  datas: z.ZodArray<z.ZodObject<{
7
- custom: z.ZodOptional<z.ZodObject<{}, z.core.$strip>>;
7
+ custom: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
8
8
  domain: z.ZodOptional<z.ZodString>;
9
9
  lastname: z.ZodOptional<z.ZodString>;
10
10
  firstname: z.ZodOptional<z.ZodString>;
11
11
  company_name: z.ZodOptional<z.ZodString>;
12
12
  linkedin_url: z.ZodOptional<z.ZodString>;
13
13
  enrich_fields: z.ZodOptional<z.ZodArray<z.ZodString>>;
14
- }, z.core.$strip>>;
14
+ }, z.core.$loose>>;
15
15
  checkDomain: z.ZodOptional<z.ZodBoolean>;
16
16
  webhook_url: z.ZodOptional<z.ZodString>;
17
17
  checkLinkedinUrl: z.ZodOptional<z.ZodBoolean>;
18
18
  }, z.core.$strip>;
19
19
  declare const FullenrichStartBulkEnrichmentOutput: z.ZodObject<{
20
20
  enrichment_id: z.ZodNullable<z.ZodString>;
21
- }, z.core.$strip>;
21
+ }, z.core.$loose>;
22
22
  declare const fullenrichStartBulkEnrichment: import("@keystrokehq/action").WorkflowActionDefinition<{
23
23
  name: string;
24
24
  datas: {
25
- custom?: Record<string, never> | undefined;
25
+ [x: string]: unknown;
26
+ custom?: Record<string, unknown> | undefined;
26
27
  domain?: string | undefined;
27
28
  lastname?: string | undefined;
28
29
  firstname?: string | undefined;
@@ -1 +1 @@
1
- {"version":3,"file":"start-bulk-enrichment.d.cts","names":[],"sources":["../../src/actions/start-bulk-enrichment.ts"],"mappings":";;;cAIa,kCAAA,EAAkC,CAAA,CAAA,SAAA;;;;;;;;;;;;;;;cAelC,mCAAA,EAAmC,CAAA,CAAA,SAAA;;;cAInC,6BAAA,gCAA6B,wBAAA;;;aAMxC,MAAA"}
1
+ {"version":3,"file":"start-bulk-enrichment.d.cts","names":[],"sources":["../../src/actions/start-bulk-enrichment.ts"],"mappings":";;;cAIa,kCAAA,EAAkC,CAAA,CAAA,SAAA;;;;;;;;;;;;;;;cAelC,mCAAA,EAAmC,CAAA,CAAA,SAAA;;;cAInC,6BAAA,gCAA6B,wBAAA;;;;aAMxC,MAAA"}
@@ -4,25 +4,26 @@ import { z } from "zod";
4
4
  declare const FullenrichStartBulkEnrichmentInput: z.ZodObject<{
5
5
  name: z.ZodString;
6
6
  datas: z.ZodArray<z.ZodObject<{
7
- custom: z.ZodOptional<z.ZodObject<{}, z.core.$strip>>;
7
+ custom: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
8
8
  domain: z.ZodOptional<z.ZodString>;
9
9
  lastname: z.ZodOptional<z.ZodString>;
10
10
  firstname: z.ZodOptional<z.ZodString>;
11
11
  company_name: z.ZodOptional<z.ZodString>;
12
12
  linkedin_url: z.ZodOptional<z.ZodString>;
13
13
  enrich_fields: z.ZodOptional<z.ZodArray<z.ZodString>>;
14
- }, z.core.$strip>>;
14
+ }, z.core.$loose>>;
15
15
  checkDomain: z.ZodOptional<z.ZodBoolean>;
16
16
  webhook_url: z.ZodOptional<z.ZodString>;
17
17
  checkLinkedinUrl: z.ZodOptional<z.ZodBoolean>;
18
18
  }, z.core.$strip>;
19
19
  declare const FullenrichStartBulkEnrichmentOutput: z.ZodObject<{
20
20
  enrichment_id: z.ZodNullable<z.ZodString>;
21
- }, z.core.$strip>;
21
+ }, z.core.$loose>;
22
22
  declare const fullenrichStartBulkEnrichment: import("@keystrokehq/action").WorkflowActionDefinition<{
23
23
  name: string;
24
24
  datas: {
25
- custom?: Record<string, never> | undefined;
25
+ [x: string]: unknown;
26
+ custom?: Record<string, unknown> | undefined;
26
27
  domain?: string | undefined;
27
28
  lastname?: string | undefined;
28
29
  firstname?: string | undefined;
@@ -1 +1 @@
1
- {"version":3,"file":"start-bulk-enrichment.d.mts","names":[],"sources":["../../src/actions/start-bulk-enrichment.ts"],"mappings":";;;cAIa,kCAAA,EAAkC,CAAA,CAAA,SAAA;;;;;;;;;;;;;;;cAelC,mCAAA,EAAmC,CAAA,CAAA,SAAA;;;cAInC,6BAAA,gCAA6B,wBAAA;;;aAMxC,MAAA"}
1
+ {"version":3,"file":"start-bulk-enrichment.d.mts","names":[],"sources":["../../src/actions/start-bulk-enrichment.ts"],"mappings":";;;cAIa,kCAAA,EAAkC,CAAA,CAAA,SAAA;;;;;;;;;;;;;;;cAelC,mCAAA,EAAmC,CAAA,CAAA,SAAA;;;cAInC,6BAAA,gCAA6B,wBAAA;;;;aAMxC,MAAA"}
@@ -7,19 +7,19 @@ const fullenrichStartBulkEnrichment = action("FULLENRICH_START_BULK_ENRICHMENT",
7
7
  input: z.object({
8
8
  name: z.string().describe("Human-readable job name (e.g., 'Sales Operations in London')"),
9
9
  datas: z.array(z.object({
10
- custom: z.object({}).describe("Free-form metadata; values must be strings. Numbers or nested objects will error").optional(),
10
+ custom: z.record(z.string(), z.unknown()).describe("Free-form metadata; values must be strings. Numbers or nested objects will error").optional(),
11
11
  domain: z.string().describe("Contact's domain; required with firstname and lastname").optional(),
12
12
  lastname: z.string().describe("Contact's last name; required if not using linkedin_url").optional(),
13
13
  firstname: z.string().describe("Contact's first name; required if not using linkedin_url").optional(),
14
14
  company_name: z.string().describe("Contact's company name; alternative to domain when using names").optional(),
15
15
  linkedin_url: z.string().describe("Full LinkedIn profile URL. If provided, names and domain/company_name are ignored").optional(),
16
16
  enrich_fields: z.array(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()
17
- })).describe("List of 1–100 contacts to enrich; see ContactData for details"),
17
+ }).passthrough()).describe("List of 1–100 contacts to enrich; see ContactData for details"),
18
18
  checkDomain: z.boolean().describe("If false, skip contacts with invalid/missing domains").optional(),
19
19
  webhook_url: z.string().describe("URL to receive a POST callback when job finishes, fails, or lacks credits").optional(),
20
20
  checkLinkedinUrl: z.boolean().describe("If false, skip contacts with invalid/missing LinkedIn URLs").optional()
21
21
  }),
22
- output: z.object({ enrichment_id: z.string().describe("ID of the started bulk enrichment job").nullable() })
22
+ output: z.object({ enrichment_id: z.string().describe("ID of the started bulk enrichment job").nullable() }).passthrough()
23
23
  });
24
24
  //#endregion
25
25
  export { fullenrichStartBulkEnrichment };
@@ -1 +1 @@
1
- {"version":3,"file":"start-bulk-enrichment.mjs","names":[],"sources":["../../src/actions/start-bulk-enrichment.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const FullenrichStartBulkEnrichmentInput = z.object({\n name: z.string().describe(\"Human-readable job name (e.g., 'Sales Operations in London')\"),\n datas: z.array(z.object({\n custom: z.object({}).describe(\"Free-form metadata; values must be strings. Numbers or nested objects will error\").optional(),\n domain: z.string().describe(\"Contact's domain; required with firstname and lastname\").optional(),\n lastname: z.string().describe(\"Contact's last name; required if not using linkedin_url\").optional(),\n firstname: z.string().describe(\"Contact's first name; required if not using linkedin_url\").optional(),\n company_name: z.string().describe(\"Contact's company name; alternative to domain when using names\").optional(),\n linkedin_url: z.string().describe(\"Full LinkedIn profile URL. If provided, names and domain/company_name are ignored\").optional(),\n enrich_fields: z.array(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(),\n})).describe(\"List of 1–100 contacts to enrich; see ContactData for details\"),\n checkDomain: z.boolean().describe(\"If false, skip contacts with invalid/missing domains\").optional(),\n webhook_url: z.string().describe(\"URL to receive a POST callback when job finishes, fails, or lacks credits\").optional(),\n checkLinkedinUrl: z.boolean().describe(\"If false, skip contacts with invalid/missing LinkedIn URLs\").optional(),\n});\nexport const FullenrichStartBulkEnrichmentOutput = z.object({\n enrichment_id: z.string().describe(\"ID of the started bulk enrichment job\").nullable(),\n});\n\nexport const fullenrichStartBulkEnrichment = action(\"FULLENRICH_START_BULK_ENRICHMENT\", {\n slug: \"fullenrich-start-bulk-enrichment\",\n name: \"Start Bulk Enrichment\",\n description: \"Tool to start a bulk enrichment job. Use when you have up to 100 contacts prepared and need batch enrichment. Use after confirming contact data.\",\n input: FullenrichStartBulkEnrichmentInput,\n output: FullenrichStartBulkEnrichmentOutput,\n});\n"],"mappings":";;AAuBA,MAAa,gCAAgC,OAAO,oCAAoC;CACtF,MAAM;CACN,MAAM;CACN,aAAa;CACb,OAvBgD,EAAE,OAAO;EACzD,MAAM,EAAE,OAAO,CAAC,CAAC,SAAS,8DAA8D;EACxF,OAAO,EAAE,MAAM,EAAE,OAAO;GACxB,QAAQ,EAAE,OAAO,CAAC,CAAC,CAAC,CAAC,SAAS,kFAAkF,CAAC,CAAC,SAAS;GAC3H,QAAQ,EAAE,OAAO,CAAC,CAAC,SAAS,wDAAwD,CAAC,CAAC,SAAS;GAC/F,UAAU,EAAE,OAAO,CAAC,CAAC,SAAS,yDAAyD,CAAC,CAAC,SAAS;GAClG,WAAW,EAAE,OAAO,CAAC,CAAC,SAAS,0DAA0D,CAAC,CAAC,SAAS;GACpG,cAAc,EAAE,OAAO,CAAC,CAAC,SAAS,gEAAgE,CAAC,CAAC,SAAS;GAC7G,cAAc,EAAE,OAAO,CAAC,CAAC,SAAS,mFAAmF,CAAC,CAAC,SAAS;GAChI,eAAe,EAAE,MAAM,EAAE,OAAO,CAAC,CAAC,CAAC,SAAS,mKAAmK,CAAC,CAAC,SAAS;EAC5N,CAAC,CAAC,CAAC,CAAC,SAAS,+DAA+D;EAC1E,aAAa,EAAE,QAAQ,CAAC,CAAC,SAAS,sDAAsD,CAAC,CAAC,SAAS;EACnG,aAAa,EAAE,OAAO,CAAC,CAAC,SAAS,2EAA2E,CAAC,CAAC,SAAS;EACvH,kBAAkB,EAAE,QAAQ,CAAC,CAAC,SAAS,4DAA4D,CAAC,CAAC,SAAS;CAChH,CASS;CACP,QATiD,EAAE,OAAO,EAC1D,eAAe,EAAE,OAAO,CAAC,CAAC,SAAS,uCAAuC,CAAC,CAAC,SAAS,EACvF,CAOU;AACV,CAAC"}
1
+ {"version":3,"file":"start-bulk-enrichment.mjs","names":[],"sources":["../../src/actions/start-bulk-enrichment.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const FullenrichStartBulkEnrichmentInput = z.object({\n name: z.string().describe(\"Human-readable job name (e.g., 'Sales Operations in London')\"),\n datas: z.array(z.object({\n custom: z.record(z.string(), z.unknown()).describe(\"Free-form metadata; values must be strings. Numbers or nested objects will error\").optional(),\n domain: z.string().describe(\"Contact's domain; required with firstname and lastname\").optional(),\n lastname: z.string().describe(\"Contact's last name; required if not using linkedin_url\").optional(),\n firstname: z.string().describe(\"Contact's first name; required if not using linkedin_url\").optional(),\n company_name: z.string().describe(\"Contact's company name; alternative to domain when using names\").optional(),\n linkedin_url: z.string().describe(\"Full LinkedIn profile URL. If provided, names and domain/company_name are ignored\").optional(),\n enrich_fields: z.array(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(),\n}).passthrough()).describe(\"List of 1–100 contacts to enrich; see ContactData for details\"),\n checkDomain: z.boolean().describe(\"If false, skip contacts with invalid/missing domains\").optional(),\n webhook_url: z.string().describe(\"URL to receive a POST callback when job finishes, fails, or lacks credits\").optional(),\n checkLinkedinUrl: z.boolean().describe(\"If false, skip contacts with invalid/missing LinkedIn URLs\").optional(),\n});\nexport const FullenrichStartBulkEnrichmentOutput = z.object({\n enrichment_id: z.string().describe(\"ID of the started bulk enrichment job\").nullable(),\n}).passthrough();\n\nexport const fullenrichStartBulkEnrichment = action(\"FULLENRICH_START_BULK_ENRICHMENT\", {\n slug: \"fullenrich-start-bulk-enrichment\",\n name: \"Start Bulk Enrichment\",\n description: \"Tool to start a bulk enrichment job. Use when you have up to 100 contacts prepared and need batch enrichment. Use after confirming contact data.\",\n input: FullenrichStartBulkEnrichmentInput,\n output: FullenrichStartBulkEnrichmentOutput,\n});\n"],"mappings":";;AAuBA,MAAa,gCAAgC,OAAO,oCAAoC;CACtF,MAAM;CACN,MAAM;CACN,aAAa;CACb,OAvBgD,EAAE,OAAO;EACzD,MAAM,EAAE,OAAO,CAAC,CAAC,SAAS,8DAA8D;EACxF,OAAO,EAAE,MAAM,EAAE,OAAO;GACxB,QAAQ,EAAE,OAAO,EAAE,OAAO,GAAG,EAAE,QAAQ,CAAC,CAAC,CAAC,SAAS,kFAAkF,CAAC,CAAC,SAAS;GAChJ,QAAQ,EAAE,OAAO,CAAC,CAAC,SAAS,wDAAwD,CAAC,CAAC,SAAS;GAC/F,UAAU,EAAE,OAAO,CAAC,CAAC,SAAS,yDAAyD,CAAC,CAAC,SAAS;GAClG,WAAW,EAAE,OAAO,CAAC,CAAC,SAAS,0DAA0D,CAAC,CAAC,SAAS;GACpG,cAAc,EAAE,OAAO,CAAC,CAAC,SAAS,gEAAgE,CAAC,CAAC,SAAS;GAC7G,cAAc,EAAE,OAAO,CAAC,CAAC,SAAS,mFAAmF,CAAC,CAAC,SAAS;GAChI,eAAe,EAAE,MAAM,EAAE,OAAO,CAAC,CAAC,CAAC,SAAS,mKAAmK,CAAC,CAAC,SAAS;EAC5N,CAAC,CAAC,CAAC,YAAY,CAAC,CAAC,CAAC,SAAS,+DAA+D;EACxF,aAAa,EAAE,QAAQ,CAAC,CAAC,SAAS,sDAAsD,CAAC,CAAC,SAAS;EACnG,aAAa,EAAE,OAAO,CAAC,CAAC,SAAS,2EAA2E,CAAC,CAAC,SAAS;EACvH,kBAAkB,EAAE,QAAQ,CAAC,CAAC,SAAS,4DAA4D,CAAC,CAAC,SAAS;CAChH,CASS;CACP,QATiD,EAAE,OAAO,EAC1D,eAAe,EAAE,OAAO,CAAC,CAAC,SAAS,uCAAuC,CAAC,CAAC,SAAS,EACvF,CAAC,CAAC,CAAC,YAOO;AACV,CAAC"}
@@ -2,7 +2,7 @@ const require_action = require("../action.cjs");
2
2
  let zod = require("zod");
3
3
  //#region src/actions/verify-api-key.ts
4
4
  const FullenrichVerifyApiKeyInput = zod.z.object({}).describe("Empty request: no parameters required to verify the API key.");
5
- const FullenrichVerifyApiKeyOutput = zod.z.object({ workspace_id: zod.z.string().describe("The identifier of the workspace associated with the valid API key").nullable() });
5
+ const FullenrichVerifyApiKeyOutput = zod.z.object({ workspace_id: zod.z.string().describe("The identifier of the workspace associated with the valid API key").nullable() }).passthrough();
6
6
  const fullenrichVerifyApiKey = require_action.action("FULLENRICH_VERIFY_API_KEY", {
7
7
  slug: "fullenrich-verify-api-key",
8
8
  name: "Verify API Key",
@@ -1 +1 @@
1
- {"version":3,"file":"verify-api-key.cjs","names":["z","action"],"sources":["../../src/actions/verify-api-key.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const FullenrichVerifyApiKeyInput = z.object({}).describe(\"Empty request: no parameters required to verify the API key.\");\nexport const FullenrichVerifyApiKeyOutput = z.object({\n workspace_id: z.string().describe(\"The identifier of the workspace associated with the valid API key\").nullable(),\n});\n\nexport const fullenrichVerifyApiKey = action(\"FULLENRICH_VERIFY_API_KEY\", {\n slug: \"fullenrich-verify-api-key\",\n name: \"Verify API Key\",\n description: \"Tool to check if your API key is valid and return the associated workspace ID. Use when you need to verify API key validity before performing other operations.\",\n input: FullenrichVerifyApiKeyInput,\n output: FullenrichVerifyApiKeyOutput,\n});\n"],"mappings":";;;AAIA,MAAa,8BAA8BA,IAAAA,EAAE,OAAO,CAAC,CAAC,CAAC,CAAC,SAAS,8DAA8D;AAC/H,MAAa,+BAA+BA,IAAAA,EAAE,OAAO,EACnD,cAAcA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,mEAAmE,CAAC,CAAC,SAAS,EAClH,CAAC;AAED,MAAa,yBAAyBC,eAAAA,OAAO,6BAA6B;CACxE,MAAM;CACN,MAAM;CACN,aAAa;CACb,OAAO;CACP,QAAQ;AACV,CAAC"}
1
+ {"version":3,"file":"verify-api-key.cjs","names":["z","action"],"sources":["../../src/actions/verify-api-key.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const FullenrichVerifyApiKeyInput = z.object({}).describe(\"Empty request: no parameters required to verify the API key.\");\nexport const FullenrichVerifyApiKeyOutput = z.object({\n workspace_id: z.string().describe(\"The identifier of the workspace associated with the valid API key\").nullable(),\n}).passthrough();\n\nexport const fullenrichVerifyApiKey = action(\"FULLENRICH_VERIFY_API_KEY\", {\n slug: \"fullenrich-verify-api-key\",\n name: \"Verify API Key\",\n description: \"Tool to check if your API key is valid and return the associated workspace ID. Use when you need to verify API key validity before performing other operations.\",\n input: FullenrichVerifyApiKeyInput,\n output: FullenrichVerifyApiKeyOutput,\n});\n"],"mappings":";;;AAIA,MAAa,8BAA8BA,IAAAA,EAAE,OAAO,CAAC,CAAC,CAAC,CAAC,SAAS,8DAA8D;AAC/H,MAAa,+BAA+BA,IAAAA,EAAE,OAAO,EACnD,cAAcA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,mEAAmE,CAAC,CAAC,SAAS,EAClH,CAAC,CAAC,CAAC,YAAY;AAEf,MAAa,yBAAyBC,eAAAA,OAAO,6BAA6B;CACxE,MAAM;CACN,MAAM;CACN,aAAa;CACb,OAAO;CACP,QAAQ;AACV,CAAC"}
@@ -4,7 +4,7 @@ import { z } from "zod";
4
4
  declare const FullenrichVerifyApiKeyInput: z.ZodObject<{}, z.core.$strip>;
5
5
  declare const FullenrichVerifyApiKeyOutput: z.ZodObject<{
6
6
  workspace_id: z.ZodNullable<z.ZodString>;
7
- }, z.core.$strip>;
7
+ }, z.core.$loose>;
8
8
  declare const fullenrichVerifyApiKey: import("@keystrokehq/action").WorkflowActionDefinition<Record<string, never>, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
9
9
  //#endregion
10
10
  export { fullenrichVerifyApiKey };
@@ -4,7 +4,7 @@ import { z } from "zod";
4
4
  declare const FullenrichVerifyApiKeyInput: z.ZodObject<{}, z.core.$strip>;
5
5
  declare const FullenrichVerifyApiKeyOutput: z.ZodObject<{
6
6
  workspace_id: z.ZodNullable<z.ZodString>;
7
- }, z.core.$strip>;
7
+ }, z.core.$loose>;
8
8
  declare const fullenrichVerifyApiKey: import("@keystrokehq/action").WorkflowActionDefinition<Record<string, never>, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
9
9
  //#endregion
10
10
  export { fullenrichVerifyApiKey };
@@ -5,7 +5,7 @@ const fullenrichVerifyApiKey = action("FULLENRICH_VERIFY_API_KEY", {
5
5
  name: "Verify API Key",
6
6
  description: "Tool to check if your API key is valid and return the associated workspace ID. Use when you need to verify API key validity before performing other operations.",
7
7
  input: z.object({}).describe("Empty request: no parameters required to verify the API key."),
8
- output: z.object({ workspace_id: z.string().describe("The identifier of the workspace associated with the valid API key").nullable() })
8
+ output: z.object({ workspace_id: z.string().describe("The identifier of the workspace associated with the valid API key").nullable() }).passthrough()
9
9
  });
10
10
  //#endregion
11
11
  export { fullenrichVerifyApiKey };
@@ -1 +1 @@
1
- {"version":3,"file":"verify-api-key.mjs","names":[],"sources":["../../src/actions/verify-api-key.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const FullenrichVerifyApiKeyInput = z.object({}).describe(\"Empty request: no parameters required to verify the API key.\");\nexport const FullenrichVerifyApiKeyOutput = z.object({\n workspace_id: z.string().describe(\"The identifier of the workspace associated with the valid API key\").nullable(),\n});\n\nexport const fullenrichVerifyApiKey = action(\"FULLENRICH_VERIFY_API_KEY\", {\n slug: \"fullenrich-verify-api-key\",\n name: \"Verify API Key\",\n description: \"Tool to check if your API key is valid and return the associated workspace ID. Use when you need to verify API key validity before performing other operations.\",\n input: FullenrichVerifyApiKeyInput,\n output: FullenrichVerifyApiKeyOutput,\n});\n"],"mappings":";;AASA,MAAa,yBAAyB,OAAO,6BAA6B;CACxE,MAAM;CACN,MAAM;CACN,aAAa;CACb,OATyC,EAAE,OAAO,CAAC,CAAC,CAAC,CAAC,SAAS,8DASxD;CACP,QAT0C,EAAE,OAAO,EACnD,cAAc,EAAE,OAAO,CAAC,CAAC,SAAS,mEAAmE,CAAC,CAAC,SAAS,EAClH,CAOU;AACV,CAAC"}
1
+ {"version":3,"file":"verify-api-key.mjs","names":[],"sources":["../../src/actions/verify-api-key.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const FullenrichVerifyApiKeyInput = z.object({}).describe(\"Empty request: no parameters required to verify the API key.\");\nexport const FullenrichVerifyApiKeyOutput = z.object({\n workspace_id: z.string().describe(\"The identifier of the workspace associated with the valid API key\").nullable(),\n}).passthrough();\n\nexport const fullenrichVerifyApiKey = action(\"FULLENRICH_VERIFY_API_KEY\", {\n slug: \"fullenrich-verify-api-key\",\n name: \"Verify API Key\",\n description: \"Tool to check if your API key is valid and return the associated workspace ID. Use when you need to verify API key validity before performing other operations.\",\n input: FullenrichVerifyApiKeyInput,\n output: FullenrichVerifyApiKeyOutput,\n});\n"],"mappings":";;AASA,MAAa,yBAAyB,OAAO,6BAA6B;CACxE,MAAM;CACN,MAAM;CACN,aAAa;CACb,OATyC,EAAE,OAAO,CAAC,CAAC,CAAC,CAAC,SAAS,8DASxD;CACP,QAT0C,EAAE,OAAO,EACnD,cAAc,EAAE,OAAO,CAAC,CAAC,SAAS,mEAAmE,CAAC,CAAC,SAAS,EAClH,CAAC,CAAC,CAAC,YAOO;AACV,CAAC"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@keystrokehq/fullenrich",
3
- "version": "0.1.2",
3
+ "version": "0.1.3",
4
4
  "publishConfig": {
5
5
  "access": "public",
6
6
  "registry": "https://registry.npmjs.org"