@keystrokehq/rocket_reach 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 (73) hide show
  1. package/dist/actions/check-person-status.cjs +1 -1
  2. package/dist/actions/check-person-status.cjs.map +1 -1
  3. package/dist/actions/check-person-status.d.cts +1 -1
  4. package/dist/actions/check-person-status.d.mts +1 -1
  5. package/dist/actions/check-person-status.mjs +1 -1
  6. package/dist/actions/check-person-status.mjs.map +1 -1
  7. package/dist/actions/get-account.cjs +1 -1
  8. package/dist/actions/get-account.cjs.map +1 -1
  9. package/dist/actions/get-account.d.cts +1 -1
  10. package/dist/actions/get-account.d.mts +1 -1
  11. package/dist/actions/get-account.mjs +1 -1
  12. package/dist/actions/get-account.mjs.map +1 -1
  13. package/dist/actions/get-company-funding.cjs +2 -2
  14. package/dist/actions/get-company-funding.cjs.map +1 -1
  15. package/dist/actions/get-company-funding.d.cts +2 -2
  16. package/dist/actions/get-company-funding.d.mts +2 -2
  17. package/dist/actions/get-company-funding.mjs +2 -2
  18. package/dist/actions/get-company-funding.mjs.map +1 -1
  19. package/dist/actions/get-company-growth.cjs +1 -1
  20. package/dist/actions/get-company-growth.cjs.map +1 -1
  21. package/dist/actions/get-company-growth.d.cts +1 -1
  22. package/dist/actions/get-company-growth.d.mts +1 -1
  23. package/dist/actions/get-company-growth.mjs +1 -1
  24. package/dist/actions/get-company-growth.mjs.map +1 -1
  25. package/dist/actions/get-company-industries.cjs +1 -1
  26. package/dist/actions/get-company-industries.cjs.map +1 -1
  27. package/dist/actions/get-company-industries.d.cts +1 -1
  28. package/dist/actions/get-company-industries.d.mts +1 -1
  29. package/dist/actions/get-company-industries.mjs +1 -1
  30. package/dist/actions/get-company-industries.mjs.map +1 -1
  31. package/dist/actions/get-company-size.cjs +1 -1
  32. package/dist/actions/get-company-size.cjs.map +1 -1
  33. package/dist/actions/get-company-size.d.cts +1 -1
  34. package/dist/actions/get-company-size.d.mts +1 -1
  35. package/dist/actions/get-company-size.mjs +1 -1
  36. package/dist/actions/get-company-size.mjs.map +1 -1
  37. package/dist/actions/get-company-tech-stack.cjs +1 -1
  38. package/dist/actions/get-company-tech-stack.cjs.map +1 -1
  39. package/dist/actions/get-company-tech-stack.d.cts +1 -1
  40. package/dist/actions/get-company-tech-stack.d.mts +1 -1
  41. package/dist/actions/get-company-tech-stack.mjs +1 -1
  42. package/dist/actions/get-company-tech-stack.mjs.map +1 -1
  43. package/dist/actions/lookup-company.cjs +1 -1
  44. package/dist/actions/lookup-company.cjs.map +1 -1
  45. package/dist/actions/lookup-company.d.cts +1 -1
  46. package/dist/actions/lookup-company.d.mts +1 -1
  47. package/dist/actions/lookup-company.mjs +1 -1
  48. package/dist/actions/lookup-company.mjs.map +1 -1
  49. package/dist/actions/lookup-person-and-company.cjs +4 -4
  50. package/dist/actions/lookup-person-and-company.cjs.map +1 -1
  51. package/dist/actions/lookup-person-and-company.d.cts +4 -4
  52. package/dist/actions/lookup-person-and-company.d.mts +4 -4
  53. package/dist/actions/lookup-person-and-company.mjs +4 -4
  54. package/dist/actions/lookup-person-and-company.mjs.map +1 -1
  55. package/dist/actions/lookup-person.cjs +1 -1
  56. package/dist/actions/lookup-person.cjs.map +1 -1
  57. package/dist/actions/lookup-person.d.cts +1 -1
  58. package/dist/actions/lookup-person.d.mts +1 -1
  59. package/dist/actions/lookup-person.mjs +1 -1
  60. package/dist/actions/lookup-person.mjs.map +1 -1
  61. package/dist/actions/search-companies.cjs +3 -3
  62. package/dist/actions/search-companies.cjs.map +1 -1
  63. package/dist/actions/search-companies.d.cts +3 -3
  64. package/dist/actions/search-companies.d.mts +3 -3
  65. package/dist/actions/search-companies.mjs +3 -3
  66. package/dist/actions/search-companies.mjs.map +1 -1
  67. package/dist/actions/search-people.cjs +3 -3
  68. package/dist/actions/search-people.cjs.map +1 -1
  69. package/dist/actions/search-people.d.cts +3 -3
  70. package/dist/actions/search-people.d.mts +3 -3
  71. package/dist/actions/search-people.mjs +3 -3
  72. package/dist/actions/search-people.mjs.map +1 -1
  73. package/package.json +1 -1
@@ -6,7 +6,7 @@ const RocketReachCheckPersonStatus_PersonStatusSchema = zod.z.object({
6
6
  id: zod.z.string().describe("ID of the person lookup request.").nullable(),
7
7
  status: zod.z.string().describe("Current status of the person lookup request.").nullable()
8
8
  }).passthrough();
9
- const RocketReachCheckPersonStatusOutput = zod.z.object({ data: zod.z.array(RocketReachCheckPersonStatus_PersonStatusSchema).describe("List of status objects for each person ID requested.") });
9
+ const RocketReachCheckPersonStatusOutput = zod.z.object({ data: zod.z.array(RocketReachCheckPersonStatus_PersonStatusSchema).describe("List of status objects for each person ID requested.") }).passthrough();
10
10
  const rocketReachCheckPersonStatus = require_action.action("ROCKET_REACH_CHECK_PERSON_STATUS", {
11
11
  slug: "rocket_reach-check-person-status",
12
12
  name: "Check Person Status",
@@ -1 +1 @@
1
- {"version":3,"file":"check-person-status.cjs","names":["z","action"],"sources":["../../src/actions/check-person-status.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const RocketReachCheckPersonStatusInput = z.object({\n ids: z.array(z.string()).describe(\"List of person lookup request IDs to check.\"),\n});\nconst RocketReachCheckPersonStatus_PersonStatusSchema = z.object({\n id: z.string().describe(\"ID of the person lookup request.\").nullable(),\n status: z.string().describe(\"Current status of the person lookup request.\").nullable(),\n}).passthrough();\nexport const RocketReachCheckPersonStatusOutput = z.object({\n data: z.array(RocketReachCheckPersonStatus_PersonStatusSchema).describe(\"List of status objects for each person ID requested.\"),\n});\n\nexport const rocketReachCheckPersonStatus = action(\"ROCKET_REACH_CHECK_PERSON_STATUS\", {\n slug: \"rocket_reach-check-person-status\",\n name: \"Check Person Status\",\n description: \"Tool to check the status of multiple person lookup requests. Use when you need to retrieve the current status of previously initiated person lookups.\",\n input: RocketReachCheckPersonStatusInput,\n output: RocketReachCheckPersonStatusOutput,\n});\n"],"mappings":";;;AAIA,MAAa,oCAAoCA,IAAAA,EAAE,OAAO,EACxD,KAAKA,IAAAA,EAAE,MAAMA,IAAAA,EAAE,OAAO,CAAC,CAAC,CAAC,SAAS,6CAA6C,EACjF,CAAC;AACD,MAAM,kDAAkDA,IAAAA,EAAE,OAAO;CAC/D,IAAIA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,kCAAkC,CAAC,CAAC,SAAS;CACrE,QAAQA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,8CAA8C,CAAC,CAAC,SAAS;AACvF,CAAC,CAAC,CAAC,YAAY;AACf,MAAa,qCAAqCA,IAAAA,EAAE,OAAO,EACzD,MAAMA,IAAAA,EAAE,MAAM,+CAA+C,CAAC,CAAC,SAAS,sDAAsD,EAChI,CAAC;AAED,MAAa,+BAA+BC,eAAAA,OAAO,oCAAoC;CACrF,MAAM;CACN,MAAM;CACN,aAAa;CACb,OAAO;CACP,QAAQ;AACV,CAAC"}
1
+ {"version":3,"file":"check-person-status.cjs","names":["z","action"],"sources":["../../src/actions/check-person-status.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const RocketReachCheckPersonStatusInput = z.object({\n ids: z.array(z.string()).describe(\"List of person lookup request IDs to check.\"),\n});\nconst RocketReachCheckPersonStatus_PersonStatusSchema = z.object({\n id: z.string().describe(\"ID of the person lookup request.\").nullable(),\n status: z.string().describe(\"Current status of the person lookup request.\").nullable(),\n}).passthrough();\nexport const RocketReachCheckPersonStatusOutput = z.object({\n data: z.array(RocketReachCheckPersonStatus_PersonStatusSchema).describe(\"List of status objects for each person ID requested.\"),\n}).passthrough();\n\nexport const rocketReachCheckPersonStatus = action(\"ROCKET_REACH_CHECK_PERSON_STATUS\", {\n slug: \"rocket_reach-check-person-status\",\n name: \"Check Person Status\",\n description: \"Tool to check the status of multiple person lookup requests. Use when you need to retrieve the current status of previously initiated person lookups.\",\n input: RocketReachCheckPersonStatusInput,\n output: RocketReachCheckPersonStatusOutput,\n});\n"],"mappings":";;;AAIA,MAAa,oCAAoCA,IAAAA,EAAE,OAAO,EACxD,KAAKA,IAAAA,EAAE,MAAMA,IAAAA,EAAE,OAAO,CAAC,CAAC,CAAC,SAAS,6CAA6C,EACjF,CAAC;AACD,MAAM,kDAAkDA,IAAAA,EAAE,OAAO;CAC/D,IAAIA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,kCAAkC,CAAC,CAAC,SAAS;CACrE,QAAQA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,8CAA8C,CAAC,CAAC,SAAS;AACvF,CAAC,CAAC,CAAC,YAAY;AACf,MAAa,qCAAqCA,IAAAA,EAAE,OAAO,EACzD,MAAMA,IAAAA,EAAE,MAAM,+CAA+C,CAAC,CAAC,SAAS,sDAAsD,EAChI,CAAC,CAAC,CAAC,YAAY;AAEf,MAAa,+BAA+BC,eAAAA,OAAO,oCAAoC;CACrF,MAAM;CACN,MAAM;CACN,aAAa;CACb,OAAO;CACP,QAAQ;AACV,CAAC"}
@@ -9,7 +9,7 @@ declare const RocketReachCheckPersonStatusOutput: z.ZodObject<{
9
9
  id: z.ZodNullable<z.ZodString>;
10
10
  status: z.ZodNullable<z.ZodString>;
11
11
  }, z.core.$loose>>;
12
- }, z.core.$strip>;
12
+ }, z.core.$loose>;
13
13
  declare const rocketReachCheckPersonStatus: import("@keystrokehq/action").WorkflowActionDefinition<{
14
14
  ids: string[];
15
15
  }, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
@@ -9,7 +9,7 @@ declare const RocketReachCheckPersonStatusOutput: z.ZodObject<{
9
9
  id: z.ZodNullable<z.ZodString>;
10
10
  status: z.ZodNullable<z.ZodString>;
11
11
  }, z.core.$loose>>;
12
- }, z.core.$strip>;
12
+ }, z.core.$loose>;
13
13
  declare const rocketReachCheckPersonStatus: import("@keystrokehq/action").WorkflowActionDefinition<{
14
14
  ids: string[];
15
15
  }, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
