@keystrokehq/screenshot_fyi 0.1.0 → 0.1.2
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/action.cjs.map +1 -1
- package/dist/action.mjs.map +1 -1
- package/dist/actions/take-screenshot.cjs +2 -2
- package/dist/actions/take-screenshot.cjs.map +1 -1
- package/dist/actions/take-screenshot.d.cts +26 -3
- package/dist/actions/take-screenshot.d.cts.map +1 -1
- package/dist/actions/take-screenshot.d.mts +26 -3
- package/dist/actions/take-screenshot.d.mts.map +1 -1
- package/dist/actions/take-screenshot.mjs +2 -2
- package/dist/actions/take-screenshot.mjs.map +1 -1
- package/dist/catalog.cjs +7 -1
- package/dist/catalog.cjs.map +1 -1
- package/dist/catalog.d.cts +8 -0
- package/dist/catalog.d.mts +8 -0
- package/dist/catalog.mjs +7 -1
- package/dist/catalog.mjs.map +1 -1
- package/package.json +2 -2
package/dist/action.cjs.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"action.cjs","names":["screenshotFyi","executeScreenshotFyiTool"],"sources":["../src/action.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { screenshotFyi } from \"./app\";\nimport { executeScreenshotFyiTool } from \"./execute\";\n\n/** Bind one gateway tool to a typed app action; the call's output is parsed against `def.output`. */\nexport function action(\n tool: string,\n def: {\n slug: string;\n name: string;\n description: string;\n input:
|
|
1
|
+
{"version":3,"file":"action.cjs","names":["screenshotFyi","executeScreenshotFyiTool"],"sources":["../src/action.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { screenshotFyi } from \"./app\";\nimport { executeScreenshotFyiTool } from \"./execute\";\n\n/** Bind one gateway tool to a typed app action; the call's output is parsed against `def.output`. */\nexport function action<TInput extends z.ZodType>(\n tool: string,\n def: {\n slug: string;\n name: string;\n description: string;\n input: TInput;\n output: z.ZodType;\n },\n) {\n return screenshotFyi.action({\n slug: def.slug,\n name: def.name,\n description: def.description,\n input: def.input,\n output: def.output as z.ZodTypeAny,\n async run(input) {\n return def.output.parse(await executeScreenshotFyiTool(tool, input as Record<string, unknown>));\n },\n });\n}\n"],"mappings":";;;;;AAMA,SAAgB,OACd,MACA,KAOA;CACA,OAAOA,YAAAA,cAAc,OAAO;EAC1B,MAAM,IAAI;EACV,MAAM,IAAI;EACV,aAAa,IAAI;EACjB,OAAO,IAAI;EACX,QAAQ,IAAI;EACZ,MAAM,IAAI,OAAO;GACf,OAAO,IAAI,OAAO,MAAM,MAAMC,gBAAAA,yBAAyB,MAAM,KAAgC,CAAC;EAChG;CACF,CAAC;AACH"}
|
package/dist/action.mjs.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"action.mjs","names":[],"sources":["../src/action.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { screenshotFyi } from \"./app\";\nimport { executeScreenshotFyiTool } from \"./execute\";\n\n/** Bind one gateway tool to a typed app action; the call's output is parsed against `def.output`. */\nexport function action(\n tool: string,\n def: {\n slug: string;\n name: string;\n description: string;\n input:
|
|
1
|
+
{"version":3,"file":"action.mjs","names":[],"sources":["../src/action.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { screenshotFyi } from \"./app\";\nimport { executeScreenshotFyiTool } from \"./execute\";\n\n/** Bind one gateway tool to a typed app action; the call's output is parsed against `def.output`. */\nexport function action<TInput extends z.ZodType>(\n tool: string,\n def: {\n slug: string;\n name: string;\n description: string;\n input: TInput;\n output: z.ZodType;\n },\n) {\n return screenshotFyi.action({\n slug: def.slug,\n name: def.name,\n description: def.description,\n input: def.input,\n output: def.output as z.ZodTypeAny,\n async run(input) {\n return def.output.parse(await executeScreenshotFyiTool(tool, input as Record<string, unknown>));\n },\n });\n}\n"],"mappings":";;;;;AAMA,SAAgB,OACd,MACA,KAOA;CACA,OAAO,cAAc,OAAO;EAC1B,MAAM,IAAI;EACV,MAAM,IAAI;EACV,aAAa,IAAI;EACjB,OAAO,IAAI;EACX,QAAQ,IAAI;EACZ,MAAM,IAAI,OAAO;GACf,OAAO,IAAI,OAAO,MAAM,MAAM,yBAAyB,MAAM,KAAgC,CAAC;EAChG;CACF,CAAC;AACH"}
|
|
@@ -15,8 +15,8 @@ const ScreenshotFyiTakeScreenshotInput = zod.z.object({
|
|
|
15
15
|
disable_cookie_banners: zod.z.boolean().default(true).describe("Automatically remove cookie consent banners from the screenshot.").optional()
|
|
16
16
|
}).describe("Request model for taking a screenshot via Screenshot FYI.");
|
|
17
17
|
const ScreenshotFyiTakeScreenshotOutput = zod.z.object({
|
|
18
|
-
target_url: zod.z.string().describe("The URL that was captured."),
|
|
19
|
-
screenshot_url: zod.z.string().describe("The presigned URL to download the screenshot.")
|
|
18
|
+
target_url: zod.z.string().describe("The URL that was captured.").nullable(),
|
|
19
|
+
screenshot_url: zod.z.string().describe("The presigned URL to download the screenshot.").nullable()
|
|
20
20
|
}).describe("Response model for a screenshot request from Screenshot FYI.");
|
|
21
21
|
const screenshotFyiTakeScreenshot = require_action.action("SCREENSHOT_FYI_TAKE_SCREENSHOT", {
|
|
22
22
|
slug: "screenshot_fyi-take-screenshot",
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"take-screenshot.cjs","names":["z","action"],"sources":["../../src/actions/take-screenshot.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const ScreenshotFyiTakeScreenshotInput
|
|
1
|
+
{"version":3,"file":"take-screenshot.cjs","names":["z","action"],"sources":["../../src/actions/take-screenshot.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const ScreenshotFyiTakeScreenshotInput = z.object({\n url: z.string().describe(\"The URL of the web page to take a screenshot of.\"),\n format: z.enum([\"png\", \"jpg\", \"jpeg\"]).default(\"jpg\").describe(\"Output image format.\").optional(),\n dark_mode: z.boolean().default(false).describe(\"Apply dark mode styling to the captured page.\").optional(),\n full_page: z.boolean().default(false).describe(\"Whether to capture the full scrollable page. Long pages can produce very tall images that may exceed downstream display or storage limits.\").optional(),\n viewport_width: z.number().int().default(1440).describe(\"Viewport width in pixels.\").optional(),\n viewport_height: z.number().int().default(900).describe(\"Viewport height in pixels.\").optional(),\n disable_cookie_banners: z.boolean().default(true).describe(\"Automatically remove cookie consent banners from the screenshot.\").optional(),\n}).describe(\"Request model for taking a screenshot via Screenshot FYI.\");\nexport const ScreenshotFyiTakeScreenshotOutput = z.object({\n target_url: z.string().describe(\"The URL that was captured.\").nullable(),\n screenshot_url: z.string().describe(\"The presigned URL to download the screenshot.\").nullable(),\n}).describe(\"Response model for a screenshot request from Screenshot FYI.\");\n\nexport const screenshotFyiTakeScreenshot = action(\"SCREENSHOT_FYI_TAKE_SCREENSHOT\", {\n slug: \"screenshot_fyi-take-screenshot\",\n name: \"Take Screenshot\",\n description: \"Tool to capture a webpage screenshot. Use after specifying the target URL and options. JavaScript-heavy pages may capture before full render; ensure the page is fully loaded prior to capture.\",\n input: ScreenshotFyiTakeScreenshotInput,\n output: ScreenshotFyiTakeScreenshotOutput,\n});\n"],"mappings":";;;AAIA,MAAa,mCAAmCA,IAAAA,EAAE,OAAO;CACvD,KAAKA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,kDAAkD;CAC3E,QAAQA,IAAAA,EAAE,KAAK;EAAC;EAAO;EAAO;CAAM,CAAC,CAAC,CAAC,QAAQ,KAAK,CAAC,CAAC,SAAS,sBAAsB,CAAC,CAAC,SAAS;CAChG,WAAWA,IAAAA,EAAE,QAAQ,CAAC,CAAC,QAAQ,KAAK,CAAC,CAAC,SAAS,+CAA+C,CAAC,CAAC,SAAS;CACzG,WAAWA,IAAAA,EAAE,QAAQ,CAAC,CAAC,QAAQ,KAAK,CAAC,CAAC,SAAS,4IAA4I,CAAC,CAAC,SAAS;CACtM,gBAAgBA,IAAAA,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,QAAQ,IAAI,CAAC,CAAC,SAAS,2BAA2B,CAAC,CAAC,SAAS;CAC9F,iBAAiBA,IAAAA,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,QAAQ,GAAG,CAAC,CAAC,SAAS,4BAA4B,CAAC,CAAC,SAAS;CAC/F,wBAAwBA,IAAAA,EAAE,QAAQ,CAAC,CAAC,QAAQ,IAAI,CAAC,CAAC,SAAS,kEAAkE,CAAC,CAAC,SAAS;AAC1I,CAAC,CAAC,CAAC,SAAS,2DAA2D;AACvE,MAAa,oCAAoCA,IAAAA,EAAE,OAAO;CACxD,YAAYA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,4BAA4B,CAAC,CAAC,SAAS;CACvE,gBAAgBA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,+CAA+C,CAAC,CAAC,SAAS;AAChG,CAAC,CAAC,CAAC,SAAS,8DAA8D;AAE1E,MAAa,8BAA8BC,eAAAA,OAAO,kCAAkC;CAClF,MAAM;CACN,MAAM;CACN,aAAa;CACb,OAAO;CACP,QAAQ;AACV,CAAC"}
|
|
@@ -1,9 +1,32 @@
|
|
|
1
1
|
import { z } from "zod";
|
|
2
2
|
|
|
3
3
|
//#region src/actions/take-screenshot.d.ts
|
|
4
|
-
declare const ScreenshotFyiTakeScreenshotInput: z.
|
|
5
|
-
|
|
6
|
-
|
|
4
|
+
declare const ScreenshotFyiTakeScreenshotInput: z.ZodObject<{
|
|
5
|
+
url: z.ZodString;
|
|
6
|
+
format: z.ZodOptional<z.ZodDefault<z.ZodEnum<{
|
|
7
|
+
png: "png";
|
|
8
|
+
jpg: "jpg";
|
|
9
|
+
jpeg: "jpeg";
|
|
10
|
+
}>>>;
|
|
11
|
+
dark_mode: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
|
12
|
+
full_page: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
|
13
|
+
viewport_width: z.ZodOptional<z.ZodDefault<z.ZodNumber>>;
|
|
14
|
+
viewport_height: z.ZodOptional<z.ZodDefault<z.ZodNumber>>;
|
|
15
|
+
disable_cookie_banners: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
|
16
|
+
}, z.core.$strip>;
|
|
17
|
+
declare const ScreenshotFyiTakeScreenshotOutput: z.ZodObject<{
|
|
18
|
+
target_url: z.ZodNullable<z.ZodString>;
|
|
19
|
+
screenshot_url: z.ZodNullable<z.ZodString>;
|
|
20
|
+
}, z.core.$strip>;
|
|
21
|
+
declare const screenshotFyiTakeScreenshot: import("@keystrokehq/action").WorkflowActionDefinition<{
|
|
22
|
+
url: string;
|
|
23
|
+
format?: "png" | "jpg" | "jpeg" | undefined;
|
|
24
|
+
dark_mode?: boolean | undefined;
|
|
25
|
+
full_page?: boolean | undefined;
|
|
26
|
+
viewport_width?: number | undefined;
|
|
27
|
+
viewport_height?: number | undefined;
|
|
28
|
+
disable_cookie_banners?: boolean | undefined;
|
|
29
|
+
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
|
|
7
30
|
//#endregion
|
|
8
31
|
export { screenshotFyiTakeScreenshot };
|
|
9
32
|
//# sourceMappingURL=take-screenshot.d.cts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"take-screenshot.d.cts","names":[],"sources":["../../src/actions/take-screenshot.ts"],"mappings":";;;cAIa,gCAAA,
|
|
1
|
+
{"version":3,"file":"take-screenshot.d.cts","names":[],"sources":["../../src/actions/take-screenshot.ts"],"mappings":";;;cAIa,gCAAA,EAAgC,CAAA,CAAA,SAAA;;;;;;;;;;;;;cAShC,iCAAA,EAAiC,CAAA,CAAA,SAAA;;;;cAKjC,2BAAA,gCAA2B,wBAAA"}
|
|
@@ -1,9 +1,32 @@
|
|
|
1
1
|
import { z } from "zod";
|
|
2
2
|
|
|
3
3
|
//#region src/actions/take-screenshot.d.ts
|
|
4
|
-
declare const ScreenshotFyiTakeScreenshotInput: z.
|
|
5
|
-
|
|
6
|
-
|
|
4
|
+
declare const ScreenshotFyiTakeScreenshotInput: z.ZodObject<{
|
|
5
|
+
url: z.ZodString;
|
|
6
|
+
format: z.ZodOptional<z.ZodDefault<z.ZodEnum<{
|
|
7
|
+
png: "png";
|
|
8
|
+
jpg: "jpg";
|
|
9
|
+
jpeg: "jpeg";
|
|
10
|
+
}>>>;
|
|
11
|
+
dark_mode: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
|
12
|
+
full_page: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
|
13
|
+
viewport_width: z.ZodOptional<z.ZodDefault<z.ZodNumber>>;
|
|
14
|
+
viewport_height: z.ZodOptional<z.ZodDefault<z.ZodNumber>>;
|
|
15
|
+
disable_cookie_banners: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
|
16
|
+
}, z.core.$strip>;
|
|
17
|
+
declare const ScreenshotFyiTakeScreenshotOutput: z.ZodObject<{
|
|
18
|
+
target_url: z.ZodNullable<z.ZodString>;
|
|
19
|
+
screenshot_url: z.ZodNullable<z.ZodString>;
|
|
20
|
+
}, z.core.$strip>;
|
|
21
|
+
declare const screenshotFyiTakeScreenshot: import("@keystrokehq/action").WorkflowActionDefinition<{
|
|
22
|
+
url: string;
|
|
23
|
+
format?: "png" | "jpg" | "jpeg" | undefined;
|
|
24
|
+
dark_mode?: boolean | undefined;
|
|
25
|
+
full_page?: boolean | undefined;
|
|
26
|
+
viewport_width?: number | undefined;
|
|
27
|
+
viewport_height?: number | undefined;
|
|
28
|
+
disable_cookie_banners?: boolean | undefined;
|
|
29
|
+
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
|
|
7
30
|
//#endregion
|
|
8
31
|
export { screenshotFyiTakeScreenshot };
|
|
9
32
|
//# sourceMappingURL=take-screenshot.d.mts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"take-screenshot.d.mts","names":[],"sources":["../../src/actions/take-screenshot.ts"],"mappings":";;;cAIa,gCAAA,
|
|
1
|
+
{"version":3,"file":"take-screenshot.d.mts","names":[],"sources":["../../src/actions/take-screenshot.ts"],"mappings":";;;cAIa,gCAAA,EAAgC,CAAA,CAAA,SAAA;;;;;;;;;;;;;cAShC,iCAAA,EAAiC,CAAA,CAAA,SAAA;;;;cAKjC,2BAAA,gCAA2B,wBAAA"}
|
|
@@ -18,8 +18,8 @@ const screenshotFyiTakeScreenshot = action("SCREENSHOT_FYI_TAKE_SCREENSHOT", {
|
|
|
18
18
|
disable_cookie_banners: z.boolean().default(true).describe("Automatically remove cookie consent banners from the screenshot.").optional()
|
|
19
19
|
}).describe("Request model for taking a screenshot via Screenshot FYI."),
|
|
20
20
|
output: z.object({
|
|
21
|
-
target_url: z.string().describe("The URL that was captured."),
|
|
22
|
-
screenshot_url: z.string().describe("The presigned URL to download the screenshot.")
|
|
21
|
+
target_url: z.string().describe("The URL that was captured.").nullable(),
|
|
22
|
+
screenshot_url: z.string().describe("The presigned URL to download the screenshot.").nullable()
|
|
23
23
|
}).describe("Response model for a screenshot request from Screenshot FYI.")
|
|
24
24
|
});
|
|
25
25
|
//#endregion
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"take-screenshot.mjs","names":[],"sources":["../../src/actions/take-screenshot.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const ScreenshotFyiTakeScreenshotInput
|
|
1
|
+
{"version":3,"file":"take-screenshot.mjs","names":[],"sources":["../../src/actions/take-screenshot.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const ScreenshotFyiTakeScreenshotInput = z.object({\n url: z.string().describe(\"The URL of the web page to take a screenshot of.\"),\n format: z.enum([\"png\", \"jpg\", \"jpeg\"]).default(\"jpg\").describe(\"Output image format.\").optional(),\n dark_mode: z.boolean().default(false).describe(\"Apply dark mode styling to the captured page.\").optional(),\n full_page: z.boolean().default(false).describe(\"Whether to capture the full scrollable page. Long pages can produce very tall images that may exceed downstream display or storage limits.\").optional(),\n viewport_width: z.number().int().default(1440).describe(\"Viewport width in pixels.\").optional(),\n viewport_height: z.number().int().default(900).describe(\"Viewport height in pixels.\").optional(),\n disable_cookie_banners: z.boolean().default(true).describe(\"Automatically remove cookie consent banners from the screenshot.\").optional(),\n}).describe(\"Request model for taking a screenshot via Screenshot FYI.\");\nexport const ScreenshotFyiTakeScreenshotOutput = z.object({\n target_url: z.string().describe(\"The URL that was captured.\").nullable(),\n screenshot_url: z.string().describe(\"The presigned URL to download the screenshot.\").nullable(),\n}).describe(\"Response model for a screenshot request from Screenshot FYI.\");\n\nexport const screenshotFyiTakeScreenshot = action(\"SCREENSHOT_FYI_TAKE_SCREENSHOT\", {\n slug: \"screenshot_fyi-take-screenshot\",\n name: \"Take Screenshot\",\n description: \"Tool to capture a webpage screenshot. Use after specifying the target URL and options. JavaScript-heavy pages may capture before full render; ensure the page is fully loaded prior to capture.\",\n input: ScreenshotFyiTakeScreenshotInput,\n output: ScreenshotFyiTakeScreenshotOutput,\n});\n"],"mappings":";;AAkBA,MAAa,8BAA8B,OAAO,kCAAkC;CAClF,MAAM;CACN,MAAM;CACN,aAAa;CACb,OAlB8C,EAAE,OAAO;EACvD,KAAK,EAAE,OAAO,CAAC,CAAC,SAAS,kDAAkD;EAC3E,QAAQ,EAAE,KAAK;GAAC;GAAO;GAAO;EAAM,CAAC,CAAC,CAAC,QAAQ,KAAK,CAAC,CAAC,SAAS,sBAAsB,CAAC,CAAC,SAAS;EAChG,WAAW,EAAE,QAAQ,CAAC,CAAC,QAAQ,KAAK,CAAC,CAAC,SAAS,+CAA+C,CAAC,CAAC,SAAS;EACzG,WAAW,EAAE,QAAQ,CAAC,CAAC,QAAQ,KAAK,CAAC,CAAC,SAAS,4IAA4I,CAAC,CAAC,SAAS;EACtM,gBAAgB,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,QAAQ,IAAI,CAAC,CAAC,SAAS,2BAA2B,CAAC,CAAC,SAAS;EAC9F,iBAAiB,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,QAAQ,GAAG,CAAC,CAAC,SAAS,4BAA4B,CAAC,CAAC,SAAS;EAC/F,wBAAwB,EAAE,QAAQ,CAAC,CAAC,QAAQ,IAAI,CAAC,CAAC,SAAS,kEAAkE,CAAC,CAAC,SAAS;CAC1I,CAAC,CAAC,CAAC,SAAS,2DAUH;CACP,QAV+C,EAAE,OAAO;EACxD,YAAY,EAAE,OAAO,CAAC,CAAC,SAAS,4BAA4B,CAAC,CAAC,SAAS;EACvE,gBAAgB,EAAE,OAAO,CAAC,CAAC,SAAS,+CAA+C,CAAC,CAAC,SAAS;CAChG,CAAC,CAAC,CAAC,SAAS,8DAOF;AACV,CAAC"}
|
package/dist/catalog.cjs
CHANGED
|
@@ -7,7 +7,13 @@ const screenshotFyiCatalog = {
|
|
|
7
7
|
"category": "Developer Tools",
|
|
8
8
|
"logo": "https://logos.composio.dev/api/screenshot_fyi",
|
|
9
9
|
"authKind": "keystroke",
|
|
10
|
-
"oauthScopes": []
|
|
10
|
+
"oauthScopes": [],
|
|
11
|
+
"credentialFields": { "generic_key": {
|
|
12
|
+
"label": "Screenshot.fyi API Key",
|
|
13
|
+
"secret": true,
|
|
14
|
+
"description": "Your API key for authenticating requests to the screenshot.fyi API. Passed as the `accessKey` query parameter."
|
|
15
|
+
} },
|
|
16
|
+
"credentialScheme": "API_KEY"
|
|
11
17
|
};
|
|
12
18
|
//#endregion
|
|
13
19
|
exports.screenshotFyiCatalog = screenshotFyiCatalog;
|
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 screenshotFyiCatalog = {\n \"slug\": \"screenshot_fyi\",\n \"name\": \"Screenshot.fyi\",\n \"description\": \"Take stunning, premium quality screenshots of any website with one API call.\",\n \"category\": \"Developer Tools\",\n \"logo\": \"https://logos.composio.dev/api/screenshot_fyi\",\n \"authKind\": \"keystroke\",\n \"oauthScopes\": []\n} as const;\n"],"mappings":";;AACA,MAAa,uBAAuB;CAClC,QAAQ;CACR,QAAQ;CACR,eAAe;CACf,YAAY;CACZ,QAAQ;CACR,YAAY;CACZ,eAAe,CAAC;
|
|
1
|
+
{"version":3,"file":"catalog.cjs","names":[],"sources":["../src/catalog.ts"],"sourcesContent":["/** Generated — kept in sync with src/app.ts. */\nexport const screenshotFyiCatalog = {\n \"slug\": \"screenshot_fyi\",\n \"name\": \"Screenshot.fyi\",\n \"description\": \"Take stunning, premium quality screenshots of any website with one API call.\",\n \"category\": \"Developer Tools\",\n \"logo\": \"https://logos.composio.dev/api/screenshot_fyi\",\n \"authKind\": \"keystroke\",\n \"oauthScopes\": [],\n \"credentialFields\": {\n \"generic_key\": {\n \"label\": \"Screenshot.fyi API Key\",\n \"secret\": true,\n \"description\": \"Your API key for authenticating requests to the screenshot.fyi API. Passed as the `accessKey` query parameter.\"\n }\n },\n \"credentialScheme\": \"API_KEY\"\n} as const;\n"],"mappings":";;AACA,MAAa,uBAAuB;CAClC,QAAQ;CACR,QAAQ;CACR,eAAe;CACf,YAAY;CACZ,QAAQ;CACR,YAAY;CACZ,eAAe,CAAC;CAChB,oBAAoB,EAClB,eAAe;EACb,SAAS;EACT,UAAU;EACV,eAAe;CACjB,EACF;CACA,oBAAoB;AACtB"}
|
package/dist/catalog.d.cts
CHANGED
|
@@ -8,6 +8,14 @@ declare const screenshotFyiCatalog: {
|
|
|
8
8
|
readonly logo: "https://logos.composio.dev/api/screenshot_fyi";
|
|
9
9
|
readonly authKind: "keystroke";
|
|
10
10
|
readonly oauthScopes: readonly [];
|
|
11
|
+
readonly credentialFields: {
|
|
12
|
+
readonly generic_key: {
|
|
13
|
+
readonly label: "Screenshot.fyi API Key";
|
|
14
|
+
readonly secret: true;
|
|
15
|
+
readonly description: "Your API key for authenticating requests to the screenshot.fyi API. Passed as the `accessKey` query parameter.";
|
|
16
|
+
};
|
|
17
|
+
};
|
|
18
|
+
readonly credentialScheme: "API_KEY";
|
|
11
19
|
};
|
|
12
20
|
//#endregion
|
|
13
21
|
export { screenshotFyiCatalog };
|
package/dist/catalog.d.mts
CHANGED
|
@@ -8,6 +8,14 @@ declare const screenshotFyiCatalog: {
|
|
|
8
8
|
readonly logo: "https://logos.composio.dev/api/screenshot_fyi";
|
|
9
9
|
readonly authKind: "keystroke";
|
|
10
10
|
readonly oauthScopes: readonly [];
|
|
11
|
+
readonly credentialFields: {
|
|
12
|
+
readonly generic_key: {
|
|
13
|
+
readonly label: "Screenshot.fyi API Key";
|
|
14
|
+
readonly secret: true;
|
|
15
|
+
readonly description: "Your API key for authenticating requests to the screenshot.fyi API. Passed as the `accessKey` query parameter.";
|
|
16
|
+
};
|
|
17
|
+
};
|
|
18
|
+
readonly credentialScheme: "API_KEY";
|
|
11
19
|
};
|
|
12
20
|
//#endregion
|
|
13
21
|
export { screenshotFyiCatalog };
|
package/dist/catalog.mjs
CHANGED
|
@@ -7,7 +7,13 @@ const screenshotFyiCatalog = {
|
|
|
7
7
|
"category": "Developer Tools",
|
|
8
8
|
"logo": "https://logos.composio.dev/api/screenshot_fyi",
|
|
9
9
|
"authKind": "keystroke",
|
|
10
|
-
"oauthScopes": []
|
|
10
|
+
"oauthScopes": [],
|
|
11
|
+
"credentialFields": { "generic_key": {
|
|
12
|
+
"label": "Screenshot.fyi API Key",
|
|
13
|
+
"secret": true,
|
|
14
|
+
"description": "Your API key for authenticating requests to the screenshot.fyi API. Passed as the `accessKey` query parameter."
|
|
15
|
+
} },
|
|
16
|
+
"credentialScheme": "API_KEY"
|
|
11
17
|
};
|
|
12
18
|
//#endregion
|
|
13
19
|
export { screenshotFyiCatalog };
|
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 screenshotFyiCatalog = {\n \"slug\": \"screenshot_fyi\",\n \"name\": \"Screenshot.fyi\",\n \"description\": \"Take stunning, premium quality screenshots of any website with one API call.\",\n \"category\": \"Developer Tools\",\n \"logo\": \"https://logos.composio.dev/api/screenshot_fyi\",\n \"authKind\": \"keystroke\",\n \"oauthScopes\": []\n} as const;\n"],"mappings":";;AACA,MAAa,uBAAuB;CAClC,QAAQ;CACR,QAAQ;CACR,eAAe;CACf,YAAY;CACZ,QAAQ;CACR,YAAY;CACZ,eAAe,CAAC;
|
|
1
|
+
{"version":3,"file":"catalog.mjs","names":[],"sources":["../src/catalog.ts"],"sourcesContent":["/** Generated — kept in sync with src/app.ts. */\nexport const screenshotFyiCatalog = {\n \"slug\": \"screenshot_fyi\",\n \"name\": \"Screenshot.fyi\",\n \"description\": \"Take stunning, premium quality screenshots of any website with one API call.\",\n \"category\": \"Developer Tools\",\n \"logo\": \"https://logos.composio.dev/api/screenshot_fyi\",\n \"authKind\": \"keystroke\",\n \"oauthScopes\": [],\n \"credentialFields\": {\n \"generic_key\": {\n \"label\": \"Screenshot.fyi API Key\",\n \"secret\": true,\n \"description\": \"Your API key for authenticating requests to the screenshot.fyi API. Passed as the `accessKey` query parameter.\"\n }\n },\n \"credentialScheme\": \"API_KEY\"\n} as const;\n"],"mappings":";;AACA,MAAa,uBAAuB;CAClC,QAAQ;CACR,QAAQ;CACR,eAAe;CACf,YAAY;CACZ,QAAQ;CACR,YAAY;CACZ,eAAe,CAAC;CAChB,oBAAoB,EAClB,eAAe;EACb,SAAS;EACT,UAAU;EACV,eAAe;CACjB,EACF;CACA,oBAAoB;AACtB"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@keystrokehq/screenshot_fyi",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.2",
|
|
4
4
|
"publishConfig": {
|
|
5
5
|
"access": "public",
|
|
6
6
|
"registry": "https://registry.npmjs.org"
|
|
@@ -31,7 +31,7 @@
|
|
|
31
31
|
}
|
|
32
32
|
},
|
|
33
33
|
"peerDependencies": {
|
|
34
|
-
"@keystrokehq/keystroke": "
|
|
34
|
+
"@keystrokehq/keystroke": ">=0.1.4",
|
|
35
35
|
"zod": "^4.4.3"
|
|
36
36
|
},
|
|
37
37
|
"devDependencies": {
|