@keystrokehq/neverbounce 0.1.2 → 0.1.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/actions/account-info.cjs +3 -3
- package/dist/actions/account-info.cjs.map +1 -1
- package/dist/actions/account-info.d.cts +3 -3
- package/dist/actions/account-info.d.mts +3 -3
- package/dist/actions/account-info.mjs +3 -3
- package/dist/actions/account-info.mjs.map +1 -1
- package/dist/actions/confirm-poe.cjs +1 -1
- package/dist/actions/confirm-poe.cjs.map +1 -1
- package/dist/actions/confirm-poe.d.cts +1 -1
- package/dist/actions/confirm-poe.d.mts +1 -1
- package/dist/actions/confirm-poe.mjs +1 -1
- package/dist/actions/confirm-poe.mjs.map +1 -1
- package/dist/actions/jobs-create.cjs +3 -3
- package/dist/actions/jobs-create.cjs.map +1 -1
- package/dist/actions/jobs-create.d.cts +5 -5
- package/dist/actions/jobs-create.d.mts +5 -5
- package/dist/actions/jobs-create.mjs +3 -3
- package/dist/actions/jobs-create.mjs.map +1 -1
- package/dist/actions/jobs-delete.cjs +1 -1
- package/dist/actions/jobs-delete.cjs.map +1 -1
- package/dist/actions/jobs-delete.d.cts +1 -1
- package/dist/actions/jobs-delete.d.mts +1 -1
- package/dist/actions/jobs-delete.mjs +1 -1
- package/dist/actions/jobs-delete.mjs.map +1 -1
- package/dist/actions/jobs-download-get.cjs +2 -2
- package/dist/actions/jobs-download-get.cjs.map +1 -1
- package/dist/actions/jobs-download-get.d.cts +2 -2
- package/dist/actions/jobs-download-get.d.mts +2 -2
- package/dist/actions/jobs-download-get.mjs +2 -2
- package/dist/actions/jobs-download-get.mjs.map +1 -1
- package/dist/actions/jobs-results.cjs +2 -2
- package/dist/actions/jobs-results.cjs.map +1 -1
- package/dist/actions/jobs-results.d.cts +2 -2
- package/dist/actions/jobs-results.d.mts +2 -2
- package/dist/actions/jobs-results.mjs +2 -2
- package/dist/actions/jobs-results.mjs.map +1 -1
- package/dist/actions/jobs-start.cjs +1 -1
- package/dist/actions/jobs-start.cjs.map +1 -1
- package/dist/actions/jobs-start.d.cts +1 -1
- package/dist/actions/jobs-start.d.mts +1 -1
- package/dist/actions/jobs-start.mjs +1 -1
- package/dist/actions/jobs-start.mjs.map +1 -1
- package/dist/actions/jobs-status.cjs +1 -1
- package/dist/actions/jobs-status.cjs.map +1 -1
- package/dist/actions/jobs-status.d.cts +2 -2
- package/dist/actions/jobs-status.d.mts +2 -2
- package/dist/actions/jobs-status.mjs +1 -1
- package/dist/actions/jobs-status.mjs.map +1 -1
- package/dist/actions/parse-job.cjs +1 -1
- package/dist/actions/parse-job.cjs.map +1 -1
- package/dist/actions/parse-job.d.cts +1 -1
- package/dist/actions/parse-job.d.mts +1 -1
- package/dist/actions/parse-job.mjs +1 -1
- package/dist/actions/parse-job.mjs.map +1 -1
- package/dist/actions/search-jobs.cjs +4 -4
- package/dist/actions/search-jobs.cjs.map +1 -1
- package/dist/actions/search-jobs.d.cts +4 -4
- package/dist/actions/search-jobs.d.mts +4 -4
- package/dist/actions/search-jobs.mjs +4 -4
- package/dist/actions/search-jobs.mjs.map +1 -1
- package/dist/actions/single-check.cjs +1 -1
- package/dist/actions/single-check.cjs.map +1 -1
- package/dist/actions/single-check.d.cts +1 -1
- package/dist/actions/single-check.d.mts +1 -1
- package/dist/actions/single-check.mjs +1 -1
- package/dist/actions/single-check.mjs.map +1 -1
- package/dist/actions/widget-send-event.cjs +1 -1
- package/dist/actions/widget-send-event.cjs.map +1 -1
- package/dist/actions/widget-send-event.d.cts +1 -1
- package/dist/actions/widget-send-event.d.mts +1 -1
- package/dist/actions/widget-send-event.mjs +1 -1
- package/dist/actions/widget-send-event.mjs.map +1 -1
- package/dist/catalog.cjs +1 -1
- package/dist/catalog.cjs.map +1 -1
- package/dist/catalog.d.cts +1 -1
- package/dist/catalog.d.mts +1 -1
- package/dist/catalog.mjs +1 -1
- package/dist/catalog.mjs.map +1 -1
- package/package.json +1 -1
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"single-check.cjs","names":["z","action"],"sources":["../../src/actions/single-check.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const NeverbounceSingleCheckInput = z.object({\n email: z.string().describe(\"Email address to verify\"),\n timeout: z.number().int().describe(\"Timeout in milliseconds for the verification attempt. Network latency not included in timeout calculation. Too low a value causes false negatives (premature timeouts reported as unverifiable); too high a value can stall workflows.\").optional(),\n request_meta_data: z.object({\n leverage_historical_data: z.boolean().describe(\"Disable historical-driven results and force real-time verification when false. Set as 0 in form data to disable historical data usage.\").optional(),\n}).describe(\"Additional request metadata to control verification behavior\").optional(),\n});\nexport const NeverbounceSingleCheckOutput = z.object({\n flags: z.array(z.string()).describe(\"Informational flags discovered during verification\").nullable().optional(),\n result: z.enum([\"valid\", \"invalid\", \"disposable\", \"catchall\", \"unknown\"]).describe(\"Verification result code\").nullable(),\n execution_time: z.number().int().describe(\"Time taken to verify in milliseconds\").nullable(),\n historical_response: z.boolean().describe(\"True if the result was based on historical data. May be absent if not applicable.\").nullable().optional(),\n suggested_correction: z.string().describe(\"Suggestion for correcting a common typo in the email address\").nullable().optional(),\n});\n\nexport const neverbounceSingleCheck = action(\"NEVERBOUNCE_SINGLE_CHECK\", {\n slug: \"neverbounce-single-check\",\n name: \"NeverBounce Single Check\",\n description: \"Tool to verify a single email address and gather additional information. Use when you need real-time validation at the point of entry.\",\n input: NeverbounceSingleCheckInput,\n output: NeverbounceSingleCheckOutput,\n});\n"],"mappings":";;;AAIA,MAAa,8BAA8BA,IAAAA,EAAE,OAAO;CAClD,OAAOA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,yBAAyB;CACpD,SAASA,IAAAA,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,SAAS,wOAAwO,CAAC,CAAC,SAAS;CACtR,mBAAmBA,IAAAA,EAAE,OAAO,EAC5B,0BAA0BA,IAAAA,EAAE,QAAQ,CAAC,CAAC,SAAS,wIAAwI,CAAC,CAAC,SAAS,EACpM,CAAC,CAAC,CAAC,SAAS,8DAA8D,CAAC,CAAC,SAAS;AACrF,CAAC;AACD,MAAa,+BAA+BA,IAAAA,EAAE,OAAO;CACnD,OAAOA,IAAAA,EAAE,MAAMA,IAAAA,EAAE,OAAO,CAAC,CAAC,CAAC,SAAS,oDAAoD,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CAC9G,QAAQA,IAAAA,EAAE,KAAK;EAAC;EAAS;EAAW;EAAc;EAAY;CAAS,CAAC,CAAC,CAAC,SAAS,0BAA0B,CAAC,CAAC,SAAS;CACxH,gBAAgBA,IAAAA,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,SAAS,sCAAsC,CAAC,CAAC,SAAS;CAC3F,qBAAqBA,IAAAA,EAAE,QAAQ,CAAC,CAAC,SAAS,mFAAmF,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CACnJ,sBAAsBA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,8DAA8D,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;AAChI,CAAC;
|
|
1
|
+
{"version":3,"file":"single-check.cjs","names":["z","action"],"sources":["../../src/actions/single-check.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const NeverbounceSingleCheckInput = z.object({\n email: z.string().describe(\"Email address to verify\"),\n timeout: z.number().int().describe(\"Timeout in milliseconds for the verification attempt. Network latency not included in timeout calculation. Too low a value causes false negatives (premature timeouts reported as unverifiable); too high a value can stall workflows.\").optional(),\n request_meta_data: z.object({\n leverage_historical_data: z.boolean().describe(\"Disable historical-driven results and force real-time verification when false. Set as 0 in form data to disable historical data usage.\").optional(),\n}).describe(\"Additional request metadata to control verification behavior\").optional(),\n});\nexport const NeverbounceSingleCheckOutput = z.object({\n flags: z.array(z.string()).describe(\"Informational flags discovered during verification\").nullable().optional(),\n result: z.enum([\"valid\", \"invalid\", \"disposable\", \"catchall\", \"unknown\"]).describe(\"Verification result code\").nullable(),\n execution_time: z.number().int().describe(\"Time taken to verify in milliseconds\").nullable(),\n historical_response: z.boolean().describe(\"True if the result was based on historical data. May be absent if not applicable.\").nullable().optional(),\n suggested_correction: z.string().describe(\"Suggestion for correcting a common typo in the email address\").nullable().optional(),\n}).passthrough();\n\nexport const neverbounceSingleCheck = action(\"NEVERBOUNCE_SINGLE_CHECK\", {\n slug: \"neverbounce-single-check\",\n name: \"NeverBounce Single Check\",\n description: \"Tool to verify a single email address and gather additional information. Use when you need real-time validation at the point of entry.\",\n input: NeverbounceSingleCheckInput,\n output: NeverbounceSingleCheckOutput,\n});\n"],"mappings":";;;AAIA,MAAa,8BAA8BA,IAAAA,EAAE,OAAO;CAClD,OAAOA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,yBAAyB;CACpD,SAASA,IAAAA,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,SAAS,wOAAwO,CAAC,CAAC,SAAS;CACtR,mBAAmBA,IAAAA,EAAE,OAAO,EAC5B,0BAA0BA,IAAAA,EAAE,QAAQ,CAAC,CAAC,SAAS,wIAAwI,CAAC,CAAC,SAAS,EACpM,CAAC,CAAC,CAAC,SAAS,8DAA8D,CAAC,CAAC,SAAS;AACrF,CAAC;AACD,MAAa,+BAA+BA,IAAAA,EAAE,OAAO;CACnD,OAAOA,IAAAA,EAAE,MAAMA,IAAAA,EAAE,OAAO,CAAC,CAAC,CAAC,SAAS,oDAAoD,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CAC9G,QAAQA,IAAAA,EAAE,KAAK;EAAC;EAAS;EAAW;EAAc;EAAY;CAAS,CAAC,CAAC,CAAC,SAAS,0BAA0B,CAAC,CAAC,SAAS;CACxH,gBAAgBA,IAAAA,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,SAAS,sCAAsC,CAAC,CAAC,SAAS;CAC3F,qBAAqBA,IAAAA,EAAE,QAAQ,CAAC,CAAC,SAAS,mFAAmF,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CACnJ,sBAAsBA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,8DAA8D,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;AAChI,CAAC,CAAC,CAAC,YAAY;AAEf,MAAa,yBAAyBC,eAAAA,OAAO,4BAA4B;CACvE,MAAM;CACN,MAAM;CACN,aAAa;CACb,OAAO;CACP,QAAQ;AACV,CAAC"}
|
|
@@ -20,7 +20,7 @@ declare const NeverbounceSingleCheckOutput: z.ZodObject<{
|
|
|
20
20
|
execution_time: z.ZodNullable<z.ZodNumber>;
|
|
21
21
|
historical_response: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
|
|
22
22
|
suggested_correction: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
23
|
-
}, z.core.$
|
|
23
|
+
}, z.core.$loose>;
|
|
24
24
|
declare const neverbounceSingleCheck: import("@keystrokehq/action").WorkflowActionDefinition<{
|
|
25
25
|
email: string;
|
|
26
26
|
timeout?: number | undefined;
|
|
@@ -20,7 +20,7 @@ declare const NeverbounceSingleCheckOutput: z.ZodObject<{
|
|
|
20
20
|
execution_time: z.ZodNullable<z.ZodNumber>;
|
|
21
21
|
historical_response: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
|
|
22
22
|
suggested_correction: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
23
|
-
}, z.core.$
|
|
23
|
+
}, z.core.$loose>;
|
|
24
24
|
declare const neverbounceSingleCheck: import("@keystrokehq/action").WorkflowActionDefinition<{
|
|
25
25
|
email: string;
|
|
26
26
|
timeout?: number | undefined;
|
|
@@ -21,7 +21,7 @@ const neverbounceSingleCheck = action("NEVERBOUNCE_SINGLE_CHECK", {
|
|
|
21
21
|
execution_time: z.number().int().describe("Time taken to verify in milliseconds").nullable(),
|
|
22
22
|
historical_response: z.boolean().describe("True if the result was based on historical data. May be absent if not applicable.").nullable().optional(),
|
|
23
23
|
suggested_correction: z.string().describe("Suggestion for correcting a common typo in the email address").nullable().optional()
|
|
24
|
-
})
|
|
24
|
+
}).passthrough()
|
|
25
25
|
});
|
|
26
26
|
//#endregion
|
|
27
27
|
export { neverbounceSingleCheck };
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"single-check.mjs","names":[],"sources":["../../src/actions/single-check.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const NeverbounceSingleCheckInput = z.object({\n email: z.string().describe(\"Email address to verify\"),\n timeout: z.number().int().describe(\"Timeout in milliseconds for the verification attempt. Network latency not included in timeout calculation. Too low a value causes false negatives (premature timeouts reported as unverifiable); too high a value can stall workflows.\").optional(),\n request_meta_data: z.object({\n leverage_historical_data: z.boolean().describe(\"Disable historical-driven results and force real-time verification when false. Set as 0 in form data to disable historical data usage.\").optional(),\n}).describe(\"Additional request metadata to control verification behavior\").optional(),\n});\nexport const NeverbounceSingleCheckOutput = z.object({\n flags: z.array(z.string()).describe(\"Informational flags discovered during verification\").nullable().optional(),\n result: z.enum([\"valid\", \"invalid\", \"disposable\", \"catchall\", \"unknown\"]).describe(\"Verification result code\").nullable(),\n execution_time: z.number().int().describe(\"Time taken to verify in milliseconds\").nullable(),\n historical_response: z.boolean().describe(\"True if the result was based on historical data. May be absent if not applicable.\").nullable().optional(),\n suggested_correction: z.string().describe(\"Suggestion for correcting a common typo in the email address\").nullable().optional(),\n});\n\nexport const neverbounceSingleCheck = action(\"NEVERBOUNCE_SINGLE_CHECK\", {\n slug: \"neverbounce-single-check\",\n name: \"NeverBounce Single Check\",\n description: \"Tool to verify a single email address and gather additional information. Use when you need real-time validation at the point of entry.\",\n input: NeverbounceSingleCheckInput,\n output: NeverbounceSingleCheckOutput,\n});\n"],"mappings":";;AAmBA,MAAa,yBAAyB,OAAO,4BAA4B;CACvE,MAAM;CACN,MAAM;CACN,aAAa;CACb,OAnByC,EAAE,OAAO;EAClD,OAAO,EAAE,OAAO,CAAC,CAAC,SAAS,yBAAyB;EACpD,SAAS,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,SAAS,wOAAwO,CAAC,CAAC,SAAS;EACtR,mBAAmB,EAAE,OAAO,EAC5B,0BAA0B,EAAE,QAAQ,CAAC,CAAC,SAAS,wIAAwI,CAAC,CAAC,SAAS,EACpM,CAAC,CAAC,CAAC,SAAS,8DAA8D,CAAC,CAAC,SAAS;CACrF,CAaS;CACP,QAb0C,EAAE,OAAO;EACnD,OAAO,EAAE,MAAM,EAAE,OAAO,CAAC,CAAC,CAAC,SAAS,oDAAoD,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;EAC9G,QAAQ,EAAE,KAAK;GAAC;GAAS;GAAW;GAAc;GAAY;EAAS,CAAC,CAAC,CAAC,SAAS,0BAA0B,CAAC,CAAC,SAAS;EACxH,gBAAgB,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,SAAS,sCAAsC,CAAC,CAAC,SAAS;EAC3F,qBAAqB,EAAE,QAAQ,CAAC,CAAC,SAAS,mFAAmF,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;EACnJ,sBAAsB,EAAE,OAAO,CAAC,CAAC,SAAS,8DAA8D,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CAChI,
|
|
1
|
+
{"version":3,"file":"single-check.mjs","names":[],"sources":["../../src/actions/single-check.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const NeverbounceSingleCheckInput = z.object({\n email: z.string().describe(\"Email address to verify\"),\n timeout: z.number().int().describe(\"Timeout in milliseconds for the verification attempt. Network latency not included in timeout calculation. Too low a value causes false negatives (premature timeouts reported as unverifiable); too high a value can stall workflows.\").optional(),\n request_meta_data: z.object({\n leverage_historical_data: z.boolean().describe(\"Disable historical-driven results and force real-time verification when false. Set as 0 in form data to disable historical data usage.\").optional(),\n}).describe(\"Additional request metadata to control verification behavior\").optional(),\n});\nexport const NeverbounceSingleCheckOutput = z.object({\n flags: z.array(z.string()).describe(\"Informational flags discovered during verification\").nullable().optional(),\n result: z.enum([\"valid\", \"invalid\", \"disposable\", \"catchall\", \"unknown\"]).describe(\"Verification result code\").nullable(),\n execution_time: z.number().int().describe(\"Time taken to verify in milliseconds\").nullable(),\n historical_response: z.boolean().describe(\"True if the result was based on historical data. May be absent if not applicable.\").nullable().optional(),\n suggested_correction: z.string().describe(\"Suggestion for correcting a common typo in the email address\").nullable().optional(),\n}).passthrough();\n\nexport const neverbounceSingleCheck = action(\"NEVERBOUNCE_SINGLE_CHECK\", {\n slug: \"neverbounce-single-check\",\n name: \"NeverBounce Single Check\",\n description: \"Tool to verify a single email address and gather additional information. Use when you need real-time validation at the point of entry.\",\n input: NeverbounceSingleCheckInput,\n output: NeverbounceSingleCheckOutput,\n});\n"],"mappings":";;AAmBA,MAAa,yBAAyB,OAAO,4BAA4B;CACvE,MAAM;CACN,MAAM;CACN,aAAa;CACb,OAnByC,EAAE,OAAO;EAClD,OAAO,EAAE,OAAO,CAAC,CAAC,SAAS,yBAAyB;EACpD,SAAS,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,SAAS,wOAAwO,CAAC,CAAC,SAAS;EACtR,mBAAmB,EAAE,OAAO,EAC5B,0BAA0B,EAAE,QAAQ,CAAC,CAAC,SAAS,wIAAwI,CAAC,CAAC,SAAS,EACpM,CAAC,CAAC,CAAC,SAAS,8DAA8D,CAAC,CAAC,SAAS;CACrF,CAaS;CACP,QAb0C,EAAE,OAAO;EACnD,OAAO,EAAE,MAAM,EAAE,OAAO,CAAC,CAAC,CAAC,SAAS,oDAAoD,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;EAC9G,QAAQ,EAAE,KAAK;GAAC;GAAS;GAAW;GAAc;GAAY;EAAS,CAAC,CAAC,CAAC,SAAS,0BAA0B,CAAC,CAAC,SAAS;EACxH,gBAAgB,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,SAAS,sCAAsC,CAAC,CAAC,SAAS;EAC3F,qBAAqB,EAAE,QAAQ,CAAC,CAAC,SAAS,mFAAmF,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;EACnJ,sBAAsB,EAAE,OAAO,CAAC,CAAC,SAAS,8DAA8D,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CAChI,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/widget-send-event.ts
|
|
4
4
|
const NeverbounceWidgetSendEventInput = zod.z.object({ event: zod.z.enum(["form.load", "form.completion"]).describe("The widget event to send. Supported values: 'form.load' (when the form appears) or 'form.completion' (when the form is successfully submitted).") }).describe("Request parameters for sending widget form events via the JS widget API.");
|
|
5
|
-
const NeverbounceWidgetSendEventOutput = zod.z.object({ js: zod.z.string().describe("JavaScript snippet that invokes the NeverBounce widget API to record the event.").nullable() }).describe("Response schema for sending widget form events via the JS widget API.");
|
|
5
|
+
const NeverbounceWidgetSendEventOutput = zod.z.object({ js: zod.z.string().describe("JavaScript snippet that invokes the NeverBounce widget API to record the event.").nullable() }).passthrough().describe("Response schema for sending widget form events via the JS widget API.");
|
|
6
6
|
const neverbounceWidgetSendEvent = require_action.action("NEVERBOUNCE_WIDGET_SEND_EVENT", {
|
|
7
7
|
slug: "neverbounce-widget-send-event",
|
|
8
8
|
name: "JS Widget Send Event",
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"widget-send-event.cjs","names":["z","action"],"sources":["../../src/actions/widget-send-event.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const NeverbounceWidgetSendEventInput = z.object({\n event: z.enum([\"form.load\", \"form.completion\"]).describe(\"The widget event to send. Supported values: 'form.load' (when the form appears) or 'form.completion' (when the form is successfully submitted).\"),\n}).describe(\"Request parameters for sending widget form events via the JS widget API.\");\nexport const NeverbounceWidgetSendEventOutput = z.object({\n js: z.string().describe(\"JavaScript snippet that invokes the NeverBounce widget API to record the event.\").nullable(),\n}).describe(\"Response schema for sending widget form events via the JS widget API.\");\n\nexport const neverbounceWidgetSendEvent = action(\"NEVERBOUNCE_WIDGET_SEND_EVENT\", {\n slug: \"neverbounce-widget-send-event\",\n name: \"JS Widget Send Event\",\n description: \"Tool to send widget form events via the JS widget API. Use when reporting form.load or form.completion events after user interactions with your form.\",\n input: NeverbounceWidgetSendEventInput,\n output: NeverbounceWidgetSendEventOutput,\n});\n"],"mappings":";;;AAIA,MAAa,kCAAkCA,IAAAA,EAAE,OAAO,EACtD,OAAOA,IAAAA,EAAE,KAAK,CAAC,aAAa,iBAAiB,CAAC,CAAC,CAAC,SAAS,iJAAiJ,EAC5M,CAAC,CAAC,CAAC,SAAS,0EAA0E;AACtF,MAAa,mCAAmCA,IAAAA,EAAE,OAAO,EACvD,IAAIA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,iFAAiF,CAAC,CAAC,SAAS,EACtH,CAAC,CAAC,CAAC,SAAS,uEAAuE;
|
|
1
|
+
{"version":3,"file":"widget-send-event.cjs","names":["z","action"],"sources":["../../src/actions/widget-send-event.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const NeverbounceWidgetSendEventInput = z.object({\n event: z.enum([\"form.load\", \"form.completion\"]).describe(\"The widget event to send. Supported values: 'form.load' (when the form appears) or 'form.completion' (when the form is successfully submitted).\"),\n}).describe(\"Request parameters for sending widget form events via the JS widget API.\");\nexport const NeverbounceWidgetSendEventOutput = z.object({\n js: z.string().describe(\"JavaScript snippet that invokes the NeverBounce widget API to record the event.\").nullable(),\n}).passthrough().describe(\"Response schema for sending widget form events via the JS widget API.\");\n\nexport const neverbounceWidgetSendEvent = action(\"NEVERBOUNCE_WIDGET_SEND_EVENT\", {\n slug: \"neverbounce-widget-send-event\",\n name: \"JS Widget Send Event\",\n description: \"Tool to send widget form events via the JS widget API. Use when reporting form.load or form.completion events after user interactions with your form.\",\n input: NeverbounceWidgetSendEventInput,\n output: NeverbounceWidgetSendEventOutput,\n});\n"],"mappings":";;;AAIA,MAAa,kCAAkCA,IAAAA,EAAE,OAAO,EACtD,OAAOA,IAAAA,EAAE,KAAK,CAAC,aAAa,iBAAiB,CAAC,CAAC,CAAC,SAAS,iJAAiJ,EAC5M,CAAC,CAAC,CAAC,SAAS,0EAA0E;AACtF,MAAa,mCAAmCA,IAAAA,EAAE,OAAO,EACvD,IAAIA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,iFAAiF,CAAC,CAAC,SAAS,EACtH,CAAC,CAAC,CAAC,YAAY,CAAC,CAAC,SAAS,uEAAuE;AAEjG,MAAa,6BAA6BC,eAAAA,OAAO,iCAAiC;CAChF,MAAM;CACN,MAAM;CACN,aAAa;CACb,OAAO;CACP,QAAQ;AACV,CAAC"}
|
|
@@ -9,7 +9,7 @@ declare const NeverbounceWidgetSendEventInput: z.ZodObject<{
|
|
|
9
9
|
}, z.core.$strip>;
|
|
10
10
|
declare const NeverbounceWidgetSendEventOutput: z.ZodObject<{
|
|
11
11
|
js: z.ZodNullable<z.ZodString>;
|
|
12
|
-
}, z.core.$
|
|
12
|
+
}, z.core.$loose>;
|
|
13
13
|
declare const neverbounceWidgetSendEvent: import("@keystrokehq/action").WorkflowActionDefinition<{
|
|
14
14
|
event: "form.load" | "form.completion";
|
|
15
15
|
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
|
|
@@ -9,7 +9,7 @@ declare const NeverbounceWidgetSendEventInput: z.ZodObject<{
|
|
|
9
9
|
}, z.core.$strip>;
|
|
10
10
|
declare const NeverbounceWidgetSendEventOutput: z.ZodObject<{
|
|
11
11
|
js: z.ZodNullable<z.ZodString>;
|
|
12
|
-
}, z.core.$
|
|
12
|
+
}, z.core.$loose>;
|
|
13
13
|
declare const neverbounceWidgetSendEvent: import("@keystrokehq/action").WorkflowActionDefinition<{
|
|
14
14
|
event: "form.load" | "form.completion";
|
|
15
15
|
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
|
|
@@ -5,7 +5,7 @@ const neverbounceWidgetSendEvent = action("NEVERBOUNCE_WIDGET_SEND_EVENT", {
|
|
|
5
5
|
name: "JS Widget Send Event",
|
|
6
6
|
description: "Tool to send widget form events via the JS widget API. Use when reporting form.load or form.completion events after user interactions with your form.",
|
|
7
7
|
input: z.object({ event: z.enum(["form.load", "form.completion"]).describe("The widget event to send. Supported values: 'form.load' (when the form appears) or 'form.completion' (when the form is successfully submitted).") }).describe("Request parameters for sending widget form events via the JS widget API."),
|
|
8
|
-
output: z.object({ js: z.string().describe("JavaScript snippet that invokes the NeverBounce widget API to record the event.").nullable() }).describe("Response schema for sending widget form events via the JS widget API.")
|
|
8
|
+
output: z.object({ js: z.string().describe("JavaScript snippet that invokes the NeverBounce widget API to record the event.").nullable() }).passthrough().describe("Response schema for sending widget form events via the JS widget API.")
|
|
9
9
|
});
|
|
10
10
|
//#endregion
|
|
11
11
|
export { neverbounceWidgetSendEvent };
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"widget-send-event.mjs","names":[],"sources":["../../src/actions/widget-send-event.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const NeverbounceWidgetSendEventInput = z.object({\n event: z.enum([\"form.load\", \"form.completion\"]).describe(\"The widget event to send. Supported values: 'form.load' (when the form appears) or 'form.completion' (when the form is successfully submitted).\"),\n}).describe(\"Request parameters for sending widget form events via the JS widget API.\");\nexport const NeverbounceWidgetSendEventOutput = z.object({\n js: z.string().describe(\"JavaScript snippet that invokes the NeverBounce widget API to record the event.\").nullable(),\n}).describe(\"Response schema for sending widget form events via the JS widget API.\");\n\nexport const neverbounceWidgetSendEvent = action(\"NEVERBOUNCE_WIDGET_SEND_EVENT\", {\n slug: \"neverbounce-widget-send-event\",\n name: \"JS Widget Send Event\",\n description: \"Tool to send widget form events via the JS widget API. Use when reporting form.load or form.completion events after user interactions with your form.\",\n input: NeverbounceWidgetSendEventInput,\n output: NeverbounceWidgetSendEventOutput,\n});\n"],"mappings":";;AAWA,MAAa,6BAA6B,OAAO,iCAAiC;CAChF,MAAM;CACN,MAAM;CACN,aAAa;CACb,OAX6C,EAAE,OAAO,EACtD,OAAO,EAAE,KAAK,CAAC,aAAa,iBAAiB,CAAC,CAAC,CAAC,SAAS,iJAAiJ,EAC5M,CAAC,CAAC,CAAC,SAAS,0EASH;CACP,QAT8C,EAAE,OAAO,EACvD,IAAI,EAAE,OAAO,CAAC,CAAC,SAAS,iFAAiF,CAAC,CAAC,SAAS,EACtH,CAAC,CAAC,CAAC,SAAS,
|
|
1
|
+
{"version":3,"file":"widget-send-event.mjs","names":[],"sources":["../../src/actions/widget-send-event.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const NeverbounceWidgetSendEventInput = z.object({\n event: z.enum([\"form.load\", \"form.completion\"]).describe(\"The widget event to send. Supported values: 'form.load' (when the form appears) or 'form.completion' (when the form is successfully submitted).\"),\n}).describe(\"Request parameters for sending widget form events via the JS widget API.\");\nexport const NeverbounceWidgetSendEventOutput = z.object({\n js: z.string().describe(\"JavaScript snippet that invokes the NeverBounce widget API to record the event.\").nullable(),\n}).passthrough().describe(\"Response schema for sending widget form events via the JS widget API.\");\n\nexport const neverbounceWidgetSendEvent = action(\"NEVERBOUNCE_WIDGET_SEND_EVENT\", {\n slug: \"neverbounce-widget-send-event\",\n name: \"JS Widget Send Event\",\n description: \"Tool to send widget form events via the JS widget API. Use when reporting form.load or form.completion events after user interactions with your form.\",\n input: NeverbounceWidgetSendEventInput,\n output: NeverbounceWidgetSendEventOutput,\n});\n"],"mappings":";;AAWA,MAAa,6BAA6B,OAAO,iCAAiC;CAChF,MAAM;CACN,MAAM;CACN,aAAa;CACb,OAX6C,EAAE,OAAO,EACtD,OAAO,EAAE,KAAK,CAAC,aAAa,iBAAiB,CAAC,CAAC,CAAC,SAAS,iJAAiJ,EAC5M,CAAC,CAAC,CAAC,SAAS,0EASH;CACP,QAT8C,EAAE,OAAO,EACvD,IAAI,EAAE,OAAO,CAAC,CAAC,SAAS,iFAAiF,CAAC,CAAC,SAAS,EACtH,CAAC,CAAC,CAAC,YAAY,CAAC,CAAC,SAAS,uEAOhB;AACV,CAAC"}
|
package/dist/catalog.cjs
CHANGED
|
@@ -8,7 +8,7 @@ const neverbounceCatalog = {
|
|
|
8
8
|
"logo": "https://logos.composio.dev/api/neverbounce",
|
|
9
9
|
"authKind": "keystroke",
|
|
10
10
|
"oauthScopes": [],
|
|
11
|
-
"credentialFields": { "
|
|
11
|
+
"credentialFields": { "generic_api_key": {
|
|
12
12
|
"label": "NeverBounce API Key",
|
|
13
13
|
"secret": true,
|
|
14
14
|
"description": "The API key used to authenticate requests to the NeverBounce API."
|
package/dist/catalog.cjs.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"catalog.cjs","names":[],"sources":["../src/catalog.ts"],"sourcesContent":["/** Generated — kept in sync with src/app.ts. */\nexport const neverbounceCatalog = {\n \"slug\": \"neverbounce\",\n \"name\": \"NeverBounce\",\n \"description\": \"NeverBounce provides email verification services to ensure the validity of email addresses, enhancing deliverability and reducing bounce rates.\",\n \"category\": \"Email\",\n \"logo\": \"https://logos.composio.dev/api/neverbounce\",\n \"authKind\": \"keystroke\",\n \"oauthScopes\": [],\n \"credentialFields\": {\n \"
|
|
1
|
+
{"version":3,"file":"catalog.cjs","names":[],"sources":["../src/catalog.ts"],"sourcesContent":["/** Generated — kept in sync with src/app.ts. */\nexport const neverbounceCatalog = {\n \"slug\": \"neverbounce\",\n \"name\": \"NeverBounce\",\n \"description\": \"NeverBounce provides email verification services to ensure the validity of email addresses, enhancing deliverability and reducing bounce rates.\",\n \"category\": \"Email\",\n \"logo\": \"https://logos.composio.dev/api/neverbounce\",\n \"authKind\": \"keystroke\",\n \"oauthScopes\": [],\n \"credentialFields\": {\n \"generic_api_key\": {\n \"label\": \"NeverBounce API Key\",\n \"secret\": true,\n \"description\": \"The API key used to authenticate requests to the NeverBounce API.\"\n }\n },\n \"credentialScheme\": \"API_KEY\"\n} as const;\n"],"mappings":";;AACA,MAAa,qBAAqB;CAChC,QAAQ;CACR,QAAQ;CACR,eAAe;CACf,YAAY;CACZ,QAAQ;CACR,YAAY;CACZ,eAAe,CAAC;CAChB,oBAAoB,EAClB,mBAAmB;EACjB,SAAS;EACT,UAAU;EACV,eAAe;CACjB,EACF;CACA,oBAAoB;AACtB"}
|
package/dist/catalog.d.cts
CHANGED
|
@@ -9,7 +9,7 @@ declare const neverbounceCatalog: {
|
|
|
9
9
|
readonly authKind: "keystroke";
|
|
10
10
|
readonly oauthScopes: readonly [];
|
|
11
11
|
readonly credentialFields: {
|
|
12
|
-
readonly
|
|
12
|
+
readonly generic_api_key: {
|
|
13
13
|
readonly label: "NeverBounce API Key";
|
|
14
14
|
readonly secret: true;
|
|
15
15
|
readonly description: "The API key used to authenticate requests to the NeverBounce API.";
|
package/dist/catalog.d.mts
CHANGED
|
@@ -9,7 +9,7 @@ declare const neverbounceCatalog: {
|
|
|
9
9
|
readonly authKind: "keystroke";
|
|
10
10
|
readonly oauthScopes: readonly [];
|
|
11
11
|
readonly credentialFields: {
|
|
12
|
-
readonly
|
|
12
|
+
readonly generic_api_key: {
|
|
13
13
|
readonly label: "NeverBounce API Key";
|
|
14
14
|
readonly secret: true;
|
|
15
15
|
readonly description: "The API key used to authenticate requests to the NeverBounce API.";
|
package/dist/catalog.mjs
CHANGED
|
@@ -8,7 +8,7 @@ const neverbounceCatalog = {
|
|
|
8
8
|
"logo": "https://logos.composio.dev/api/neverbounce",
|
|
9
9
|
"authKind": "keystroke",
|
|
10
10
|
"oauthScopes": [],
|
|
11
|
-
"credentialFields": { "
|
|
11
|
+
"credentialFields": { "generic_api_key": {
|
|
12
12
|
"label": "NeverBounce API Key",
|
|
13
13
|
"secret": true,
|
|
14
14
|
"description": "The API key used to authenticate requests to the NeverBounce API."
|
package/dist/catalog.mjs.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"catalog.mjs","names":[],"sources":["../src/catalog.ts"],"sourcesContent":["/** Generated — kept in sync with src/app.ts. */\nexport const neverbounceCatalog = {\n \"slug\": \"neverbounce\",\n \"name\": \"NeverBounce\",\n \"description\": \"NeverBounce provides email verification services to ensure the validity of email addresses, enhancing deliverability and reducing bounce rates.\",\n \"category\": \"Email\",\n \"logo\": \"https://logos.composio.dev/api/neverbounce\",\n \"authKind\": \"keystroke\",\n \"oauthScopes\": [],\n \"credentialFields\": {\n \"
|
|
1
|
+
{"version":3,"file":"catalog.mjs","names":[],"sources":["../src/catalog.ts"],"sourcesContent":["/** Generated — kept in sync with src/app.ts. */\nexport const neverbounceCatalog = {\n \"slug\": \"neverbounce\",\n \"name\": \"NeverBounce\",\n \"description\": \"NeverBounce provides email verification services to ensure the validity of email addresses, enhancing deliverability and reducing bounce rates.\",\n \"category\": \"Email\",\n \"logo\": \"https://logos.composio.dev/api/neverbounce\",\n \"authKind\": \"keystroke\",\n \"oauthScopes\": [],\n \"credentialFields\": {\n \"generic_api_key\": {\n \"label\": \"NeverBounce API Key\",\n \"secret\": true,\n \"description\": \"The API key used to authenticate requests to the NeverBounce API.\"\n }\n },\n \"credentialScheme\": \"API_KEY\"\n} as const;\n"],"mappings":";;AACA,MAAa,qBAAqB;CAChC,QAAQ;CACR,QAAQ;CACR,eAAe;CACf,YAAY;CACZ,QAAQ;CACR,YAAY;CACZ,eAAe,CAAC;CAChB,oBAAoB,EAClB,mBAAmB;EACjB,SAAS;EACT,UAAU;EACV,eAAe;CACjB,EACF;CACA,oBAAoB;AACtB"}
|