@@ -11,7 +11,7 @@ const rocketReachCheckPersonStatus = action("ROCKET_REACH_CHECK_PERSON_STATUS",
11
11
  name: "Check Person Status",
12
12
  description: "Tool to check the status of multiple person lookup requests. Use when you need to retrieve the current status of previously initiated person lookups.",
13
13
  input: RocketReachCheckPersonStatusInput,
14
- output: z.object({ data: z.array(RocketReachCheckPersonStatus_PersonStatusSchema).describe("List of status objects for each person ID requested.") })
14
+ output: z.object({ data: z.array(RocketReachCheckPersonStatus_PersonStatusSchema).describe("List of status objects for each person ID requested.") }).passthrough()
15
15
  });
16
16
  //#endregion
17
17
  export { rocketReachCheckPersonStatus };
@@ -1 +1 @@
1
- {"version":3,"file":"check-person-status.mjs","names":[],"sources":["../../src/actions/check-person-status.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const RocketReachCheckPersonStatusInput = z.object({\n ids: z.array(z.string()).describe(\"List of person lookup request IDs to check.\"),\n});\nconst RocketReachCheckPersonStatus_PersonStatusSchema = z.object({\n id: z.string().describe(\"ID of the person lookup request.\").nullable(),\n status: z.string().describe(\"Current status of the person lookup request.\").nullable(),\n}).passthrough();\nexport const RocketReachCheckPersonStatusOutput = z.object({\n data: z.array(RocketReachCheckPersonStatus_PersonStatusSchema).describe(\"List of status objects for each person ID requested.\"),\n});\n\nexport const rocketReachCheckPersonStatus = action(\"ROCKET_REACH_CHECK_PERSON_STATUS\", {\n slug: \"rocket_reach-check-person-status\",\n name: \"Check Person Status\",\n description: \"Tool to check the status of multiple person lookup requests. Use when you need to retrieve the current status of previously initiated person lookups.\",\n input: RocketReachCheckPersonStatusInput,\n output: RocketReachCheckPersonStatusOutput,\n});\n"],"mappings":";;;AAIA,MAAa,oCAAoC,EAAE,OAAO,EACxD,KAAK,EAAE,MAAM,EAAE,OAAO,CAAC,CAAC,CAAC,SAAS,6CAA6C,EACjF,CAAC;AACD,MAAM,kDAAkD,EAAE,OAAO;CAC/D,IAAI,EAAE,OAAO,CAAC,CAAC,SAAS,kCAAkC,CAAC,CAAC,SAAS;CACrE,QAAQ,EAAE,OAAO,CAAC,CAAC,SAAS,8CAA8C,CAAC,CAAC,SAAS;AACvF,CAAC,CAAC,CAAC,YAAY;AAKf,MAAa,+BAA+B,OAAO,oCAAoC;CACrF,MAAM;CACN,MAAM;CACN,aAAa;CACb,OAAO;CACP,QATgD,EAAE,OAAO,EACzD,MAAM,EAAE,MAAM,+CAA+C,CAAC,CAAC,SAAS,sDAAsD,EAChI,CAOU;AACV,CAAC"}
1
+ {"version":3,"file":"check-person-status.mjs","names":[],"sources":["../../src/actions/check-person-status.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const RocketReachCheckPersonStatusInput = z.object({\n ids: z.array(z.string()).describe(\"List of person lookup request IDs to check.\"),\n});\nconst RocketReachCheckPersonStatus_PersonStatusSchema = z.object({\n id: z.string().describe(\"ID of the person lookup request.\").nullable(),\n status: z.string().describe(\"Current status of the person lookup request.\").nullable(),\n}).passthrough();\nexport const RocketReachCheckPersonStatusOutput = z.object({\n data: z.array(RocketReachCheckPersonStatus_PersonStatusSchema).describe(\"List of status objects for each person ID requested.\"),\n}).passthrough();\n\nexport const rocketReachCheckPersonStatus = action(\"ROCKET_REACH_CHECK_PERSON_STATUS\", {\n slug: \"rocket_reach-check-person-status\",\n name: \"Check Person Status\",\n description: \"Tool to check the status of multiple person lookup requests. Use when you need to retrieve the current status of previously initiated person lookups.\",\n input: RocketReachCheckPersonStatusInput,\n output: RocketReachCheckPersonStatusOutput,\n});\n"],"mappings":";;;AAIA,MAAa,oCAAoC,EAAE,OAAO,EACxD,KAAK,EAAE,MAAM,EAAE,OAAO,CAAC,CAAC,CAAC,SAAS,6CAA6C,EACjF,CAAC;AACD,MAAM,kDAAkD,EAAE,OAAO;CAC/D,IAAI,EAAE,OAAO,CAAC,CAAC,SAAS,kCAAkC,CAAC,CAAC,SAAS;CACrE,QAAQ,EAAE,OAAO,CAAC,CAAC,SAAS,8CAA8C,CAAC,CAAC,SAAS;AACvF,CAAC,CAAC,CAAC,YAAY;AAKf,MAAa,+BAA+B,OAAO,oCAAoC;CACrF,MAAM;CACN,MAAM;CACN,aAAa;CACb,OAAO;CACP,QATgD,EAAE,OAAO,EACzD,MAAM,EAAE,MAAM,+CAA+C,CAAC,CAAC,SAAS,sDAAsD,EAChI,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/get-account.ts
4
4
  const RocketReachGetAccountInput = zod.z.object({}).describe("Request model for retrieving RocketReach account information. No parameters required.");
5
- const RocketReachGetAccountOutput = zod.z.object({ account: zod.z.record(zod.z.string(), zod.z.unknown()).describe("Account information as a JSON object from RocketReach API") }).describe("Response model containing the account information returned by RocketReach.");
5
+ const RocketReachGetAccountOutput = zod.z.object({ account: zod.z.record(zod.z.string(), zod.z.unknown()).describe("Account information as a JSON object from RocketReach API") }).passthrough().describe("Response model containing the account information returned by RocketReach.");
6
6
  const rocketReachGetAccount = require_action.action("ROCKET_REACH_GET_ACCOUNT", {
7
7
  slug: "rocket_reach-get-account",
8
8
  name: "Get RocketReach Account Info",
@@ -1 +1 @@
1
- {"version":3,"file":"get-account.cjs","names":["z","action"],"sources":["../../src/actions/get-account.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const RocketReachGetAccountInput = z.object({}).describe(\"Request model for retrieving RocketReach account information. No parameters required.\");\nexport const RocketReachGetAccountOutput = z.object({\n account: z.record(z.string(), z.unknown()).describe(\"Account information as a JSON object from RocketReach API\"),\n}).describe(\"Response model containing the account information returned by RocketReach.\");\n\nexport const rocketReachGetAccount = action(\"ROCKET_REACH_GET_ACCOUNT\", {\n slug: \"rocket_reach-get-account\",\n name: \"Get RocketReach Account Info\",\n description: \"Tool to retrieve account information for the authenticated user. Use when you need to fetch the current user's account details.\",\n input: RocketReachGetAccountInput,\n output: RocketReachGetAccountOutput,\n});\n"],"mappings":";;;AAIA,MAAa,6BAA6BA,IAAAA,EAAE,OAAO,CAAC,CAAC,CAAC,CAAC,SAAS,uFAAuF;AACvJ,MAAa,8BAA8BA,IAAAA,EAAE,OAAO,EAClD,SAASA,IAAAA,EAAE,OAAOA,IAAAA,EAAE,OAAO,GAAGA,IAAAA,EAAE,QAAQ,CAAC,CAAC,CAAC,SAAS,2DAA2D,EACjH,CAAC,CAAC,CAAC,SAAS,4EAA4E;AAExF,MAAa,wBAAwBC,eAAAA,OAAO,4BAA4B;CACtE,MAAM;CACN,MAAM;CACN,aAAa;CACb,OAAO;CACP,QAAQ;AACV,CAAC"}
1
+ {"version":3,"file":"get-account.cjs","names":["z","action"],"sources":["../../src/actions/get-account.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const RocketReachGetAccountInput = z.object({}).describe(\"Request model for retrieving RocketReach account information. No parameters required.\");\nexport const RocketReachGetAccountOutput = z.object({\n account: z.record(z.string(), z.unknown()).describe(\"Account information as a JSON object from RocketReach API\"),\n}).passthrough().describe(\"Response model containing the account information returned by RocketReach.\");\n\nexport const rocketReachGetAccount = action(\"ROCKET_REACH_GET_ACCOUNT\", {\n slug: \"rocket_reach-get-account\",\n name: \"Get RocketReach Account Info\",\n description: \"Tool to retrieve account information for the authenticated user. Use when you need to fetch the current user's account details.\",\n input: RocketReachGetAccountInput,\n output: RocketReachGetAccountOutput,\n});\n"],"mappings":";;;AAIA,MAAa,6BAA6BA,IAAAA,EAAE,OAAO,CAAC,CAAC,CAAC,CAAC,SAAS,uFAAuF;AACvJ,MAAa,8BAA8BA,IAAAA,EAAE,OAAO,EAClD,SAASA,IAAAA,EAAE,OAAOA,IAAAA,EAAE,OAAO,GAAGA,IAAAA,EAAE,QAAQ,CAAC,CAAC,CAAC,SAAS,2DAA2D,EACjH,CAAC,CAAC,CAAC,YAAY,CAAC,CAAC,SAAS,4EAA4E;AAEtG,MAAa,wBAAwBC,eAAAA,OAAO,4BAA4B;CACtE,MAAM;CACN,MAAM;CACN,aAAa;CACb,OAAO;CACP,QAAQ;AACV,CAAC"}
@@ -4,7 +4,7 @@ import { z } from "zod";
4
4
  declare const RocketReachGetAccountInput: z.ZodObject<{}, z.core.$strip>;
5
5
  declare const RocketReachGetAccountOutput: z.ZodObject<{
6
6
  account: z.ZodRecord<z.ZodString, z.ZodUnknown>;
7
- }, z.core.$strip>;
7
+ }, z.core.$loose>;
8
8
  declare const rocketReachGetAccount: 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 { rocketReachGetAccount };
@@ -4,7 +4,7 @@ import { z } from "zod";
4
4
  declare const RocketReachGetAccountInput: z.ZodObject<{}, z.core.$strip>;
5
5
  declare const RocketReachGetAccountOutput: z.ZodObject<{
6
6
  account: z.ZodRecord<z.ZodString, z.ZodUnknown>;
7
- }, z.core.$strip>;
7
+ }, z.core.$loose>;
8
8
  declare const rocketReachGetAccount: 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 { rocketReachGetAccount };
@@ -5,7 +5,7 @@ const rocketReachGetAccount = action("ROCKET_REACH_GET_ACCOUNT", {
5
5
  name: "Get RocketReach Account Info",
6
6
  description: "Tool to retrieve account information for the authenticated user. Use when you need to fetch the current user's account details.",
7
7
  input: z.object({}).describe("Request model for retrieving RocketReach account information. No parameters required."),
8
- output: z.object({ account: z.record(z.string(), z.unknown()).describe("Account information as a JSON object from RocketReach API") }).describe("Response model containing the account information returned by RocketReach.")
8
+ output: z.object({ account: z.record(z.string(), z.unknown()).describe("Account information as a JSON object from RocketReach API") }).passthrough().describe("Response model containing the account information returned by RocketReach.")
9
9
  });
10
10
  //#endregion
11
11
  export { rocketReachGetAccount };
@@ -1 +1 @@
1
- {"version":3,"file":"get-account.mjs","names":[],"sources":["../../src/actions/get-account.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const RocketReachGetAccountInput = z.object({}).describe(\"Request model for retrieving RocketReach account information. No parameters required.\");\nexport const RocketReachGetAccountOutput = z.object({\n account: z.record(z.string(), z.unknown()).describe(\"Account information as a JSON object from RocketReach API\"),\n}).describe(\"Response model containing the account information returned by RocketReach.\");\n\nexport const rocketReachGetAccount = action(\"ROCKET_REACH_GET_ACCOUNT\", {\n slug: \"rocket_reach-get-account\",\n name: \"Get RocketReach Account Info\",\n description: \"Tool to retrieve account information for the authenticated user. Use when you need to fetch the current user's account details.\",\n input: RocketReachGetAccountInput,\n output: RocketReachGetAccountOutput,\n});\n"],"mappings":";;AASA,MAAa,wBAAwB,OAAO,4BAA4B;CACtE,MAAM;CACN,MAAM;CACN,aAAa;CACb,OATwC,EAAE,OAAO,CAAC,CAAC,CAAC,CAAC,SAAS,uFASvD;CACP,QATyC,EAAE,OAAO,EAClD,SAAS,EAAE,OAAO,EAAE,OAAO,GAAG,EAAE,QAAQ,CAAC,CAAC,CAAC,SAAS,2DAA2D,EACjH,CAAC,CAAC,CAAC,SAAS,4EAOF;AACV,CAAC"}
1
+ {"version":3,"file":"get-account.mjs","names":[],"sources":["../../src/actions/get-account.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const RocketReachGetAccountInput = z.object({}).describe(\"Request model for retrieving RocketReach account information. No parameters required.\");\nexport const RocketReachGetAccountOutput = z.object({\n account: z.record(z.string(), z.unknown()).describe(\"Account information as a JSON object from RocketReach API\"),\n}).passthrough().describe(\"Response model containing the account information returned by RocketReach.\");\n\nexport const rocketReachGetAccount = action(\"ROCKET_REACH_GET_ACCOUNT\", {\n slug: \"rocket_reach-get-account\",\n name: \"Get RocketReach Account Info\",\n description: \"Tool to retrieve account information for the authenticated user. Use when you need to fetch the current user's account details.\",\n input: RocketReachGetAccountInput,\n output: RocketReachGetAccountOutput,\n});\n"],"mappings":";;AASA,MAAa,wBAAwB,OAAO,4BAA4B;CACtE,MAAM;CACN,MAAM;CACN,aAAa;CACb,OATwC,EAAE,OAAO,CAAC,CAAC,CAAC,CAAC,SAAS,uFASvD;CACP,QATyC,EAAE,OAAO,EAClD,SAAS,EAAE,OAAO,EAAE,OAAO,GAAG,EAAE,QAAQ,CAAC,CAAC,CAAC,SAAS,2DAA2D,EACjH,CAAC,CAAC,CAAC,YAAY,CAAC,CAAC,SAAS,4EAOhB;AACV,CAAC"}
@@ -7,11 +7,11 @@ const RocketReachGetCompanyFunding_FundingRoundSchema = zod.z.object({
7
7
  round: zod.z.string().describe("Funding round type, e.g., 'Series A', 'Seed'.").nullable(),
8
8
  amount: zod.z.string().describe("Amount raised in this funding round.").nullable(),
9
9
  investors: zod.z.array(zod.z.string()).describe("List of investors in this round.")
10
- });
10
+ }).passthrough();
11
11
  const RocketReachGetCompanyFundingOutput = zod.z.object({
12
12
  company: zod.z.string().describe("Company domain returned by API.").nullable().optional(),
13
13
  funding_rounds: zod.z.array(RocketReachGetCompanyFunding_FundingRoundSchema).default([]).describe("List of funding rounds for the company.").nullable().optional()
14
- });
14
+ }).passthrough();
15
15
  const rocketReachGetCompanyFunding = require_action.action("ROCKET_REACH_GET_COMPANY_FUNDING", {
16
16
  slug: "rocket_reach-get-company-funding",
17
17
  name: "RocketReach Get Company Funding",
@@ -1 +1 @@
1
- {"version":3,"file":"get-company-funding.cjs","names":["z","action"],"sources":["../../src/actions/get-company-funding.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const RocketReachGetCompanyFundingInput = z.object({\n domain: z.string().describe(\"The domain of the company to retrieve funding details for, e.g., 'stripe.com'.\"),\n});\nconst RocketReachGetCompanyFunding_FundingRoundSchema = z.object({\n date: z.string().describe(\"Date of the funding round.\").nullable(),\n round: z.string().describe(\"Funding round type, e.g., 'Series A', 'Seed'.\").nullable(),\n amount: z.string().describe(\"Amount raised in this funding round.\").nullable(),\n investors: z.array(z.string()).describe(\"List of investors in this round.\"),\n});\nexport const RocketReachGetCompanyFundingOutput = z.object({\n company: z.string().describe(\"Company domain returned by API.\").nullable().optional(),\n funding_rounds: z.array(RocketReachGetCompanyFunding_FundingRoundSchema).default([]).describe(\"List of funding rounds for the company.\").nullable().optional(),\n});\n\nexport const rocketReachGetCompanyFunding = action(\"ROCKET_REACH_GET_COMPANY_FUNDING\", {\n slug: \"rocket_reach-get-company-funding\",\n name: \"RocketReach Get Company Funding\",\n description: \"Tool to retrieve funding details for a specified company. Use when you need to fetch historical funding rounds by company domain.\",\n input: RocketReachGetCompanyFundingInput,\n output: RocketReachGetCompanyFundingOutput,\n});\n"],"mappings":";;;AAIA,MAAa,oCAAoCA,IAAAA,EAAE,OAAO,EACxD,QAAQA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,gFAAgF,EAC9G,CAAC;AACD,MAAM,kDAAkDA,IAAAA,EAAE,OAAO;CAC/D,MAAMA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,4BAA4B,CAAC,CAAC,SAAS;CACjE,OAAOA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,+CAA+C,CAAC,CAAC,SAAS;CACrF,QAAQA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,sCAAsC,CAAC,CAAC,SAAS;CAC7E,WAAWA,IAAAA,EAAE,MAAMA,IAAAA,EAAE,OAAO,CAAC,CAAC,CAAC,SAAS,kCAAkC;AAC5E,CAAC;AACD,MAAa,qCAAqCA,IAAAA,EAAE,OAAO;CACzD,SAASA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,iCAAiC,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CACpF,gBAAgBA,IAAAA,EAAE,MAAM,+CAA+C,CAAC,CAAC,QAAQ,CAAC,CAAC,CAAC,CAAC,SAAS,yCAAyC,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;AAC/J,CAAC;AAED,MAAa,+BAA+BC,eAAAA,OAAO,oCAAoC;CACrF,MAAM;CACN,MAAM;CACN,aAAa;CACb,OAAO;CACP,QAAQ;AACV,CAAC"}
1
+ {"version":3,"file":"get-company-funding.cjs","names":["z","action"],"sources":["../../src/actions/get-company-funding.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const RocketReachGetCompanyFundingInput = z.object({\n domain: z.string().describe(\"The domain of the company to retrieve funding details for, e.g., 'stripe.com'.\"),\n});\nconst RocketReachGetCompanyFunding_FundingRoundSchema = z.object({\n date: z.string().describe(\"Date of the funding round.\").nullable(),\n round: z.string().describe(\"Funding round type, e.g., 'Series A', 'Seed'.\").nullable(),\n amount: z.string().describe(\"Amount raised in this funding round.\").nullable(),\n investors: z.array(z.string()).describe(\"List of investors in this round.\"),\n}).passthrough();\nexport const RocketReachGetCompanyFundingOutput = z.object({\n company: z.string().describe(\"Company domain returned by API.\").nullable().optional(),\n funding_rounds: z.array(RocketReachGetCompanyFunding_FundingRoundSchema).default([]).describe(\"List of funding rounds for the company.\").nullable().optional(),\n}).passthrough();\n\nexport const rocketReachGetCompanyFunding = action(\"ROCKET_REACH_GET_COMPANY_FUNDING\", {\n slug: \"rocket_reach-get-company-funding\",\n name: \"RocketReach Get Company Funding\",\n description: \"Tool to retrieve funding details for a specified company. Use when you need to fetch historical funding rounds by company domain.\",\n input: RocketReachGetCompanyFundingInput,\n output: RocketReachGetCompanyFundingOutput,\n});\n"],"mappings":";;;AAIA,MAAa,oCAAoCA,IAAAA,EAAE,OAAO,EACxD,QAAQA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,gFAAgF,EAC9G,CAAC;AACD,MAAM,kDAAkDA,IAAAA,EAAE,OAAO;CAC/D,MAAMA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,4BAA4B,CAAC,CAAC,SAAS;CACjE,OAAOA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,+CAA+C,CAAC,CAAC,SAAS;CACrF,QAAQA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,sCAAsC,CAAC,CAAC,SAAS;CAC7E,WAAWA,IAAAA,EAAE,MAAMA,IAAAA,EAAE,OAAO,CAAC,CAAC,CAAC,SAAS,kCAAkC;AAC5E,CAAC,CAAC,CAAC,YAAY;AACf,MAAa,qCAAqCA,IAAAA,EAAE,OAAO;CACzD,SAASA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,iCAAiC,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CACpF,gBAAgBA,IAAAA,EAAE,MAAM,+CAA+C,CAAC,CAAC,QAAQ,CAAC,CAAC,CAAC,CAAC,SAAS,yCAAyC,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;AAC/J,CAAC,CAAC,CAAC,YAAY;AAEf,MAAa,+BAA+BC,eAAAA,OAAO,oCAAoC;CACrF,MAAM;CACN,MAAM;CACN,aAAa;CACb,OAAO;CACP,QAAQ;AACV,CAAC"}
@@ -11,8 +11,8 @@ declare const RocketReachGetCompanyFundingOutput: z.ZodObject<{
11
11
  round: z.ZodNullable<z.ZodString>;
12
12
  amount: z.ZodNullable<z.ZodString>;
13
13
  investors: z.ZodArray<z.ZodString>;
14
- }, z.core.$strip>>>>>;
15
- }, z.core.$strip>;
14
+ }, z.core.$loose>>>>>;
15
+ }, z.core.$loose>;
16
16
  declare const rocketReachGetCompanyFunding: import("@keystrokehq/action").WorkflowActionDefinition<{
17
17
  domain: string;
18
18
  }, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
@@ -11,8 +11,8 @@ declare const RocketReachGetCompanyFundingOutput: z.ZodObject<{
11
11
  round: z.ZodNullable<z.ZodString>;
12
12
  amount: z.ZodNullable<z.ZodString>;
13
13
  investors: z.ZodArray<z.ZodString>;
14
- }, z.core.$strip>>>>>;
15
- }, z.core.$strip>;
14
+ }, z.core.$loose>>>>>;
15
+ }, z.core.$loose>;
16
16
  declare const rocketReachGetCompanyFunding: import("@keystrokehq/action").WorkflowActionDefinition<{
17
17
  domain: string;
18
18
  }, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
@@ -7,7 +7,7 @@ const RocketReachGetCompanyFunding_FundingRoundSchema = z.object({
7
7
  round: z.string().describe("Funding round type, e.g., 'Series A', 'Seed'.").nullable(),
8
8
  amount: z.string().describe("Amount raised in this funding round.").nullable(),
9
9
  investors: z.array(z.string()).describe("List of investors in this round.")
10
- });
10
+ }).passthrough();
11
11
  const rocketReachGetCompanyFunding = action("ROCKET_REACH_GET_COMPANY_FUNDING", {
12
12
  slug: "rocket_reach-get-company-funding",
13
13
  name: "RocketReach Get Company Funding",
@@ -16,7 +16,7 @@ const rocketReachGetCompanyFunding = action("ROCKET_REACH_GET_COMPANY_FUNDING",
16
16
  output: z.object({
17
17
  company: z.string().describe("Company domain returned by API.").nullable().optional(),
18
18
  funding_rounds: z.array(RocketReachGetCompanyFunding_FundingRoundSchema).default([]).describe("List of funding rounds for the company.").nullable().optional()
19
- })
19
+ }).passthrough()
20
20
  });
21
21
  //#endregion
22
22
  export { rocketReachGetCompanyFunding };
@@ -1 +1 @@
1
- {"version":3,"file":"get-company-funding.mjs","names":[],"sources":["../../src/actions/get-company-funding.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const RocketReachGetCompanyFundingInput = z.object({\n domain: z.string().describe(\"The domain of the company to retrieve funding details for, e.g., 'stripe.com'.\"),\n});\nconst RocketReachGetCompanyFunding_FundingRoundSchema = z.object({\n date: z.string().describe(\"Date of the funding round.\").nullable(),\n round: z.string().describe(\"Funding round type, e.g., 'Series A', 'Seed'.\").nullable(),\n amount: z.string().describe(\"Amount raised in this funding round.\").nullable(),\n investors: z.array(z.string()).describe(\"List of investors in this round.\"),\n});\nexport const RocketReachGetCompanyFundingOutput = z.object({\n company: z.string().describe(\"Company domain returned by API.\").nullable().optional(),\n funding_rounds: z.array(RocketReachGetCompanyFunding_FundingRoundSchema).default([]).describe(\"List of funding rounds for the company.\").nullable().optional(),\n});\n\nexport const rocketReachGetCompanyFunding = action(\"ROCKET_REACH_GET_COMPANY_FUNDING\", {\n slug: \"rocket_reach-get-company-funding\",\n name: \"RocketReach Get Company Funding\",\n description: \"Tool to retrieve funding details for a specified company. Use when you need to fetch historical funding rounds by company domain.\",\n input: RocketReachGetCompanyFundingInput,\n output: RocketReachGetCompanyFundingOutput,\n});\n"],"mappings":";;;AAIA,MAAa,oCAAoC,EAAE,OAAO,EACxD,QAAQ,EAAE,OAAO,CAAC,CAAC,SAAS,gFAAgF,EAC9G,CAAC;AACD,MAAM,kDAAkD,EAAE,OAAO;CAC/D,MAAM,EAAE,OAAO,CAAC,CAAC,SAAS,4BAA4B,CAAC,CAAC,SAAS;CACjE,OAAO,EAAE,OAAO,CAAC,CAAC,SAAS,+CAA+C,CAAC,CAAC,SAAS;CACrF,QAAQ,EAAE,OAAO,CAAC,CAAC,SAAS,sCAAsC,CAAC,CAAC,SAAS;CAC7E,WAAW,EAAE,MAAM,EAAE,OAAO,CAAC,CAAC,CAAC,SAAS,kCAAkC;AAC5E,CAAC;AAMD,MAAa,+BAA+B,OAAO,oCAAoC;CACrF,MAAM;CACN,MAAM;CACN,aAAa;CACb,OAAO;CACP,QAVgD,EAAE,OAAO;EACzD,SAAS,EAAE,OAAO,CAAC,CAAC,SAAS,iCAAiC,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;EACpF,gBAAgB,EAAE,MAAM,+CAA+C,CAAC,CAAC,QAAQ,CAAC,CAAC,CAAC,CAAC,SAAS,yCAAyC,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CAC/J,CAOU;AACV,CAAC"}
1
+ {"version":3,"file":"get-company-funding.mjs","names":[],"sources":["../../src/actions/get-company-funding.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const RocketReachGetCompanyFundingInput = z.object({\n domain: z.string().describe(\"The domain of the company to retrieve funding details for, e.g., 'stripe.com'.\"),\n});\nconst RocketReachGetCompanyFunding_FundingRoundSchema = z.object({\n date: z.string().describe(\"Date of the funding round.\").nullable(),\n round: z.string().describe(\"Funding round type, e.g., 'Series A', 'Seed'.\").nullable(),\n amount: z.string().describe(\"Amount raised in this funding round.\").nullable(),\n investors: z.array(z.string()).describe(\"List of investors in this round.\"),\n}).passthrough();\nexport const RocketReachGetCompanyFundingOutput = z.object({\n company: z.string().describe(\"Company domain returned by API.\").nullable().optional(),\n funding_rounds: z.array(RocketReachGetCompanyFunding_FundingRoundSchema).default([]).describe(\"List of funding rounds for the company.\").nullable().optional(),\n}).passthrough();\n\nexport const rocketReachGetCompanyFunding = action(\"ROCKET_REACH_GET_COMPANY_FUNDING\", {\n slug: \"rocket_reach-get-company-funding\",\n name: \"RocketReach Get Company Funding\",\n description: \"Tool to retrieve funding details for a specified company. Use when you need to fetch historical funding rounds by company domain.\",\n input: RocketReachGetCompanyFundingInput,\n output: RocketReachGetCompanyFundingOutput,\n});\n"],"mappings":";;;AAIA,MAAa,oCAAoC,EAAE,OAAO,EACxD,QAAQ,EAAE,OAAO,CAAC,CAAC,SAAS,gFAAgF,EAC9G,CAAC;AACD,MAAM,kDAAkD,EAAE,OAAO;CAC/D,MAAM,EAAE,OAAO,CAAC,CAAC,SAAS,4BAA4B,CAAC,CAAC,SAAS;CACjE,OAAO,EAAE,OAAO,CAAC,CAAC,SAAS,+CAA+C,CAAC,CAAC,SAAS;CACrF,QAAQ,EAAE,OAAO,CAAC,CAAC,SAAS,sCAAsC,CAAC,CAAC,SAAS;CAC7E,WAAW,EAAE,MAAM,EAAE,OAAO,CAAC,CAAC,CAAC,SAAS,kCAAkC;AAC5E,CAAC,CAAC,CAAC,YAAY;AAMf,MAAa,+BAA+B,OAAO,oCAAoC;CACrF,MAAM;CACN,MAAM;CACN,aAAa;CACb,OAAO;CACP,QAVgD,EAAE,OAAO;EACzD,SAAS,EAAE,OAAO,CAAC,CAAC,SAAS,iCAAiC,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;EACpF,gBAAgB,EAAE,MAAM,+CAA+C,CAAC,CAAC,QAAQ,CAAC,CAAC,CAAC,CAAC,SAAS,yCAAyC,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CAC/J,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/get-company-growth.ts
4
4
  const RocketReachGetCompanyGrowthInput = zod.z.object({ domain: zod.z.string().describe("Company domain, e.g. 'airbnb.com'") });
5
- const RocketReachGetCompanyGrowthOutput = zod.z.object({ growth: zod.z.record(zod.z.string(), zod.z.unknown()).describe("Growth metrics JSON payload returned by RocketReach API") });
5
+ const RocketReachGetCompanyGrowthOutput = zod.z.object({ growth: zod.z.record(zod.z.string(), zod.z.unknown()).describe("Growth metrics JSON payload returned by RocketReach API") }).passthrough();
6
6
  const rocketReachGetCompanyGrowth = require_action.action("ROCKET_REACH_GET_COMPANY_GROWTH", {
7
7
  slug: "rocket_reach-get-company-growth",
8
8
  name: "Get Company Growth Metrics",
@@ -1 +1 @@
1
- {"version":3,"file":"get-company-growth.cjs","names":["z","action"],"sources":["../../src/actions/get-company-growth.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const RocketReachGetCompanyGrowthInput = z.object({\n domain: z.string().describe(\"Company domain, e.g. 'airbnb.com'\"),\n});\nexport const RocketReachGetCompanyGrowthOutput = z.object({\n growth: z.record(z.string(), z.unknown()).describe(\"Growth metrics JSON payload returned by RocketReach API\"),\n});\n\nexport const rocketReachGetCompanyGrowth = action(\"ROCKET_REACH_GET_COMPANY_GROWTH\", {\n slug: \"rocket_reach-get-company-growth\",\n name: \"Get Company Growth Metrics\",\n description: \"Tool to get growth metrics for a specified company domain. Use when historical company growth data is needed after confirming the exact company domain.\",\n input: RocketReachGetCompanyGrowthInput,\n output: RocketReachGetCompanyGrowthOutput,\n});\n"],"mappings":";;;AAIA,MAAa,mCAAmCA,IAAAA,EAAE,OAAO,EACvD,QAAQA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,mCAAmC,EACjE,CAAC;AACD,MAAa,oCAAoCA,IAAAA,EAAE,OAAO,EACxD,QAAQA,IAAAA,EAAE,OAAOA,IAAAA,EAAE,OAAO,GAAGA,IAAAA,EAAE,QAAQ,CAAC,CAAC,CAAC,SAAS,yDAAyD,EAC9G,CAAC;AAED,MAAa,8BAA8BC,eAAAA,OAAO,mCAAmC;CACnF,MAAM;CACN,MAAM;CACN,aAAa;CACb,OAAO;CACP,QAAQ;AACV,CAAC"}
1
+ {"version":3,"file":"get-company-growth.cjs","names":["z","action"],"sources":["../../src/actions/get-company-growth.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const RocketReachGetCompanyGrowthInput = z.object({\n domain: z.string().describe(\"Company domain, e.g. 'airbnb.com'\"),\n});\nexport const RocketReachGetCompanyGrowthOutput = z.object({\n growth: z.record(z.string(), z.unknown()).describe(\"Growth metrics JSON payload returned by RocketReach API\"),\n}).passthrough();\n\nexport const rocketReachGetCompanyGrowth = action(\"ROCKET_REACH_GET_COMPANY_GROWTH\", {\n slug: \"rocket_reach-get-company-growth\",\n name: \"Get Company Growth Metrics\",\n description: \"Tool to get growth metrics for a specified company domain. Use when historical company growth data is needed after confirming the exact company domain.\",\n input: RocketReachGetCompanyGrowthInput,\n output: RocketReachGetCompanyGrowthOutput,\n});\n"],"mappings":";;;AAIA,MAAa,mCAAmCA,IAAAA,EAAE,OAAO,EACvD,QAAQA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,mCAAmC,EACjE,CAAC;AACD,MAAa,oCAAoCA,IAAAA,EAAE,OAAO,EACxD,QAAQA,IAAAA,EAAE,OAAOA,IAAAA,EAAE,OAAO,GAAGA,IAAAA,EAAE,QAAQ,CAAC,CAAC,CAAC,SAAS,yDAAyD,EAC9G,CAAC,CAAC,CAAC,YAAY;AAEf,MAAa,8BAA8BC,eAAAA,OAAO,mCAAmC;CACnF,MAAM;CACN,MAAM;CACN,aAAa;CACb,OAAO;CACP,QAAQ;AACV,CAAC"}
@@ -6,7 +6,7 @@ declare const RocketReachGetCompanyGrowthInput: z.ZodObject<{
6
6
  }, z.core.$strip>;
7
7
  declare const RocketReachGetCompanyGrowthOutput: z.ZodObject<{
8
8
  growth: z.ZodRecord<z.ZodString, z.ZodUnknown>;
9
- }, z.core.$strip>;
9
+ }, z.core.$loose>;
10
10
  declare const rocketReachGetCompanyGrowth: import("@keystrokehq/action").WorkflowActionDefinition<{
11
11
  domain: string;
12
12
  }, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
@@ -6,7 +6,7 @@ declare const RocketReachGetCompanyGrowthInput: z.ZodObject<{
6
6
  }, z.core.$strip>;
7
7
  declare const RocketReachGetCompanyGrowthOutput: z.ZodObject<{
8
8
  growth: z.ZodRecord<z.ZodString, z.ZodUnknown>;
9
- }, z.core.$strip>;
9
+ }, z.core.$loose>;
10
10
  declare const rocketReachGetCompanyGrowth: import("@keystrokehq/action").WorkflowActionDefinition<{
11
11
  domain: string;
12
12
  }, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
@@ -5,7 +5,7 @@ const rocketReachGetCompanyGrowth = action("ROCKET_REACH_GET_COMPANY_GROWTH", {
5
5
  name: "Get Company Growth Metrics",
6
6
  description: "Tool to get growth metrics for a specified company domain. Use when historical company growth data is needed after confirming the exact company domain.",
7
7
  input: z.object({ domain: z.string().describe("Company domain, e.g. 'airbnb.com'") }),
8
- output: z.object({ growth: z.record(z.string(), z.unknown()).describe("Growth metrics JSON payload returned by RocketReach API") })
8
+ output: z.object({ growth: z.record(z.string(), z.unknown()).describe("Growth metrics JSON payload returned by RocketReach API") }).passthrough()
9
9
  });
10
10
  //#endregion
11
11
  export { rocketReachGetCompanyGrowth };
@@ -1 +1 @@
1
- {"version":3,"file":"get-company-growth.mjs","names":[],"sources":["../../src/actions/get-company-growth.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const RocketReachGetCompanyGrowthInput = z.object({\n domain: z.string().describe(\"Company domain, e.g. 'airbnb.com'\"),\n});\nexport const RocketReachGetCompanyGrowthOutput = z.object({\n growth: z.record(z.string(), z.unknown()).describe(\"Growth metrics JSON payload returned by RocketReach API\"),\n});\n\nexport const rocketReachGetCompanyGrowth = action(\"ROCKET_REACH_GET_COMPANY_GROWTH\", {\n slug: \"rocket_reach-get-company-growth\",\n name: \"Get Company Growth Metrics\",\n description: \"Tool to get growth metrics for a specified company domain. Use when historical company growth data is needed after confirming the exact company domain.\",\n input: RocketReachGetCompanyGrowthInput,\n output: RocketReachGetCompanyGrowthOutput,\n});\n"],"mappings":";;AAWA,MAAa,8BAA8B,OAAO,mCAAmC;CACnF,MAAM;CACN,MAAM;CACN,aAAa;CACb,OAX8C,EAAE,OAAO,EACvD,QAAQ,EAAE,OAAO,CAAC,CAAC,SAAS,mCAAmC,EACjE,CASS;CACP,QAT+C,EAAE,OAAO,EACxD,QAAQ,EAAE,OAAO,EAAE,OAAO,GAAG,EAAE,QAAQ,CAAC,CAAC,CAAC,SAAS,yDAAyD,EAC9G,CAOU;AACV,CAAC"}
1
+ {"version":3,"file":"get-company-growth.mjs","names":[],"sources":["../../src/actions/get-company-growth.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const RocketReachGetCompanyGrowthInput = z.object({\n domain: z.string().describe(\"Company domain, e.g. 'airbnb.com'\"),\n});\nexport const RocketReachGetCompanyGrowthOutput = z.object({\n growth: z.record(z.string(), z.unknown()).describe(\"Growth metrics JSON payload returned by RocketReach API\"),\n}).passthrough();\n\nexport const rocketReachGetCompanyGrowth = action(\"ROCKET_REACH_GET_COMPANY_GROWTH\", {\n slug: \"rocket_reach-get-company-growth\",\n name: \"Get Company Growth Metrics\",\n description: \"Tool to get growth metrics for a specified company domain. Use when historical company growth data is needed after confirming the exact company domain.\",\n input: RocketReachGetCompanyGrowthInput,\n output: RocketReachGetCompanyGrowthOutput,\n});\n"],"mappings":";;AAWA,MAAa,8BAA8B,OAAO,mCAAmC;CACnF,MAAM;CACN,MAAM;CACN,aAAa;CACb,OAX8C,EAAE,OAAO,EACvD,QAAQ,EAAE,OAAO,CAAC,CAAC,SAAS,mCAAmC,EACjE,CASS;CACP,QAT+C,EAAE,OAAO,EACxD,QAAQ,EAAE,OAAO,EAAE,OAAO,GAAG,EAAE,QAAQ,CAAC,CAAC,CAAC,SAAS,yDAAyD,EAC9G,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/get-company-industries.ts
4
4
  const RocketReachGetCompanyIndustriesInput = zod.z.object({ company_id: zod.z.string().describe("Company identifier to retrieve industries for. This may be a RocketReach company ID, a company domain (e.g., 'stripe.com'), or a company name.") });
5
- const RocketReachGetCompanyIndustriesOutput = zod.z.object({ industries: zod.z.array(zod.z.string()).describe("List of industries associated with the specified company.") });
5
+ const RocketReachGetCompanyIndustriesOutput = zod.z.object({ industries: zod.z.array(zod.z.string()).describe("List of industries associated with the specified company.") }).passthrough();
6
6
  const rocketReachGetCompanyIndustries = require_action.action("ROCKET_REACH_GET_COMPANY_INDUSTRIES", {
7
7
  slug: "rocket_reach-get-company-industries",
8
8
  name: "Get Company Industries",
@@ -1 +1 @@
1
- {"version":3,"file":"get-company-industries.cjs","names":["z","action"],"sources":["../../src/actions/get-company-industries.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const RocketReachGetCompanyIndustriesInput = z.object({\n company_id: z.string().describe(\"Company identifier to retrieve industries for. This may be a RocketReach company ID, a company domain (e.g., 'stripe.com'), or a company name.\"),\n});\nexport const RocketReachGetCompanyIndustriesOutput = z.object({\n industries: z.array(z.string()).describe(\"List of industries associated with the specified company.\"),\n});\n\nexport const rocketReachGetCompanyIndustries = action(\"ROCKET_REACH_GET_COMPANY_INDUSTRIES\", {\n slug: \"rocket_reach-get-company-industries\",\n name: \"Get Company Industries\",\n description: \"Tool to list industries associated with a specified company. Tries multiple RocketReach endpoints using the provided identifier (ID, domain, or name) and extracts industry information from the response payload.\",\n input: RocketReachGetCompanyIndustriesInput,\n output: RocketReachGetCompanyIndustriesOutput,\n});\n"],"mappings":";;;AAIA,MAAa,uCAAuCA,IAAAA,EAAE,OAAO,EAC3D,YAAYA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,gJAAgJ,EAClL,CAAC;AACD,MAAa,wCAAwCA,IAAAA,EAAE,OAAO,EAC5D,YAAYA,IAAAA,EAAE,MAAMA,IAAAA,EAAE,OAAO,CAAC,CAAC,CAAC,SAAS,2DAA2D,EACtG,CAAC;AAED,MAAa,kCAAkCC,eAAAA,OAAO,uCAAuC;CAC3F,MAAM;CACN,MAAM;CACN,aAAa;CACb,OAAO;CACP,QAAQ;AACV,CAAC"}
1
+ {"version":3,"file":"get-company-industries.cjs","names":["z","action"],"sources":["../../src/actions/get-company-industries.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const RocketReachGetCompanyIndustriesInput = z.object({\n company_id: z.string().describe(\"Company identifier to retrieve industries for. This may be a RocketReach company ID, a company domain (e.g., 'stripe.com'), or a company name.\"),\n});\nexport const RocketReachGetCompanyIndustriesOutput = z.object({\n industries: z.array(z.string()).describe(\"List of industries associated with the specified company.\"),\n}).passthrough();\n\nexport const rocketReachGetCompanyIndustries = action(\"ROCKET_REACH_GET_COMPANY_INDUSTRIES\", {\n slug: \"rocket_reach-get-company-industries\",\n name: \"Get Company Industries\",\n description: \"Tool to list industries associated with a specified company. Tries multiple RocketReach endpoints using the provided identifier (ID, domain, or name) and extracts industry information from the response payload.\",\n input: RocketReachGetCompanyIndustriesInput,\n output: RocketReachGetCompanyIndustriesOutput,\n});\n"],"mappings":";;;AAIA,MAAa,uCAAuCA,IAAAA,EAAE,OAAO,EAC3D,YAAYA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,gJAAgJ,EAClL,CAAC;AACD,MAAa,wCAAwCA,IAAAA,EAAE,OAAO,EAC5D,YAAYA,IAAAA,EAAE,MAAMA,IAAAA,EAAE,OAAO,CAAC,CAAC,CAAC,SAAS,2DAA2D,EACtG,CAAC,CAAC,CAAC,YAAY;AAEf,MAAa,kCAAkCC,eAAAA,OAAO,uCAAuC;CAC3F,MAAM;CACN,MAAM;CACN,aAAa;CACb,OAAO;CACP,QAAQ;AACV,CAAC"}
@@ -6,7 +6,7 @@ declare const RocketReachGetCompanyIndustriesInput: z.ZodObject<{
6
6
  }, z.core.$strip>;
7
7
  declare const RocketReachGetCompanyIndustriesOutput: z.ZodObject<{
8
8
  industries: z.ZodArray<z.ZodString>;
9
- }, z.core.$strip>;
9
+ }, z.core.$loose>;
10
10
  declare const rocketReachGetCompanyIndustries: import("@keystrokehq/action").WorkflowActionDefinition<{
11
11
  company_id: string;
12
12
  }, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
@@ -6,7 +6,7 @@ declare const RocketReachGetCompanyIndustriesInput: z.ZodObject<{
6
6
  }, z.core.$strip>;
7
7
  declare const RocketReachGetCompanyIndustriesOutput: z.ZodObject<{
8
8
  industries: z.ZodArray<z.ZodString>;
9
- }, z.core.$strip>;
9
+ }, z.core.$loose>;
10
10
  declare const rocketReachGetCompanyIndustries: import("@keystrokehq/action").WorkflowActionDefinition<{
11
11
  company_id: string;
12
12
  }, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
@@ -5,7 +5,7 @@ const rocketReachGetCompanyIndustries = action("ROCKET_REACH_GET_COMPANY_INDUSTR
5
5
  name: "Get Company Industries",
6
6
  description: "Tool to list industries associated with a specified company. Tries multiple RocketReach endpoints using the provided identifier (ID, domain, or name) and extracts industry information from the response payload.",
7
7
  input: z.object({ company_id: z.string().describe("Company identifier to retrieve industries for. This may be a RocketReach company ID, a company domain (e.g., 'stripe.com'), or a company name.") }),
8
- output: z.object({ industries: z.array(z.string()).describe("List of industries associated with the specified company.") })
8
+ output: z.object({ industries: z.array(z.string()).describe("List of industries associated with the specified company.") }).passthrough()
9
9
  });
10
10
  //#endregion
11
11
  export { rocketReachGetCompanyIndustries };
@@ -1 +1 @@
1
- {"version":3,"file":"get-company-industries.mjs","names":[],"sources":["../../src/actions/get-company-industries.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const RocketReachGetCompanyIndustriesInput = z.object({\n company_id: z.string().describe(\"Company identifier to retrieve industries for. This may be a RocketReach company ID, a company domain (e.g., 'stripe.com'), or a company name.\"),\n});\nexport const RocketReachGetCompanyIndustriesOutput = z.object({\n industries: z.array(z.string()).describe(\"List of industries associated with the specified company.\"),\n});\n\nexport const rocketReachGetCompanyIndustries = action(\"ROCKET_REACH_GET_COMPANY_INDUSTRIES\", {\n slug: \"rocket_reach-get-company-industries\",\n name: \"Get Company Industries\",\n description: \"Tool to list industries associated with a specified company. Tries multiple RocketReach endpoints using the provided identifier (ID, domain, or name) and extracts industry information from the response payload.\",\n input: RocketReachGetCompanyIndustriesInput,\n output: RocketReachGetCompanyIndustriesOutput,\n});\n"],"mappings":";;AAWA,MAAa,kCAAkC,OAAO,uCAAuC;CAC3F,MAAM;CACN,MAAM;CACN,aAAa;CACb,OAXkD,EAAE,OAAO,EAC3D,YAAY,EAAE,OAAO,CAAC,CAAC,SAAS,gJAAgJ,EAClL,CASS;CACP,QATmD,EAAE,OAAO,EAC5D,YAAY,EAAE,MAAM,EAAE,OAAO,CAAC,CAAC,CAAC,SAAS,2DAA2D,EACtG,CAOU;AACV,CAAC"}
1
+ {"version":3,"file":"get-company-industries.mjs","names":[],"sources":["../../src/actions/get-company-industries.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const RocketReachGetCompanyIndustriesInput = z.object({\n company_id: z.string().describe(\"Company identifier to retrieve industries for. This may be a RocketReach company ID, a company domain (e.g., 'stripe.com'), or a company name.\"),\n});\nexport const RocketReachGetCompanyIndustriesOutput = z.object({\n industries: z.array(z.string()).describe(\"List of industries associated with the specified company.\"),\n}).passthrough();\n\nexport const rocketReachGetCompanyIndustries = action(\"ROCKET_REACH_GET_COMPANY_INDUSTRIES\", {\n slug: \"rocket_reach-get-company-industries\",\n name: \"Get Company Industries\",\n description: \"Tool to list industries associated with a specified company. Tries multiple RocketReach endpoints using the provided identifier (ID, domain, or name) and extracts industry information from the response payload.\",\n input: RocketReachGetCompanyIndustriesInput,\n output: RocketReachGetCompanyIndustriesOutput,\n});\n"],"mappings":";;AAWA,MAAa,kCAAkC,OAAO,uCAAuC;CAC3F,MAAM;CACN,MAAM;CACN,aAAa;CACb,OAXkD,EAAE,OAAO,EAC3D,YAAY,EAAE,OAAO,CAAC,CAAC,SAAS,gJAAgJ,EAClL,CASS;CACP,QATmD,EAAE,OAAO,EAC5D,YAAY,EAAE,MAAM,EAAE,OAAO,CAAC,CAAC,CAAC,SAAS,2DAA2D,EACtG,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/get-company-size.ts
4
4
  const RocketReachGetCompanySizeInput = zod.z.object({ domain: zod.z.string().describe("The domain name of the company to look up, e.g. 'google.com'.") });
5
- const RocketReachGetCompanySizeOutput = zod.z.object({ size: zod.z.string().describe("The employee size range of the company, e.g. '51-200'. Empty string if not found.").nullable() });
5
+ const RocketReachGetCompanySizeOutput = zod.z.object({ size: zod.z.string().describe("The employee size range of the company, e.g. '51-200'. Empty string if not found.").nullable() }).passthrough();
6
6
  const rocketReachGetCompanySize = require_action.action("ROCKET_REACH_GET_COMPANY_SIZE", {
7
7
  slug: "rocket_reach-get-company-size",
8
8
  name: "Get Company Size",
@@ -1 +1 @@
1
- {"version":3,"file":"get-company-size.cjs","names":["z","action"],"sources":["../../src/actions/get-company-size.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const RocketReachGetCompanySizeInput = z.object({\n domain: z.string().describe(\"The domain name of the company to look up, e.g. 'google.com'.\"),\n});\nexport const RocketReachGetCompanySizeOutput = z.object({\n size: z.string().describe(\"The employee size range of the company, e.g. '51-200'. Empty string if not found.\").nullable(),\n});\n\nexport const rocketReachGetCompanySize = action(\"ROCKET_REACH_GET_COMPANY_SIZE\", {\n slug: \"rocket_reach-get-company-size\",\n name: \"Get Company Size\",\n description: \"Tool to retrieve size metrics of a company. Use when you have a company's domain to get its employee size range.\",\n input: RocketReachGetCompanySizeInput,\n output: RocketReachGetCompanySizeOutput,\n});\n"],"mappings":";;;AAIA,MAAa,iCAAiCA,IAAAA,EAAE,OAAO,EACrD,QAAQA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,+DAA+D,EAC7F,CAAC;AACD,MAAa,kCAAkCA,IAAAA,EAAE,OAAO,EACtD,MAAMA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,mFAAmF,CAAC,CAAC,SAAS,EAC1H,CAAC;AAED,MAAa,4BAA4BC,eAAAA,OAAO,iCAAiC;CAC/E,MAAM;CACN,MAAM;CACN,aAAa;CACb,OAAO;CACP,QAAQ;AACV,CAAC"}
1
+ {"version":3,"file":"get-company-size.cjs","names":["z","action"],"sources":["../../src/actions/get-company-size.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const RocketReachGetCompanySizeInput = z.object({\n domain: z.string().describe(\"The domain name of the company to look up, e.g. 'google.com'.\"),\n});\nexport const RocketReachGetCompanySizeOutput = z.object({\n size: z.string().describe(\"The employee size range of the company, e.g. '51-200'. Empty string if not found.\").nullable(),\n}).passthrough();\n\nexport const rocketReachGetCompanySize = action(\"ROCKET_REACH_GET_COMPANY_SIZE\", {\n slug: \"rocket_reach-get-company-size\",\n name: \"Get Company Size\",\n description: \"Tool to retrieve size metrics of a company. Use when you have a company's domain to get its employee size range.\",\n input: RocketReachGetCompanySizeInput,\n output: RocketReachGetCompanySizeOutput,\n});\n"],"mappings":";;;AAIA,MAAa,iCAAiCA,IAAAA,EAAE,OAAO,EACrD,QAAQA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,+DAA+D,EAC7F,CAAC;AACD,MAAa,kCAAkCA,IAAAA,EAAE,OAAO,EACtD,MAAMA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,mFAAmF,CAAC,CAAC,SAAS,EAC1H,CAAC,CAAC,CAAC,YAAY;AAEf,MAAa,4BAA4BC,eAAAA,OAAO,iCAAiC;CAC/E,MAAM;CACN,MAAM;CACN,aAAa;CACb,OAAO;CACP,QAAQ;AACV,CAAC"}
@@ -6,7 +6,7 @@ declare const RocketReachGetCompanySizeInput: z.ZodObject<{
6
6
  }, z.core.$strip>;
7
7
  declare const RocketReachGetCompanySizeOutput: z.ZodObject<{
8
8
  size: z.ZodNullable<z.ZodString>;
9
- }, z.core.$strip>;
9
+ }, z.core.$loose>;
10
10
  declare const rocketReachGetCompanySize: import("@keystrokehq/action").WorkflowActionDefinition<{
11
11
  domain: string;
12
12
  }, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
@@ -6,7 +6,7 @@ declare const RocketReachGetCompanySizeInput: z.ZodObject<{
6
6
  }, z.core.$strip>;
7
7
  declare const RocketReachGetCompanySizeOutput: z.ZodObject<{
8
8
  size: z.ZodNullable<z.ZodString>;
9
- }, z.core.$strip>;
9
+ }, z.core.$loose>;
10
10
  declare const rocketReachGetCompanySize: import("@keystrokehq/action").WorkflowActionDefinition<{
11
11
  domain: string;
12
12
  }, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
@@ -5,7 +5,7 @@ const rocketReachGetCompanySize = action("ROCKET_REACH_GET_COMPANY_SIZE", {
5
5
  name: "Get Company Size",
6
6
  description: "Tool to retrieve size metrics of a company. Use when you have a company's domain to get its employee size range.",
7
7
  input: z.object({ domain: z.string().describe("The domain name of the company to look up, e.g. 'google.com'.") }),
8
- output: z.object({ size: z.string().describe("The employee size range of the company, e.g. '51-200'. Empty string if not found.").nullable() })
8
+ output: z.object({ size: z.string().describe("The employee size range of the company, e.g. '51-200'. Empty string if not found.").nullable() }).passthrough()
9
9
  });
10
10
  //#endregion
11
11
  export { rocketReachGetCompanySize };
@@ -1 +1 @@
1
- {"version":3,"file":"get-company-size.mjs","names":[],"sources":["../../src/actions/get-company-size.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const RocketReachGetCompanySizeInput = z.object({\n domain: z.string().describe(\"The domain name of the company to look up, e.g. 'google.com'.\"),\n});\nexport const RocketReachGetCompanySizeOutput = z.object({\n size: z.string().describe(\"The employee size range of the company, e.g. '51-200'. Empty string if not found.\").nullable(),\n});\n\nexport const rocketReachGetCompanySize = action(\"ROCKET_REACH_GET_COMPANY_SIZE\", {\n slug: \"rocket_reach-get-company-size\",\n name: \"Get Company Size\",\n description: \"Tool to retrieve size metrics of a company. Use when you have a company's domain to get its employee size range.\",\n input: RocketReachGetCompanySizeInput,\n output: RocketReachGetCompanySizeOutput,\n});\n"],"mappings":";;AAWA,MAAa,4BAA4B,OAAO,iCAAiC;CAC/E,MAAM;CACN,MAAM;CACN,aAAa;CACb,OAX4C,EAAE,OAAO,EACrD,QAAQ,EAAE,OAAO,CAAC,CAAC,SAAS,+DAA+D,EAC7F,CASS;CACP,QAT6C,EAAE,OAAO,EACtD,MAAM,EAAE,OAAO,CAAC,CAAC,SAAS,mFAAmF,CAAC,CAAC,SAAS,EAC1H,CAOU;AACV,CAAC"}
1
+ {"version":3,"file":"get-company-size.mjs","names":[],"sources":["../../src/actions/get-company-size.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const RocketReachGetCompanySizeInput = z.object({\n domain: z.string().describe(\"The domain name of the company to look up, e.g. 'google.com'.\"),\n});\nexport const RocketReachGetCompanySizeOutput = z.object({\n size: z.string().describe(\"The employee size range of the company, e.g. '51-200'. Empty string if not found.\").nullable(),\n}).passthrough();\n\nexport const rocketReachGetCompanySize = action(\"ROCKET_REACH_GET_COMPANY_SIZE\", {\n slug: \"rocket_reach-get-company-size\",\n name: \"Get Company Size\",\n description: \"Tool to retrieve size metrics of a company. Use when you have a company's domain to get its employee size range.\",\n input: RocketReachGetCompanySizeInput,\n output: RocketReachGetCompanySizeOutput,\n});\n"],"mappings":";;AAWA,MAAa,4BAA4B,OAAO,iCAAiC;CAC/E,MAAM;CACN,MAAM;CACN,aAAa;CACb,OAX4C,EAAE,OAAO,EACrD,QAAQ,EAAE,OAAO,CAAC,CAAC,SAAS,+DAA+D,EAC7F,CASS;CACP,QAT6C,EAAE,OAAO,EACtD,MAAM,EAAE,OAAO,CAAC,CAAC,SAAS,mFAAmF,CAAC,CAAC,SAAS,EAC1H,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/get-company-tech-stack.ts
4
4
  const RocketReachGetCompanyTechStackInput = zod.z.object({ domain: zod.z.string().describe("The company's web domain (e.g., 'spotify.com').") }).describe("Request parameters for retrieving a company's technology stack.");
5
- const RocketReachGetCompanyTechStackOutput = zod.z.object({ tech_stack: zod.z.array(zod.z.string()).describe("List of technologies detected for the company.") }).describe("Response model containing the list of technologies used by the company.");
5
+ const RocketReachGetCompanyTechStackOutput = zod.z.object({ tech_stack: zod.z.array(zod.z.string()).describe("List of technologies detected for the company.") }).passthrough().describe("Response model containing the list of technologies used by the company.");
6
6
  const rocketReachGetCompanyTechStack = require_action.action("ROCKET_REACH_GET_COMPANY_TECH_STACK", {
7
7
  slug: "rocket_reach-get-company-tech-stack",
8
8
  name: "Get Company Tech Stack",
@@ -1 +1 @@
1
- {"version":3,"file":"get-company-tech-stack.cjs","names":["z","action"],"sources":["../../src/actions/get-company-tech-stack.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const RocketReachGetCompanyTechStackInput = z.object({\n domain: z.string().describe(\"The company's web domain (e.g., 'spotify.com').\"),\n}).describe(\"Request parameters for retrieving a company's technology stack.\");\nexport const RocketReachGetCompanyTechStackOutput = z.object({\n tech_stack: z.array(z.string()).describe(\"List of technologies detected for the company.\"),\n}).describe(\"Response model containing the list of technologies used by the company.\");\n\nexport const rocketReachGetCompanyTechStack = action(\"ROCKET_REACH_GET_COMPANY_TECH_STACK\", {\n slug: \"rocket_reach-get-company-tech-stack\",\n name: \"Get Company Tech Stack\",\n description: \"Tool to get technology stack for a company by domain. Use when you need to discover the tech a company uses after confirming its domain.\",\n input: RocketReachGetCompanyTechStackInput,\n output: RocketReachGetCompanyTechStackOutput,\n});\n"],"mappings":";;;AAIA,MAAa,sCAAsCA,IAAAA,EAAE,OAAO,EAC1D,QAAQA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,iDAAiD,EAC/E,CAAC,CAAC,CAAC,SAAS,iEAAiE;AAC7E,MAAa,uCAAuCA,IAAAA,EAAE,OAAO,EAC3D,YAAYA,IAAAA,EAAE,MAAMA,IAAAA,EAAE,OAAO,CAAC,CAAC,CAAC,SAAS,gDAAgD,EAC3F,CAAC,CAAC,CAAC,SAAS,yEAAyE;AAErF,MAAa,iCAAiCC,eAAAA,OAAO,uCAAuC;CAC1F,MAAM;CACN,MAAM;CACN,aAAa;CACb,OAAO;CACP,QAAQ;AACV,CAAC"}
1
+ {"version":3,"file":"get-company-tech-stack.cjs","names":["z","action"],"sources":["../../src/actions/get-company-tech-stack.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const RocketReachGetCompanyTechStackInput = z.object({\n domain: z.string().describe(\"The company's web domain (e.g., 'spotify.com').\"),\n}).describe(\"Request parameters for retrieving a company's technology stack.\");\nexport const RocketReachGetCompanyTechStackOutput = z.object({\n tech_stack: z.array(z.string()).describe(\"List of technologies detected for the company.\"),\n}).passthrough().describe(\"Response model containing the list of technologies used by the company.\");\n\nexport const rocketReachGetCompanyTechStack = action(\"ROCKET_REACH_GET_COMPANY_TECH_STACK\", {\n slug: \"rocket_reach-get-company-tech-stack\",\n name: \"Get Company Tech Stack\",\n description: \"Tool to get technology stack for a company by domain. Use when you need to discover the tech a company uses after confirming its domain.\",\n input: RocketReachGetCompanyTechStackInput,\n output: RocketReachGetCompanyTechStackOutput,\n});\n"],"mappings":";;;AAIA,MAAa,sCAAsCA,IAAAA,EAAE,OAAO,EAC1D,QAAQA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,iDAAiD,EAC/E,CAAC,CAAC,CAAC,SAAS,iEAAiE;AAC7E,MAAa,uCAAuCA,IAAAA,EAAE,OAAO,EAC3D,YAAYA,IAAAA,EAAE,MAAMA,IAAAA,EAAE,OAAO,CAAC,CAAC,CAAC,SAAS,gDAAgD,EAC3F,CAAC,CAAC,CAAC,YAAY,CAAC,CAAC,SAAS,yEAAyE;AAEnG,MAAa,iCAAiCC,eAAAA,OAAO,uCAAuC;CAC1F,MAAM;CACN,MAAM;CACN,aAAa;CACb,OAAO;CACP,QAAQ;AACV,CAAC"}
@@ -6,7 +6,7 @@ declare const RocketReachGetCompanyTechStackInput: z.ZodObject<{
6
6
  }, z.core.$strip>;
7
7
  declare const RocketReachGetCompanyTechStackOutput: z.ZodObject<{
8
8
  tech_stack: z.ZodArray<z.ZodString>;
9
- }, z.core.$strip>;
9
+ }, z.core.$loose>;
10
10
  declare const rocketReachGetCompanyTechStack: import("@keystrokehq/action").WorkflowActionDefinition<{
11
11
  domain: string;
12
12
  }, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
@@ -6,7 +6,7 @@ declare const RocketReachGetCompanyTechStackInput: z.ZodObject<{
6
6
  }, z.core.$strip>;
7
7
  declare const RocketReachGetCompanyTechStackOutput: z.ZodObject<{
8
8
  tech_stack: z.ZodArray<z.ZodString>;
9
- }, z.core.$strip>;
9
+ }, z.core.$loose>;
10
10
  declare const rocketReachGetCompanyTechStack: import("@keystrokehq/action").WorkflowActionDefinition<{
11
11
  domain: string;
12
12
  }, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
@@ -5,7 +5,7 @@ const rocketReachGetCompanyTechStack = action("ROCKET_REACH_GET_COMPANY_TECH_STA
5
5
  name: "Get Company Tech Stack",
6
6
  description: "Tool to get technology stack for a company by domain. Use when you need to discover the tech a company uses after confirming its domain.",
7
7
  input: z.object({ domain: z.string().describe("The company's web domain (e.g., 'spotify.com').") }).describe("Request parameters for retrieving a company's technology stack."),
8
- output: z.object({ tech_stack: z.array(z.string()).describe("List of technologies detected for the company.") }).describe("Response model containing the list of technologies used by the company.")
8
+ output: z.object({ tech_stack: z.array(z.string()).describe("List of technologies detected for the company.") }).passthrough().describe("Response model containing the list of technologies used by the company.")
9
9
  });
10
10
  //#endregion
11
11
  export { rocketReachGetCompanyTechStack };
@@ -1 +1 @@
1
- {"version":3,"file":"get-company-tech-stack.mjs","names":[],"sources":["../../src/actions/get-company-tech-stack.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const RocketReachGetCompanyTechStackInput = z.object({\n domain: z.string().describe(\"The company's web domain (e.g., 'spotify.com').\"),\n}).describe(\"Request parameters for retrieving a company's technology stack.\");\nexport const RocketReachGetCompanyTechStackOutput = z.object({\n tech_stack: z.array(z.string()).describe(\"List of technologies detected for the company.\"),\n}).describe(\"Response model containing the list of technologies used by the company.\");\n\nexport const rocketReachGetCompanyTechStack = action(\"ROCKET_REACH_GET_COMPANY_TECH_STACK\", {\n slug: \"rocket_reach-get-company-tech-stack\",\n name: \"Get Company Tech Stack\",\n description: \"Tool to get technology stack for a company by domain. Use when you need to discover the tech a company uses after confirming its domain.\",\n input: RocketReachGetCompanyTechStackInput,\n output: RocketReachGetCompanyTechStackOutput,\n});\n"],"mappings":";;AAWA,MAAa,iCAAiC,OAAO,uCAAuC;CAC1F,MAAM;CACN,MAAM;CACN,aAAa;CACb,OAXiD,EAAE,OAAO,EAC1D,QAAQ,EAAE,OAAO,CAAC,CAAC,SAAS,iDAAiD,EAC/E,CAAC,CAAC,CAAC,SAAS,iEASH;CACP,QATkD,EAAE,OAAO,EAC3D,YAAY,EAAE,MAAM,EAAE,OAAO,CAAC,CAAC,CAAC,SAAS,gDAAgD,EAC3F,CAAC,CAAC,CAAC,SAAS,yEAOF;AACV,CAAC"}
1
+ {"version":3,"file":"get-company-tech-stack.mjs","names":[],"sources":["../../src/actions/get-company-tech-stack.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const RocketReachGetCompanyTechStackInput = z.object({\n domain: z.string().describe(\"The company's web domain (e.g., 'spotify.com').\"),\n}).describe(\"Request parameters for retrieving a company's technology stack.\");\nexport const RocketReachGetCompanyTechStackOutput = z.object({\n tech_stack: z.array(z.string()).describe(\"List of technologies detected for the company.\"),\n}).passthrough().describe(\"Response model containing the list of technologies used by the company.\");\n\nexport const rocketReachGetCompanyTechStack = action(\"ROCKET_REACH_GET_COMPANY_TECH_STACK\", {\n slug: \"rocket_reach-get-company-tech-stack\",\n name: \"Get Company Tech Stack\",\n description: \"Tool to get technology stack for a company by domain. Use when you need to discover the tech a company uses after confirming its domain.\",\n input: RocketReachGetCompanyTechStackInput,\n output: RocketReachGetCompanyTechStackOutput,\n});\n"],"mappings":";;AAWA,MAAa,iCAAiC,OAAO,uCAAuC;CAC1F,MAAM;CACN,MAAM;CACN,aAAa;CACb,OAXiD,EAAE,OAAO,EAC1D,QAAQ,EAAE,OAAO,CAAC,CAAC,SAAS,iDAAiD,EAC/E,CAAC,CAAC,CAAC,SAAS,iEASH;CACP,QATkD,EAAE,OAAO,EAC3D,YAAY,EAAE,MAAM,EAAE,OAAO,CAAC,CAAC,CAAC,SAAS,gDAAgD,EAC3F,CAAC,CAAC,CAAC,YAAY,CAAC,CAAC,SAAS,yEAOhB;AACV,CAAC"}
@@ -2,7 +2,7 @@ const require_action = require("../action.cjs");
2
2
  let zod = require("zod");
3
3
  //#region src/actions/lookup-company.ts
4
4
  const RocketReachLookupCompanyInput = zod.z.object({ name: zod.z.string().describe("Full name of the company to lookup the domain for.") }).describe("Request parameters for looking up a company's domain by its name in RocketReach.");
5
- const RocketReachLookupCompanyOutput = zod.z.object({ domain: zod.z.string().describe("The domain of the company, e.g. 'acme.com'. If not found, empty string.").nullable() }).describe("Response model containing the company's domain returned by RocketReach.");
5
+ const RocketReachLookupCompanyOutput = zod.z.object({ domain: zod.z.string().describe("The domain of the company, e.g. 'acme.com'. If not found, empty string.").nullable() }).passthrough().describe("Response model containing the company's domain returned by RocketReach.");
6
6
  const rocketReachLookupCompany = require_action.action("ROCKET_REACH_LOOKUP_COMPANY", {
7
7
  slug: "rocket_reach-lookup-company",
8
8
  name: "RocketReach Lookup Company",
@@ -1 +1 @@
1
- {"version":3,"file":"lookup-company.cjs","names":["z","action"],"sources":["../../src/actions/lookup-company.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const RocketReachLookupCompanyInput = z.object({\n name: z.string().describe(\"Full name of the company to lookup the domain for.\"),\n}).describe(\"Request parameters for looking up a company's domain by its name in RocketReach.\");\nexport const RocketReachLookupCompanyOutput = z.object({\n domain: z.string().describe(\"The domain of the company, e.g. 'acme.com'. If not found, empty string.\").nullable(),\n}).describe(\"Response model containing the company's domain returned by RocketReach.\");\n\nexport const rocketReachLookupCompany = action(\"ROCKET_REACH_LOOKUP_COMPANY\", {\n slug: \"rocket_reach-lookup-company\",\n name: \"RocketReach Lookup Company\",\n description: \"Tool to lookup a company's domain via RocketReach Company Lookup API. Use when you need the company domain by name for downstream actions like funding, size, or tech stack.\",\n input: RocketReachLookupCompanyInput,\n output: RocketReachLookupCompanyOutput,\n});\n"],"mappings":";;;AAIA,MAAa,gCAAgCA,IAAAA,EAAE,OAAO,EACpD,MAAMA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,oDAAoD,EAChF,CAAC,CAAC,CAAC,SAAS,kFAAkF;AAC9F,MAAa,iCAAiCA,IAAAA,EAAE,OAAO,EACrD,QAAQA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,yEAAyE,CAAC,CAAC,SAAS,EAClH,CAAC,CAAC,CAAC,SAAS,yEAAyE;AAErF,MAAa,2BAA2BC,eAAAA,OAAO,+BAA+B;CAC5E,MAAM;CACN,MAAM;CACN,aAAa;CACb,OAAO;CACP,QAAQ;AACV,CAAC"}
1
+ {"version":3,"file":"lookup-company.cjs","names":["z","action"],"sources":["../../src/actions/lookup-company.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const RocketReachLookupCompanyInput = z.object({\n name: z.string().describe(\"Full name of the company to lookup the domain for.\"),\n}).describe(\"Request parameters for looking up a company's domain by its name in RocketReach.\");\nexport const RocketReachLookupCompanyOutput = z.object({\n domain: z.string().describe(\"The domain of the company, e.g. 'acme.com'. If not found, empty string.\").nullable(),\n}).passthrough().describe(\"Response model containing the company's domain returned by RocketReach.\");\n\nexport const rocketReachLookupCompany = action(\"ROCKET_REACH_LOOKUP_COMPANY\", {\n slug: \"rocket_reach-lookup-company\",\n name: \"RocketReach Lookup Company\",\n description: \"Tool to lookup a company's domain via RocketReach Company Lookup API. Use when you need the company domain by name for downstream actions like funding, size, or tech stack.\",\n input: RocketReachLookupCompanyInput,\n output: RocketReachLookupCompanyOutput,\n});\n"],"mappings":";;;AAIA,MAAa,gCAAgCA,IAAAA,EAAE,OAAO,EACpD,MAAMA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,oDAAoD,EAChF,CAAC,CAAC,CAAC,SAAS,kFAAkF;AAC9F,MAAa,iCAAiCA,IAAAA,EAAE,OAAO,EACrD,QAAQA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,yEAAyE,CAAC,CAAC,SAAS,EAClH,CAAC,CAAC,CAAC,YAAY,CAAC,CAAC,SAAS,yEAAyE;AAEnG,MAAa,2BAA2BC,eAAAA,OAAO,+BAA+B;CAC5E,MAAM;CACN,MAAM;CACN,aAAa;CACb,OAAO;CACP,QAAQ;AACV,CAAC"}
@@ -6,7 +6,7 @@ declare const RocketReachLookupCompanyInput: z.ZodObject<{
6
6
  }, z.core.$strip>;
7
7
  declare const RocketReachLookupCompanyOutput: z.ZodObject<{
8
8
  domain: z.ZodNullable<z.ZodString>;
9
- }, z.core.$strip>;
9
+ }, z.core.$loose>;
10
10
  declare const rocketReachLookupCompany: import("@keystrokehq/action").WorkflowActionDefinition<{
11
11
  name: string;
12
12
  }, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
@@ -6,7 +6,7 @@ declare const RocketReachLookupCompanyInput: z.ZodObject<{
6
6
  }, z.core.$strip>;
7
7
  declare const RocketReachLookupCompanyOutput: z.ZodObject<{
8
8
  domain: z.ZodNullable<z.ZodString>;
9
- }, z.core.$strip>;
9
+ }, z.core.$loose>;
10
10
  declare const rocketReachLookupCompany: import("@keystrokehq/action").WorkflowActionDefinition<{
11
11
  name: string;
12
12
  }, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
@@ -5,7 +5,7 @@ const rocketReachLookupCompany = action("ROCKET_REACH_LOOKUP_COMPANY", {
5
5
  name: "RocketReach Lookup Company",
6
6
  description: "Tool to lookup a company's domain via RocketReach Company Lookup API. Use when you need the company domain by name for downstream actions like funding, size, or tech stack.",
7
7
  input: z.object({ name: z.string().describe("Full name of the company to lookup the domain for.") }).describe("Request parameters for looking up a company's domain by its name in RocketReach."),
8
- output: z.object({ domain: z.string().describe("The domain of the company, e.g. 'acme.com'. If not found, empty string.").nullable() }).describe("Response model containing the company's domain returned by RocketReach.")
8
+ output: z.object({ domain: z.string().describe("The domain of the company, e.g. 'acme.com'. If not found, empty string.").nullable() }).passthrough().describe("Response model containing the company's domain returned by RocketReach.")
9
9
  });
10
10
  //#endregion
11
11
  export { rocketReachLookupCompany };
@@ -1 +1 @@
1
- {"version":3,"file":"lookup-company.mjs","names":[],"sources":["../../src/actions/lookup-company.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const RocketReachLookupCompanyInput = z.object({\n name: z.string().describe(\"Full name of the company to lookup the domain for.\"),\n}).describe(\"Request parameters for looking up a company's domain by its name in RocketReach.\");\nexport const RocketReachLookupCompanyOutput = z.object({\n domain: z.string().describe(\"The domain of the company, e.g. 'acme.com'. If not found, empty string.\").nullable(),\n}).describe(\"Response model containing the company's domain returned by RocketReach.\");\n\nexport const rocketReachLookupCompany = action(\"ROCKET_REACH_LOOKUP_COMPANY\", {\n slug: \"rocket_reach-lookup-company\",\n name: \"RocketReach Lookup Company\",\n description: \"Tool to lookup a company's domain via RocketReach Company Lookup API. Use when you need the company domain by name for downstream actions like funding, size, or tech stack.\",\n input: RocketReachLookupCompanyInput,\n output: RocketReachLookupCompanyOutput,\n});\n"],"mappings":";;AAWA,MAAa,2BAA2B,OAAO,+BAA+B;CAC5E,MAAM;CACN,MAAM;CACN,aAAa;CACb,OAX2C,EAAE,OAAO,EACpD,MAAM,EAAE,OAAO,CAAC,CAAC,SAAS,oDAAoD,EAChF,CAAC,CAAC,CAAC,SAAS,kFASH;CACP,QAT4C,EAAE,OAAO,EACrD,QAAQ,EAAE,OAAO,CAAC,CAAC,SAAS,yEAAyE,CAAC,CAAC,SAAS,EAClH,CAAC,CAAC,CAAC,SAAS,yEAOF;AACV,CAAC"}
1
+ {"version":3,"file":"lookup-company.mjs","names":[],"sources":["../../src/actions/lookup-company.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const RocketReachLookupCompanyInput = z.object({\n name: z.string().describe(\"Full name of the company to lookup the domain for.\"),\n}).describe(\"Request parameters for looking up a company's domain by its name in RocketReach.\");\nexport const RocketReachLookupCompanyOutput = z.object({\n domain: z.string().describe(\"The domain of the company, e.g. 'acme.com'. If not found, empty string.\").nullable(),\n}).passthrough().describe(\"Response model containing the company's domain returned by RocketReach.\");\n\nexport const rocketReachLookupCompany = action(\"ROCKET_REACH_LOOKUP_COMPANY\", {\n slug: \"rocket_reach-lookup-company\",\n name: \"RocketReach Lookup Company\",\n description: \"Tool to lookup a company's domain via RocketReach Company Lookup API. Use when you need the company domain by name for downstream actions like funding, size, or tech stack.\",\n input: RocketReachLookupCompanyInput,\n output: RocketReachLookupCompanyOutput,\n});\n"],"mappings":";;AAWA,MAAa,2BAA2B,OAAO,+BAA+B;CAC5E,MAAM;CACN,MAAM;CACN,aAAa;CACb,OAX2C,EAAE,OAAO,EACpD,MAAM,EAAE,OAAO,CAAC,CAAC,SAAS,oDAAoD,EAChF,CAAC,CAAC,CAAC,SAAS,kFASH;CACP,QAT4C,EAAE,OAAO,EACrD,QAAQ,EAAE,OAAO,CAAC,CAAC,SAAS,yEAAyE,CAAC,CAAC,SAAS,EAClH,CAAC,CAAC,CAAC,YAAY,CAAC,CAAC,SAAS,yEAOhB;AACV,CAAC"}
@@ -26,18 +26,18 @@ const RocketReachLookupPersonAndCompany_EmailInfoSchema = zod.z.object({
26
26
  grade: zod.z.string().describe("Grade or confidence score for email").nullable().optional(),
27
27
  smtp_valid: zod.z.string().describe("SMTP validation status for the email").nullable().optional(),
28
28
  last_validation: zod.z.string().describe("Last validation date/time for the email").nullable().optional()
29
- }).describe("Email information from the API response.");
29
+ }).passthrough().describe("Email information from the API response.");
30
30
  const RocketReachLookupPersonAndCompany_PhoneInfoSchema = zod.z.object({
31
31
  type: zod.z.string().describe("Type of phone (mobile, work, home, etc.)").nullable().optional(),
32
32
  number: zod.z.string().describe("Phone number").nullable().optional(),
33
33
  validity: zod.z.string().describe("Validity status of the phone number").nullable().optional(),
34
34
  recommended: zod.z.boolean().describe("Whether this is the recommended phone number").nullable().optional()
35
- }).describe("Phone information from the API response.");
35
+ }).passthrough().describe("Phone information from the API response.");
36
36
  const RocketReachLookupPersonAndCompanyOutput = zod.z.object({
37
37
  id: zod.z.number().int().describe("RocketReach internal unique profile ID").nullable().optional(),
38
38
  city: zod.z.string().describe("City where the person is located").nullable().optional(),
39
39
  name: zod.z.string().describe("Full name of the person").nullable().optional(),
40
- links: zod.z.object({}).describe("Social media and other links associated with the person").nullable().optional(),
40
+ links: zod.z.record(zod.z.string(), zod.z.unknown()).describe("Social media and other links associated with the person").nullable().optional(),
41
41
  emails: zod.z.array(RocketReachLookupPersonAndCompany_EmailInfoSchema).describe("List of email addresses associated with the person").nullable().optional(),
42
42
  phones: zod.z.array(RocketReachLookupPersonAndCompany_PhoneInfoSchema).describe("List of phone numbers associated with the person").nullable().optional(),
43
43
  region: zod.z.string().describe("State or region where the person is located").nullable().optional(),
@@ -55,7 +55,7 @@ const RocketReachLookupPersonAndCompanyOutput = zod.z.object({
55
55
  current_work_email: zod.z.string().describe("Current work email address").nullable().optional(),
56
56
  current_employer_id: zod.z.number().int().describe("RocketReach internal ID for the current employer").nullable().optional(),
57
57
  current_employer_domain: zod.z.string().describe("Domain of the current employer's website").nullable().optional()
58
- }).describe("Response model containing both person and company information.");
58
+ }).passthrough().describe("Response model containing both person and company information.");
59
59
  const rocketReachLookupPersonAndCompany = require_action.action("ROCKET_REACH_LOOKUP_PERSON_AND_COMPANY", {
60
60
  slug: "rocket_reach-lookup-person-and-company",
61
61
  name: "Lookup Person and Company",