@keystrokehq/pexels 0.1.0 → 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.
- package/dist/action.cjs.map +1 -1
- package/dist/action.mjs.map +1 -1
- package/dist/actions/collection-media.cjs +35 -35
- package/dist/actions/collection-media.cjs.map +1 -1
- package/dist/actions/collection-media.d.cts +62 -3
- package/dist/actions/collection-media.d.cts.map +1 -1
- package/dist/actions/collection-media.d.mts +62 -3
- package/dist/actions/collection-media.d.mts.map +1 -1
- package/dist/actions/collection-media.mjs +35 -35
- package/dist/actions/collection-media.mjs.map +1 -1
- package/dist/actions/curated-photos.cjs +24 -24
- package/dist/actions/curated-photos.cjs.map +1 -1
- package/dist/actions/curated-photos.d.cts +36 -3
- package/dist/actions/curated-photos.d.cts.map +1 -1
- package/dist/actions/curated-photos.d.mts +36 -3
- package/dist/actions/curated-photos.d.mts.map +1 -1
- package/dist/actions/curated-photos.mjs +24 -24
- package/dist/actions/curated-photos.mjs.map +1 -1
- package/dist/actions/featured-collections.cjs +11 -11
- package/dist/actions/featured-collections.cjs.map +1 -1
- package/dist/actions/featured-collections.d.cts +24 -3
- package/dist/actions/featured-collections.d.cts.map +1 -1
- package/dist/actions/featured-collections.d.mts +24 -3
- package/dist/actions/featured-collections.d.mts.map +1 -1
- package/dist/actions/featured-collections.mjs +11 -11
- package/dist/actions/featured-collections.mjs.map +1 -1
- package/dist/actions/get-photo.cjs +20 -20
- package/dist/actions/get-photo.cjs.map +1 -1
- package/dist/actions/get-photo.d.cts +28 -3
- package/dist/actions/get-photo.d.cts.map +1 -1
- package/dist/actions/get-photo.d.mts +28 -3
- package/dist/actions/get-photo.d.mts.map +1 -1
- package/dist/actions/get-photo.mjs +20 -20
- package/dist/actions/get-photo.mjs.map +1 -1
- package/dist/actions/get-video-by-id.cjs +21 -21
- package/dist/actions/get-video-by-id.cjs.map +1 -1
- package/dist/actions/get-video-by-id.d.cts +34 -3
- package/dist/actions/get-video-by-id.d.cts.map +1 -1
- package/dist/actions/get-video-by-id.d.mts +34 -3
- package/dist/actions/get-video-by-id.d.mts.map +1 -1
- package/dist/actions/get-video-by-id.mjs +21 -21
- package/dist/actions/get-video-by-id.mjs.map +1 -1
- package/dist/actions/my-collections.cjs +11 -11
- package/dist/actions/my-collections.cjs.map +1 -1
- package/dist/actions/my-collections.d.cts +22 -3
- package/dist/actions/my-collections.d.cts.map +1 -1
- package/dist/actions/my-collections.d.mts +22 -3
- package/dist/actions/my-collections.d.mts.map +1 -1
- package/dist/actions/my-collections.mjs +11 -11
- package/dist/actions/my-collections.mjs.map +1 -1
- package/dist/actions/popular-videos.cjs +28 -28
- package/dist/actions/popular-videos.cjs.map +1 -1
- package/dist/actions/popular-videos.d.cts +44 -3
- package/dist/actions/popular-videos.d.cts.map +1 -1
- package/dist/actions/popular-videos.d.mts +44 -3
- package/dist/actions/popular-videos.d.mts.map +1 -1
- package/dist/actions/popular-videos.mjs +28 -28
- package/dist/actions/popular-videos.mjs.map +1 -1
- package/dist/actions/search-photos.cjs +23 -23
- package/dist/actions/search-photos.cjs.map +1 -1
- package/dist/actions/search-photos.d.cts +55 -3
- package/dist/actions/search-photos.d.cts.map +1 -1
- package/dist/actions/search-photos.d.mts +55 -3
- package/dist/actions/search-photos.d.mts.map +1 -1
- package/dist/actions/search-photos.mjs +23 -23
- package/dist/actions/search-photos.mjs.map +1 -1
- package/dist/actions/search-videos.cjs +26 -26
- package/dist/actions/search-videos.cjs.map +1 -1
- package/dist/actions/search-videos.d.cts +58 -3
- package/dist/actions/search-videos.d.cts.map +1 -1
- package/dist/actions/search-videos.d.mts +58 -3
- package/dist/actions/search-videos.d.mts.map +1 -1
- package/dist/actions/search-videos.mjs +26 -26
- package/dist/actions/search-videos.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
|
@@ -19,41 +19,41 @@ const PexelsSearchPhotosInput = z.object({
|
|
|
19
19
|
]).describe("Filter by photo orientation.").optional()
|
|
20
20
|
}).describe("Parameters to search photos on Pexels by query and optional filters.");
|
|
21
21
|
const PexelsSearchPhotos_PhotoSrcSchema = z.object({
|
|
22
|
-
tiny: z.string().describe("Tiny size photo URL"),
|
|
23
|
-
large: z.string().describe("Large size photo URL"),
|
|
24
|
-
small: z.string().describe("Small size photo URL"),
|
|
25
|
-
medium: z.string().describe("Medium size photo URL"),
|
|
26
|
-
large2x: z.string().describe("2x large photo URL"),
|
|
27
|
-
original: z.string().describe("Original size photo URL"),
|
|
28
|
-
portrait: z.string().describe("Portrait orientation photo URL"),
|
|
29
|
-
landscape: z.string().describe("Landscape orientation photo URL")
|
|
30
|
-
});
|
|
22
|
+
tiny: z.string().describe("Tiny size photo URL").nullable(),
|
|
23
|
+
large: z.string().describe("Large size photo URL").nullable(),
|
|
24
|
+
small: z.string().describe("Small size photo URL").nullable(),
|
|
25
|
+
medium: z.string().describe("Medium size photo URL").nullable(),
|
|
26
|
+
large2x: z.string().describe("2x large photo URL").nullable(),
|
|
27
|
+
original: z.string().describe("Original size photo URL").nullable(),
|
|
28
|
+
portrait: z.string().describe("Portrait orientation photo URL").nullable(),
|
|
29
|
+
landscape: z.string().describe("Landscape orientation photo URL").nullable()
|
|
30
|
+
}).passthrough();
|
|
31
31
|
const PexelsSearchPhotos_PhotoSchema = z.object({
|
|
32
|
-
id: z.number().int().describe("Unique identifier for the photo"),
|
|
32
|
+
id: z.number().int().describe("Unique identifier for the photo").nullable(),
|
|
33
33
|
alt: z.string().describe("Alternate text for the photo").nullable().optional(),
|
|
34
34
|
src: PexelsSearchPhotos_PhotoSrcSchema.nullable(),
|
|
35
|
-
url: z.string().describe("URL to the photo's Pexels page"),
|
|
36
|
-
liked: z.boolean().describe("Indicates if the photo is liked by the user"),
|
|
37
|
-
width: z.number().int().describe("Photo width in pixels"),
|
|
38
|
-
height: z.number().int().describe("Photo height in pixels"),
|
|
39
|
-
avg_color: z.string().describe("Average color of the photo (hex code)"),
|
|
40
|
-
photographer: z.string().describe("Photographer name"),
|
|
41
|
-
photographer_id: z.number().int().describe("Photographer's ID"),
|
|
42
|
-
photographer_url: z.string().describe("Photographer's profile URL")
|
|
43
|
-
});
|
|
35
|
+
url: z.string().describe("URL to the photo's Pexels page").nullable(),
|
|
36
|
+
liked: z.boolean().describe("Indicates if the photo is liked by the user").nullable(),
|
|
37
|
+
width: z.number().int().describe("Photo width in pixels").nullable(),
|
|
38
|
+
height: z.number().int().describe("Photo height in pixels").nullable(),
|
|
39
|
+
avg_color: z.string().describe("Average color of the photo (hex code)").nullable(),
|
|
40
|
+
photographer: z.string().describe("Photographer name").nullable(),
|
|
41
|
+
photographer_id: z.number().int().describe("Photographer's ID").nullable(),
|
|
42
|
+
photographer_url: z.string().describe("Photographer's profile URL").nullable()
|
|
43
|
+
}).passthrough();
|
|
44
44
|
const pexelsSearchPhotos = action("PEXELS_SEARCH_PHOTOS", {
|
|
45
45
|
slug: "pexels-search-photos",
|
|
46
46
|
name: "Search Photos",
|
|
47
47
|
description: "Tool to search for photos on Pexels. Use when you need to retrieve photos by a search term and optional filters. Call after confirming you have a valid Pexels API key. Response image URLs are nested under `photo.src.<size>` (e.g., `photo.src.original`, `photo.src.landscape`, `photo.src.medium`); the top-level `url` field is not sufficient for accessing specific image sizes.",
|
|
48
48
|
input: PexelsSearchPhotosInput,
|
|
49
49
|
output: z.object({
|
|
50
|
-
page: z.number().int().describe("Current page number"),
|
|
50
|
+
page: z.number().int().describe("Current page number").nullable(),
|
|
51
51
|
photos: z.array(PexelsSearchPhotos_PhotoSchema).describe("List of photo objects returned"),
|
|
52
|
-
per_page: z.number().int().describe("Number of results per page"),
|
|
52
|
+
per_page: z.number().int().describe("Number of results per page").nullable(),
|
|
53
53
|
next_page: z.string().describe("URL to the next page of results, if available").nullable().optional(),
|
|
54
54
|
prev_page: z.string().describe("URL to the previous page of results, if available").nullable().optional(),
|
|
55
|
-
total_results: z.number().int().describe("Total number of results for this search")
|
|
56
|
-
})
|
|
55
|
+
total_results: z.number().int().describe("Total number of results for this search").nullable()
|
|
56
|
+
}).passthrough()
|
|
57
57
|
});
|
|
58
58
|
//#endregion
|
|
59
59
|
export { pexelsSearchPhotos };
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"search-photos.mjs","names":[],"sources":["../../src/actions/search-photos.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const PexelsSearchPhotosInput
|
|
1
|
+
{"version":3,"file":"search-photos.mjs","names":[],"sources":["../../src/actions/search-photos.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const PexelsSearchPhotosInput = z.object({\n page: z.number().int().default(1).describe(\"Page number of results to retrieve, must be >= 1.\").optional(),\n size: z.enum([\"large\", \"medium\", \"small\"]).describe(\"Filter by photo size.\").optional(),\n color: z.string().describe(\"Filter by photo color. Accepts standard color names or hex codes, e.g., 'red' or '#00ff00'.\").optional(),\n query: z.string().describe(\"Search term to find photos. Use specific, descriptive terms (e.g., 'plated chicken overhead shot' instead of 'chicken') to improve result relevance.\"),\n locale: z.string().describe(\"Language locale for search results, e.g., 'en-US', 'pt-BR'.\").optional(),\n per_page: z.number().int().default(15).describe(\"Number of results per page (1-80). Defaults to 15.\").optional(),\n orientation: z.enum([\"landscape\", \"portrait\", \"square\"]).describe(\"Filter by photo orientation.\").optional(),\n}).describe(\"Parameters to search photos on Pexels by query and optional filters.\");\nconst PexelsSearchPhotos_PhotoSrcSchema = z.object({\n tiny: z.string().describe(\"Tiny size photo URL\").nullable(),\n large: z.string().describe(\"Large size photo URL\").nullable(),\n small: z.string().describe(\"Small size photo URL\").nullable(),\n medium: z.string().describe(\"Medium size photo URL\").nullable(),\n large2x: z.string().describe(\"2x large photo URL\").nullable(),\n original: z.string().describe(\"Original size photo URL\").nullable(),\n portrait: z.string().describe(\"Portrait orientation photo URL\").nullable(),\n landscape: z.string().describe(\"Landscape orientation photo URL\").nullable(),\n}).passthrough();\nconst PexelsSearchPhotos_PhotoSchema = z.object({\n id: z.number().int().describe(\"Unique identifier for the photo\").nullable(),\n alt: z.string().describe(\"Alternate text for the photo\").nullable().optional(),\n src: PexelsSearchPhotos_PhotoSrcSchema.nullable(),\n url: z.string().describe(\"URL to the photo's Pexels page\").nullable(),\n liked: z.boolean().describe(\"Indicates if the photo is liked by the user\").nullable(),\n width: z.number().int().describe(\"Photo width in pixels\").nullable(),\n height: z.number().int().describe(\"Photo height in pixels\").nullable(),\n avg_color: z.string().describe(\"Average color of the photo (hex code)\").nullable(),\n photographer: z.string().describe(\"Photographer name\").nullable(),\n photographer_id: z.number().int().describe(\"Photographer's ID\").nullable(),\n photographer_url: z.string().describe(\"Photographer's profile URL\").nullable(),\n}).passthrough();\nexport const PexelsSearchPhotosOutput = z.object({\n page: z.number().int().describe(\"Current page number\").nullable(),\n photos: z.array(PexelsSearchPhotos_PhotoSchema).describe(\"List of photo objects returned\"),\n per_page: z.number().int().describe(\"Number of results per page\").nullable(),\n next_page: z.string().describe(\"URL to the next page of results, if available\").nullable().optional(),\n prev_page: z.string().describe(\"URL to the previous page of results, if available\").nullable().optional(),\n total_results: z.number().int().describe(\"Total number of results for this search\").nullable(),\n}).passthrough();\n\nexport const pexelsSearchPhotos = action(\"PEXELS_SEARCH_PHOTOS\", {\n slug: \"pexels-search-photos\",\n name: \"Search Photos\",\n description: \"Tool to search for photos on Pexels. Use when you need to retrieve photos by a search term and optional filters. Call after confirming you have a valid Pexels API key. Response image URLs are nested under `photo.src.<size>` (e.g., `photo.src.original`, `photo.src.landscape`, `photo.src.medium`); the top-level `url` field is not sufficient for accessing specific image sizes.\",\n input: PexelsSearchPhotosInput,\n output: PexelsSearchPhotosOutput,\n});\n"],"mappings":"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"}
|
|
@@ -17,45 +17,45 @@ const PexelsSearchVideosInput = zod.z.object({
|
|
|
17
17
|
]).describe("Filter results by video orientation").optional()
|
|
18
18
|
}).describe("Request model for searching videos on Pexels.");
|
|
19
19
|
const PexelsSearchVideos_UserSchema = zod.z.object({
|
|
20
|
-
id: zod.z.number().int().describe("Photographer user ID"),
|
|
21
|
-
url: zod.z.string().describe("Photographer profile URL"),
|
|
22
|
-
name: zod.z.string().describe("Photographer name")
|
|
23
|
-
});
|
|
20
|
+
id: zod.z.number().int().describe("Photographer user ID").nullable(),
|
|
21
|
+
url: zod.z.string().describe("Photographer profile URL").nullable(),
|
|
22
|
+
name: zod.z.string().describe("Photographer name").nullable()
|
|
23
|
+
}).passthrough();
|
|
24
24
|
const PexelsSearchVideos_VideoFileSchema = zod.z.object({
|
|
25
|
-
id: zod.z.number().int().describe("Video file ID"),
|
|
25
|
+
id: zod.z.number().int().describe("Video file ID").nullable(),
|
|
26
26
|
fps: zod.z.number().describe("Frames per second for this file").nullable().optional(),
|
|
27
|
-
link: zod.z.string().describe("Direct download link to this video file"),
|
|
28
|
-
width: zod.z.number().int().describe("Width of this video file in pixels"),
|
|
29
|
-
height: zod.z.number().int().describe("Height of this video file in pixels"),
|
|
27
|
+
link: zod.z.string().describe("Direct download link to this video file").nullable(),
|
|
28
|
+
width: zod.z.number().int().describe("Width of this video file in pixels").nullable(),
|
|
29
|
+
height: zod.z.number().int().describe("Height of this video file in pixels").nullable(),
|
|
30
30
|
quality: zod.z.string().describe("Video quality, e.g., 'hd' or 'sd'").nullable().optional(),
|
|
31
|
-
file_type: zod.z.string().describe("MIME type of the video file")
|
|
32
|
-
});
|
|
31
|
+
file_type: zod.z.string().describe("MIME type of the video file").nullable()
|
|
32
|
+
}).passthrough();
|
|
33
33
|
const PexelsSearchVideos_VideoPictureSchema = zod.z.object({
|
|
34
|
-
id: zod.z.number().int().describe("ID of the thumbnail picture"),
|
|
35
|
-
nr: zod.z.number().int().describe("Index number of this thumbnail in the video timeline"),
|
|
36
|
-
picture: zod.z.string().describe("URL to the thumbnail image")
|
|
37
|
-
});
|
|
34
|
+
id: zod.z.number().int().describe("ID of the thumbnail picture").nullable(),
|
|
35
|
+
nr: zod.z.number().int().describe("Index number of this thumbnail in the video timeline").nullable(),
|
|
36
|
+
picture: zod.z.string().describe("URL to the thumbnail image").nullable()
|
|
37
|
+
}).passthrough();
|
|
38
38
|
const PexelsSearchVideos_VideoSchema = zod.z.object({
|
|
39
|
-
id: zod.z.number().int().describe("Video ID"),
|
|
40
|
-
url: zod.z.string().describe("URL to the video page on Pexels"),
|
|
39
|
+
id: zod.z.number().int().describe("Video ID").nullable(),
|
|
40
|
+
url: zod.z.string().describe("URL to the video page on Pexels").nullable(),
|
|
41
41
|
tags: zod.z.array(zod.z.string()).describe("List of tags describing the video"),
|
|
42
42
|
user: PexelsSearchVideos_UserSchema.nullable(),
|
|
43
|
-
image: zod.z.string().describe("URL to the video thumbnail image"),
|
|
44
|
-
width: zod.z.number().int().describe("Original video width in pixels"),
|
|
45
|
-
height: zod.z.number().int().describe("Original video height in pixels"),
|
|
46
|
-
duration: zod.z.number().int().describe("Video duration in seconds"),
|
|
43
|
+
image: zod.z.string().describe("URL to the video thumbnail image").nullable(),
|
|
44
|
+
width: zod.z.number().int().describe("Original video width in pixels").nullable(),
|
|
45
|
+
height: zod.z.number().int().describe("Original video height in pixels").nullable(),
|
|
46
|
+
duration: zod.z.number().int().describe("Video duration in seconds").nullable(),
|
|
47
47
|
full_res: zod.z.string().describe("URL to the highest resolution video file").nullable().optional(),
|
|
48
48
|
avg_color: zod.z.string().describe("Average color of the thumbnail in hex format, e.g., '#AABBCC'").nullable().optional(),
|
|
49
49
|
video_files: zod.z.array(PexelsSearchVideos_VideoFileSchema).describe("List of available video file variants"),
|
|
50
50
|
video_pictures: zod.z.array(PexelsSearchVideos_VideoPictureSchema).describe("List of video thumbnail images at different offsets")
|
|
51
|
-
});
|
|
51
|
+
}).passthrough();
|
|
52
52
|
const PexelsSearchVideosOutput = zod.z.object({
|
|
53
|
-
url: zod.z.string().describe("URL to Pexels search results page"),
|
|
54
|
-
page: zod.z.number().int().describe("Current page number of the results"),
|
|
53
|
+
url: zod.z.string().describe("URL to Pexels search results page").nullable(),
|
|
54
|
+
page: zod.z.number().int().describe("Current page number of the results").nullable(),
|
|
55
55
|
videos: zod.z.array(PexelsSearchVideos_VideoSchema).describe("List of video objects returned by the search"),
|
|
56
|
-
per_page: zod.z.number().int().describe("Number of results returned per page"),
|
|
57
|
-
total_results: zod.z.number().int().describe("Total number of videos matching the search query")
|
|
58
|
-
});
|
|
56
|
+
per_page: zod.z.number().int().describe("Number of results returned per page").nullable(),
|
|
57
|
+
total_results: zod.z.number().int().describe("Total number of videos matching the search query").nullable()
|
|
58
|
+
}).passthrough();
|
|
59
59
|
const pexelsSearchVideos = require_action.action("PEXELS_SEARCH_VIDEOS", {
|
|
60
60
|
slug: "pexels-search-videos",
|
|
61
61
|
name: "Search Videos",
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"search-videos.cjs","names":["z","action"],"sources":["../../src/actions/search-videos.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const PexelsSearchVideosInput
|
|
1
|
+
{"version":3,"file":"search-videos.cjs","names":["z","action"],"sources":["../../src/actions/search-videos.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const PexelsSearchVideosInput = z.object({\n page: z.number().int().default(1).describe(\"Page number for paginated results (starting at 1)\").optional(),\n size: z.enum([\"large\", \"medium\", \"small\"]).describe(\"Filter results by video size\").optional(),\n query: z.string().describe(\"Search query term for finding relevant videos\"),\n per_page: z.number().int().default(15).describe(\"Number of results per page (min 1, max 80) Keep close to default when only a few results are needed to avoid oversized responses.\").optional(),\n orientation: z.enum([\"landscape\", \"portrait\", \"square\"]).describe(\"Filter results by video orientation\").optional(),\n}).describe(\"Request model for searching videos on Pexels.\");\nconst PexelsSearchVideos_UserSchema = z.object({\n id: z.number().int().describe(\"Photographer user ID\").nullable(),\n url: z.string().describe(\"Photographer profile URL\").nullable(),\n name: z.string().describe(\"Photographer name\").nullable(),\n}).passthrough();\nconst PexelsSearchVideos_VideoFileSchema = z.object({\n id: z.number().int().describe(\"Video file ID\").nullable(),\n fps: z.number().describe(\"Frames per second for this file\").nullable().optional(),\n link: z.string().describe(\"Direct download link to this video file\").nullable(),\n width: z.number().int().describe(\"Width of this video file in pixels\").nullable(),\n height: z.number().int().describe(\"Height of this video file in pixels\").nullable(),\n quality: z.string().describe(\"Video quality, e.g., 'hd' or 'sd'\").nullable().optional(),\n file_type: z.string().describe(\"MIME type of the video file\").nullable(),\n}).passthrough();\nconst PexelsSearchVideos_VideoPictureSchema = z.object({\n id: z.number().int().describe(\"ID of the thumbnail picture\").nullable(),\n nr: z.number().int().describe(\"Index number of this thumbnail in the video timeline\").nullable(),\n picture: z.string().describe(\"URL to the thumbnail image\").nullable(),\n}).passthrough();\nconst PexelsSearchVideos_VideoSchema = z.object({\n id: z.number().int().describe(\"Video ID\").nullable(),\n url: z.string().describe(\"URL to the video page on Pexels\").nullable(),\n tags: z.array(z.string()).describe(\"List of tags describing the video\"),\n user: PexelsSearchVideos_UserSchema.nullable(),\n image: z.string().describe(\"URL to the video thumbnail image\").nullable(),\n width: z.number().int().describe(\"Original video width in pixels\").nullable(),\n height: z.number().int().describe(\"Original video height in pixels\").nullable(),\n duration: z.number().int().describe(\"Video duration in seconds\").nullable(),\n full_res: z.string().describe(\"URL to the highest resolution video file\").nullable().optional(),\n avg_color: z.string().describe(\"Average color of the thumbnail in hex format, e.g., '#AABBCC'\").nullable().optional(),\n video_files: z.array(PexelsSearchVideos_VideoFileSchema).describe(\"List of available video file variants\"),\n video_pictures: z.array(PexelsSearchVideos_VideoPictureSchema).describe(\"List of video thumbnail images at different offsets\"),\n}).passthrough();\nexport const PexelsSearchVideosOutput = z.object({\n url: z.string().describe(\"URL to Pexels search results page\").nullable(),\n page: z.number().int().describe(\"Current page number of the results\").nullable(),\n videos: z.array(PexelsSearchVideos_VideoSchema).describe(\"List of video objects returned by the search\"),\n per_page: z.number().int().describe(\"Number of results returned per page\").nullable(),\n total_results: z.number().int().describe(\"Total number of videos matching the search query\").nullable(),\n}).passthrough();\n\nexport const pexelsSearchVideos = action(\"PEXELS_SEARCH_VIDEOS\", {\n slug: \"pexels-search-videos\",\n name: \"Search Videos\",\n description: \"Tool to search for videos on Pexels by query and optional filters. Use when you need to find relevant video assets. Combining multiple filters with a narrow query may return few or no results; only apply strict filter combinations when explicitly required.\",\n input: PexelsSearchVideosInput,\n output: PexelsSearchVideosOutput,\n});\n"],"mappings":"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"}
|
|
@@ -1,9 +1,64 @@
|
|
|
1
1
|
import { z } from "zod";
|
|
2
2
|
|
|
3
3
|
//#region src/actions/search-videos.d.ts
|
|
4
|
-
declare const PexelsSearchVideosInput: z.
|
|
5
|
-
|
|
6
|
-
|
|
4
|
+
declare const PexelsSearchVideosInput: z.ZodObject<{
|
|
5
|
+
page: z.ZodOptional<z.ZodDefault<z.ZodNumber>>;
|
|
6
|
+
size: z.ZodOptional<z.ZodEnum<{
|
|
7
|
+
large: "large";
|
|
8
|
+
small: "small";
|
|
9
|
+
medium: "medium";
|
|
10
|
+
}>>;
|
|
11
|
+
query: z.ZodString;
|
|
12
|
+
per_page: z.ZodOptional<z.ZodDefault<z.ZodNumber>>;
|
|
13
|
+
orientation: z.ZodOptional<z.ZodEnum<{
|
|
14
|
+
portrait: "portrait";
|
|
15
|
+
landscape: "landscape";
|
|
16
|
+
square: "square";
|
|
17
|
+
}>>;
|
|
18
|
+
}, z.core.$strip>;
|
|
19
|
+
declare const PexelsSearchVideosOutput: z.ZodObject<{
|
|
20
|
+
url: z.ZodNullable<z.ZodString>;
|
|
21
|
+
page: z.ZodNullable<z.ZodNumber>;
|
|
22
|
+
videos: z.ZodArray<z.ZodObject<{
|
|
23
|
+
id: z.ZodNullable<z.ZodNumber>;
|
|
24
|
+
url: z.ZodNullable<z.ZodString>;
|
|
25
|
+
tags: z.ZodArray<z.ZodString>;
|
|
26
|
+
user: z.ZodNullable<z.ZodObject<{
|
|
27
|
+
id: z.ZodNullable<z.ZodNumber>;
|
|
28
|
+
url: z.ZodNullable<z.ZodString>;
|
|
29
|
+
name: z.ZodNullable<z.ZodString>;
|
|
30
|
+
}, z.core.$loose>>;
|
|
31
|
+
image: z.ZodNullable<z.ZodString>;
|
|
32
|
+
width: z.ZodNullable<z.ZodNumber>;
|
|
33
|
+
height: z.ZodNullable<z.ZodNumber>;
|
|
34
|
+
duration: z.ZodNullable<z.ZodNumber>;
|
|
35
|
+
full_res: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
36
|
+
avg_color: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
37
|
+
video_files: z.ZodArray<z.ZodObject<{
|
|
38
|
+
id: z.ZodNullable<z.ZodNumber>;
|
|
39
|
+
fps: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
40
|
+
link: z.ZodNullable<z.ZodString>;
|
|
41
|
+
width: z.ZodNullable<z.ZodNumber>;
|
|
42
|
+
height: z.ZodNullable<z.ZodNumber>;
|
|
43
|
+
quality: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
44
|
+
file_type: z.ZodNullable<z.ZodString>;
|
|
45
|
+
}, z.core.$loose>>;
|
|
46
|
+
video_pictures: z.ZodArray<z.ZodObject<{
|
|
47
|
+
id: z.ZodNullable<z.ZodNumber>;
|
|
48
|
+
nr: z.ZodNullable<z.ZodNumber>;
|
|
49
|
+
picture: z.ZodNullable<z.ZodString>;
|
|
50
|
+
}, z.core.$loose>>;
|
|
51
|
+
}, z.core.$loose>>;
|
|
52
|
+
per_page: z.ZodNullable<z.ZodNumber>;
|
|
53
|
+
total_results: z.ZodNullable<z.ZodNumber>;
|
|
54
|
+
}, z.core.$loose>;
|
|
55
|
+
declare const pexelsSearchVideos: import("@keystrokehq/action").WorkflowActionDefinition<{
|
|
56
|
+
query: string;
|
|
57
|
+
page?: number | undefined;
|
|
58
|
+
size?: "large" | "small" | "medium" | undefined;
|
|
59
|
+
per_page?: number | undefined;
|
|
60
|
+
orientation?: "portrait" | "landscape" | "square" | undefined;
|
|
61
|
+
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
|
|
7
62
|
//#endregion
|
|
8
63
|
export { pexelsSearchVideos };
|
|
9
64
|
//# sourceMappingURL=search-videos.d.cts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"search-videos.d.cts","names":[],"sources":["../../src/actions/search-videos.ts"],"mappings":";;;cAIa,uBAAA,
|
|
1
|
+
{"version":3,"file":"search-videos.d.cts","names":[],"sources":["../../src/actions/search-videos.ts"],"mappings":";;;cAIa,uBAAA,EAAuB,CAAA,CAAA,SAAA;;;;;;;;;;;;;;;cAwCvB,wBAAA,EAAwB,CAAA,CAAA,SAAA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;cAQxB,kBAAA,gCAAkB,wBAAA"}
|
|
@@ -1,9 +1,64 @@
|
|
|
1
1
|
import { z } from "zod";
|
|
2
2
|
|
|
3
3
|
//#region src/actions/search-videos.d.ts
|
|
4
|
-
declare const PexelsSearchVideosInput: z.
|
|
5
|
-
|
|
6
|
-
|
|
4
|
+
declare const PexelsSearchVideosInput: z.ZodObject<{
|
|
5
|
+
page: z.ZodOptional<z.ZodDefault<z.ZodNumber>>;
|
|
6
|
+
size: z.ZodOptional<z.ZodEnum<{
|
|
7
|
+
large: "large";
|
|
8
|
+
small: "small";
|
|
9
|
+
medium: "medium";
|
|
10
|
+
}>>;
|
|
11
|
+
query: z.ZodString;
|
|
12
|
+
per_page: z.ZodOptional<z.ZodDefault<z.ZodNumber>>;
|
|
13
|
+
orientation: z.ZodOptional<z.ZodEnum<{
|
|
14
|
+
portrait: "portrait";
|
|
15
|
+
landscape: "landscape";
|
|
16
|
+
square: "square";
|
|
17
|
+
}>>;
|
|
18
|
+
}, z.core.$strip>;
|
|
19
|
+
declare const PexelsSearchVideosOutput: z.ZodObject<{
|
|
20
|
+
url: z.ZodNullable<z.ZodString>;
|
|
21
|
+
page: z.ZodNullable<z.ZodNumber>;
|
|
22
|
+
videos: z.ZodArray<z.ZodObject<{
|
|
23
|
+
id: z.ZodNullable<z.ZodNumber>;
|
|
24
|
+
url: z.ZodNullable<z.ZodString>;
|
|
25
|
+
tags: z.ZodArray<z.ZodString>;
|
|
26
|
+
user: z.ZodNullable<z.ZodObject<{
|
|
27
|
+
id: z.ZodNullable<z.ZodNumber>;
|
|
28
|
+
url: z.ZodNullable<z.ZodString>;
|
|
29
|
+
name: z.ZodNullable<z.ZodString>;
|
|
30
|
+
}, z.core.$loose>>;
|
|
31
|
+
image: z.ZodNullable<z.ZodString>;
|
|
32
|
+
width: z.ZodNullable<z.ZodNumber>;
|
|
33
|
+
height: z.ZodNullable<z.ZodNumber>;
|
|
34
|
+
duration: z.ZodNullable<z.ZodNumber>;
|
|
35
|
+
full_res: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
36
|
+
avg_color: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
37
|
+
video_files: z.ZodArray<z.ZodObject<{
|
|
38
|
+
id: z.ZodNullable<z.ZodNumber>;
|
|
39
|
+
fps: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
40
|
+
link: z.ZodNullable<z.ZodString>;
|
|
41
|
+
width: z.ZodNullable<z.ZodNumber>;
|
|
42
|
+
height: z.ZodNullable<z.ZodNumber>;
|
|
43
|
+
quality: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
44
|
+
file_type: z.ZodNullable<z.ZodString>;
|
|
45
|
+
}, z.core.$loose>>;
|
|
46
|
+
video_pictures: z.ZodArray<z.ZodObject<{
|
|
47
|
+
id: z.ZodNullable<z.ZodNumber>;
|
|
48
|
+
nr: z.ZodNullable<z.ZodNumber>;
|
|
49
|
+
picture: z.ZodNullable<z.ZodString>;
|
|
50
|
+
}, z.core.$loose>>;
|
|
51
|
+
}, z.core.$loose>>;
|
|
52
|
+
per_page: z.ZodNullable<z.ZodNumber>;
|
|
53
|
+
total_results: z.ZodNullable<z.ZodNumber>;
|
|
54
|
+
}, z.core.$loose>;
|
|
55
|
+
declare const pexelsSearchVideos: import("@keystrokehq/action").WorkflowActionDefinition<{
|
|
56
|
+
query: string;
|
|
57
|
+
page?: number | undefined;
|
|
58
|
+
size?: "large" | "small" | "medium" | undefined;
|
|
59
|
+
per_page?: number | undefined;
|
|
60
|
+
orientation?: "portrait" | "landscape" | "square" | undefined;
|
|
61
|
+
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
|
|
7
62
|
//#endregion
|
|
8
63
|
export { pexelsSearchVideos };
|
|
9
64
|
//# sourceMappingURL=search-videos.d.mts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"search-videos.d.mts","names":[],"sources":["../../src/actions/search-videos.ts"],"mappings":";;;cAIa,uBAAA,
|
|
1
|
+
{"version":3,"file":"search-videos.d.mts","names":[],"sources":["../../src/actions/search-videos.ts"],"mappings":";;;cAIa,uBAAA,EAAuB,CAAA,CAAA,SAAA;;;;;;;;;;;;;;;cAwCvB,wBAAA,EAAwB,CAAA,CAAA,SAAA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;cAQxB,kBAAA,gCAAkB,wBAAA"}
|
|
@@ -17,50 +17,50 @@ const PexelsSearchVideosInput = z.object({
|
|
|
17
17
|
]).describe("Filter results by video orientation").optional()
|
|
18
18
|
}).describe("Request model for searching videos on Pexels.");
|
|
19
19
|
const PexelsSearchVideos_UserSchema = z.object({
|
|
20
|
-
id: z.number().int().describe("Photographer user ID"),
|
|
21
|
-
url: z.string().describe("Photographer profile URL"),
|
|
22
|
-
name: z.string().describe("Photographer name")
|
|
23
|
-
});
|
|
20
|
+
id: z.number().int().describe("Photographer user ID").nullable(),
|
|
21
|
+
url: z.string().describe("Photographer profile URL").nullable(),
|
|
22
|
+
name: z.string().describe("Photographer name").nullable()
|
|
23
|
+
}).passthrough();
|
|
24
24
|
const PexelsSearchVideos_VideoFileSchema = z.object({
|
|
25
|
-
id: z.number().int().describe("Video file ID"),
|
|
25
|
+
id: z.number().int().describe("Video file ID").nullable(),
|
|
26
26
|
fps: z.number().describe("Frames per second for this file").nullable().optional(),
|
|
27
|
-
link: z.string().describe("Direct download link to this video file"),
|
|
28
|
-
width: z.number().int().describe("Width of this video file in pixels"),
|
|
29
|
-
height: z.number().int().describe("Height of this video file in pixels"),
|
|
27
|
+
link: z.string().describe("Direct download link to this video file").nullable(),
|
|
28
|
+
width: z.number().int().describe("Width of this video file in pixels").nullable(),
|
|
29
|
+
height: z.number().int().describe("Height of this video file in pixels").nullable(),
|
|
30
30
|
quality: z.string().describe("Video quality, e.g., 'hd' or 'sd'").nullable().optional(),
|
|
31
|
-
file_type: z.string().describe("MIME type of the video file")
|
|
32
|
-
});
|
|
31
|
+
file_type: z.string().describe("MIME type of the video file").nullable()
|
|
32
|
+
}).passthrough();
|
|
33
33
|
const PexelsSearchVideos_VideoPictureSchema = z.object({
|
|
34
|
-
id: z.number().int().describe("ID of the thumbnail picture"),
|
|
35
|
-
nr: z.number().int().describe("Index number of this thumbnail in the video timeline"),
|
|
36
|
-
picture: z.string().describe("URL to the thumbnail image")
|
|
37
|
-
});
|
|
34
|
+
id: z.number().int().describe("ID of the thumbnail picture").nullable(),
|
|
35
|
+
nr: z.number().int().describe("Index number of this thumbnail in the video timeline").nullable(),
|
|
36
|
+
picture: z.string().describe("URL to the thumbnail image").nullable()
|
|
37
|
+
}).passthrough();
|
|
38
38
|
const PexelsSearchVideos_VideoSchema = z.object({
|
|
39
|
-
id: z.number().int().describe("Video ID"),
|
|
40
|
-
url: z.string().describe("URL to the video page on Pexels"),
|
|
39
|
+
id: z.number().int().describe("Video ID").nullable(),
|
|
40
|
+
url: z.string().describe("URL to the video page on Pexels").nullable(),
|
|
41
41
|
tags: z.array(z.string()).describe("List of tags describing the video"),
|
|
42
42
|
user: PexelsSearchVideos_UserSchema.nullable(),
|
|
43
|
-
image: z.string().describe("URL to the video thumbnail image"),
|
|
44
|
-
width: z.number().int().describe("Original video width in pixels"),
|
|
45
|
-
height: z.number().int().describe("Original video height in pixels"),
|
|
46
|
-
duration: z.number().int().describe("Video duration in seconds"),
|
|
43
|
+
image: z.string().describe("URL to the video thumbnail image").nullable(),
|
|
44
|
+
width: z.number().int().describe("Original video width in pixels").nullable(),
|
|
45
|
+
height: z.number().int().describe("Original video height in pixels").nullable(),
|
|
46
|
+
duration: z.number().int().describe("Video duration in seconds").nullable(),
|
|
47
47
|
full_res: z.string().describe("URL to the highest resolution video file").nullable().optional(),
|
|
48
48
|
avg_color: z.string().describe("Average color of the thumbnail in hex format, e.g., '#AABBCC'").nullable().optional(),
|
|
49
49
|
video_files: z.array(PexelsSearchVideos_VideoFileSchema).describe("List of available video file variants"),
|
|
50
50
|
video_pictures: z.array(PexelsSearchVideos_VideoPictureSchema).describe("List of video thumbnail images at different offsets")
|
|
51
|
-
});
|
|
51
|
+
}).passthrough();
|
|
52
52
|
const pexelsSearchVideos = action("PEXELS_SEARCH_VIDEOS", {
|
|
53
53
|
slug: "pexels-search-videos",
|
|
54
54
|
name: "Search Videos",
|
|
55
55
|
description: "Tool to search for videos on Pexels by query and optional filters. Use when you need to find relevant video assets. Combining multiple filters with a narrow query may return few or no results; only apply strict filter combinations when explicitly required.",
|
|
56
56
|
input: PexelsSearchVideosInput,
|
|
57
57
|
output: z.object({
|
|
58
|
-
url: z.string().describe("URL to Pexels search results page"),
|
|
59
|
-
page: z.number().int().describe("Current page number of the results"),
|
|
58
|
+
url: z.string().describe("URL to Pexels search results page").nullable(),
|
|
59
|
+
page: z.number().int().describe("Current page number of the results").nullable(),
|
|
60
60
|
videos: z.array(PexelsSearchVideos_VideoSchema).describe("List of video objects returned by the search"),
|
|
61
|
-
per_page: z.number().int().describe("Number of results returned per page"),
|
|
62
|
-
total_results: z.number().int().describe("Total number of videos matching the search query")
|
|
63
|
-
})
|
|
61
|
+
per_page: z.number().int().describe("Number of results returned per page").nullable(),
|
|
62
|
+
total_results: z.number().int().describe("Total number of videos matching the search query").nullable()
|
|
63
|
+
}).passthrough()
|
|
64
64
|
});
|
|
65
65
|
//#endregion
|
|
66
66
|
export { pexelsSearchVideos };
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"search-videos.mjs","names":[],"sources":["../../src/actions/search-videos.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const PexelsSearchVideosInput
|
|
1
|
+
{"version":3,"file":"search-videos.mjs","names":[],"sources":["../../src/actions/search-videos.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const PexelsSearchVideosInput = z.object({\n page: z.number().int().default(1).describe(\"Page number for paginated results (starting at 1)\").optional(),\n size: z.enum([\"large\", \"medium\", \"small\"]).describe(\"Filter results by video size\").optional(),\n query: z.string().describe(\"Search query term for finding relevant videos\"),\n per_page: z.number().int().default(15).describe(\"Number of results per page (min 1, max 80) Keep close to default when only a few results are needed to avoid oversized responses.\").optional(),\n orientation: z.enum([\"landscape\", \"portrait\", \"square\"]).describe(\"Filter results by video orientation\").optional(),\n}).describe(\"Request model for searching videos on Pexels.\");\nconst PexelsSearchVideos_UserSchema = z.object({\n id: z.number().int().describe(\"Photographer user ID\").nullable(),\n url: z.string().describe(\"Photographer profile URL\").nullable(),\n name: z.string().describe(\"Photographer name\").nullable(),\n}).passthrough();\nconst PexelsSearchVideos_VideoFileSchema = z.object({\n id: z.number().int().describe(\"Video file ID\").nullable(),\n fps: z.number().describe(\"Frames per second for this file\").nullable().optional(),\n link: z.string().describe(\"Direct download link to this video file\").nullable(),\n width: z.number().int().describe(\"Width of this video file in pixels\").nullable(),\n height: z.number().int().describe(\"Height of this video file in pixels\").nullable(),\n quality: z.string().describe(\"Video quality, e.g., 'hd' or 'sd'\").nullable().optional(),\n file_type: z.string().describe(\"MIME type of the video file\").nullable(),\n}).passthrough();\nconst PexelsSearchVideos_VideoPictureSchema = z.object({\n id: z.number().int().describe(\"ID of the thumbnail picture\").nullable(),\n nr: z.number().int().describe(\"Index number of this thumbnail in the video timeline\").nullable(),\n picture: z.string().describe(\"URL to the thumbnail image\").nullable(),\n}).passthrough();\nconst PexelsSearchVideos_VideoSchema = z.object({\n id: z.number().int().describe(\"Video ID\").nullable(),\n url: z.string().describe(\"URL to the video page on Pexels\").nullable(),\n tags: z.array(z.string()).describe(\"List of tags describing the video\"),\n user: PexelsSearchVideos_UserSchema.nullable(),\n image: z.string().describe(\"URL to the video thumbnail image\").nullable(),\n width: z.number().int().describe(\"Original video width in pixels\").nullable(),\n height: z.number().int().describe(\"Original video height in pixels\").nullable(),\n duration: z.number().int().describe(\"Video duration in seconds\").nullable(),\n full_res: z.string().describe(\"URL to the highest resolution video file\").nullable().optional(),\n avg_color: z.string().describe(\"Average color of the thumbnail in hex format, e.g., '#AABBCC'\").nullable().optional(),\n video_files: z.array(PexelsSearchVideos_VideoFileSchema).describe(\"List of available video file variants\"),\n video_pictures: z.array(PexelsSearchVideos_VideoPictureSchema).describe(\"List of video thumbnail images at different offsets\"),\n}).passthrough();\nexport const PexelsSearchVideosOutput = z.object({\n url: z.string().describe(\"URL to Pexels search results page\").nullable(),\n page: z.number().int().describe(\"Current page number of the results\").nullable(),\n videos: z.array(PexelsSearchVideos_VideoSchema).describe(\"List of video objects returned by the search\"),\n per_page: z.number().int().describe(\"Number of results returned per page\").nullable(),\n total_results: z.number().int().describe(\"Total number of videos matching the search query\").nullable(),\n}).passthrough();\n\nexport const pexelsSearchVideos = action(\"PEXELS_SEARCH_VIDEOS\", {\n slug: \"pexels-search-videos\",\n name: \"Search Videos\",\n description: \"Tool to search for videos on Pexels by query and optional filters. Use when you need to find relevant video assets. Combining multiple filters with a narrow query may return few or no results; only apply strict filter combinations when explicitly required.\",\n input: PexelsSearchVideosInput,\n output: PexelsSearchVideosOutput,\n});\n"],"mappings":"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"}
|
package/dist/catalog.cjs
CHANGED
|
@@ -7,7 +7,13 @@ const pexelsCatalog = {
|
|
|
7
7
|
"category": "Images & Design",
|
|
8
8
|
"logo": "https://logos.composio.dev/api/pexels",
|
|
9
9
|
"authKind": "keystroke",
|
|
10
|
-
"oauthScopes": []
|
|
10
|
+
"oauthScopes": [],
|
|
11
|
+
"credentialFields": { "api_key": {
|
|
12
|
+
"label": "Pexels API Key",
|
|
13
|
+
"secret": true,
|
|
14
|
+
"description": "Your unique Pexels API key"
|
|
15
|
+
} },
|
|
16
|
+
"credentialScheme": "API_KEY"
|
|
11
17
|
};
|
|
12
18
|
//#endregion
|
|
13
19
|
exports.pexelsCatalog = pexelsCatalog;
|
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 pexelsCatalog = {\n \"slug\": \"pexels\",\n \"name\": \"Pexels\",\n \"description\": \"Pexels offers a free API that provides access to a vast library of high-quality photos and videos, enabling seamless integration into applications and websites.\",\n \"category\": \"Images & Design\",\n \"logo\": \"https://logos.composio.dev/api/pexels\",\n \"authKind\": \"keystroke\",\n \"oauthScopes\": []\n} as const;\n"],"mappings":";;AACA,MAAa,gBAAgB;CAC3B,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 pexelsCatalog = {\n \"slug\": \"pexels\",\n \"name\": \"Pexels\",\n \"description\": \"Pexels offers a free API that provides access to a vast library of high-quality photos and videos, enabling seamless integration into applications and websites.\",\n \"category\": \"Images & Design\",\n \"logo\": \"https://logos.composio.dev/api/pexels\",\n \"authKind\": \"keystroke\",\n \"oauthScopes\": [],\n \"credentialFields\": {\n \"api_key\": {\n \"label\": \"Pexels API Key\",\n \"secret\": true,\n \"description\": \"Your unique Pexels API key\"\n }\n },\n \"credentialScheme\": \"API_KEY\"\n} as const;\n"],"mappings":";;AACA,MAAa,gBAAgB;CAC3B,QAAQ;CACR,QAAQ;CACR,eAAe;CACf,YAAY;CACZ,QAAQ;CACR,YAAY;CACZ,eAAe,CAAC;CAChB,oBAAoB,EAClB,WAAW;EACT,SAAS;EACT,UAAU;EACV,eAAe;CACjB,EACF;CACA,oBAAoB;AACtB"}
|
package/dist/catalog.d.cts
CHANGED
|
@@ -8,6 +8,14 @@ declare const pexelsCatalog: {
|
|
|
8
8
|
readonly logo: "https://logos.composio.dev/api/pexels";
|
|
9
9
|
readonly authKind: "keystroke";
|
|
10
10
|
readonly oauthScopes: readonly [];
|
|
11
|
+
readonly credentialFields: {
|
|
12
|
+
readonly api_key: {
|
|
13
|
+
readonly label: "Pexels API Key";
|
|
14
|
+
readonly secret: true;
|
|
15
|
+
readonly description: "Your unique Pexels API key";
|
|
16
|
+
};
|
|
17
|
+
};
|
|
18
|
+
readonly credentialScheme: "API_KEY";
|
|
11
19
|
};
|
|
12
20
|
//#endregion
|
|
13
21
|
export { pexelsCatalog };
|
package/dist/catalog.d.mts
CHANGED
|
@@ -8,6 +8,14 @@ declare const pexelsCatalog: {
|
|
|
8
8
|
readonly logo: "https://logos.composio.dev/api/pexels";
|
|
9
9
|
readonly authKind: "keystroke";
|
|
10
10
|
readonly oauthScopes: readonly [];
|
|
11
|
+
readonly credentialFields: {
|
|
12
|
+
readonly api_key: {
|
|
13
|
+
readonly label: "Pexels API Key";
|
|
14
|
+
readonly secret: true;
|
|
15
|
+
readonly description: "Your unique Pexels API key";
|
|
16
|
+
};
|
|
17
|
+
};
|
|
18
|
+
readonly credentialScheme: "API_KEY";
|
|
11
19
|
};
|
|
12
20
|
//#endregion
|
|
13
21
|
export { pexelsCatalog };
|
package/dist/catalog.mjs
CHANGED
|
@@ -7,7 +7,13 @@ const pexelsCatalog = {
|
|
|
7
7
|
"category": "Images & Design",
|
|
8
8
|
"logo": "https://logos.composio.dev/api/pexels",
|
|
9
9
|
"authKind": "keystroke",
|
|
10
|
-
"oauthScopes": []
|
|
10
|
+
"oauthScopes": [],
|
|
11
|
+
"credentialFields": { "api_key": {
|
|
12
|
+
"label": "Pexels API Key",
|
|
13
|
+
"secret": true,
|
|
14
|
+
"description": "Your unique Pexels API key"
|
|
15
|
+
} },
|
|
16
|
+
"credentialScheme": "API_KEY"
|
|
11
17
|
};
|
|
12
18
|
//#endregion
|
|
13
19
|
export { pexelsCatalog };
|
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 pexelsCatalog = {\n \"slug\": \"pexels\",\n \"name\": \"Pexels\",\n \"description\": \"Pexels offers a free API that provides access to a vast library of high-quality photos and videos, enabling seamless integration into applications and websites.\",\n \"category\": \"Images & Design\",\n \"logo\": \"https://logos.composio.dev/api/pexels\",\n \"authKind\": \"keystroke\",\n \"oauthScopes\": []\n} as const;\n"],"mappings":";;AACA,MAAa,gBAAgB;CAC3B,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 pexelsCatalog = {\n \"slug\": \"pexels\",\n \"name\": \"Pexels\",\n \"description\": \"Pexels offers a free API that provides access to a vast library of high-quality photos and videos, enabling seamless integration into applications and websites.\",\n \"category\": \"Images & Design\",\n \"logo\": \"https://logos.composio.dev/api/pexels\",\n \"authKind\": \"keystroke\",\n \"oauthScopes\": [],\n \"credentialFields\": {\n \"api_key\": {\n \"label\": \"Pexels API Key\",\n \"secret\": true,\n \"description\": \"Your unique Pexels API key\"\n }\n },\n \"credentialScheme\": \"API_KEY\"\n} as const;\n"],"mappings":";;AACA,MAAa,gBAAgB;CAC3B,QAAQ;CACR,QAAQ;CACR,eAAe;CACf,YAAY;CACZ,QAAQ;CACR,YAAY;CACZ,eAAe,CAAC;CAChB,oBAAoB,EAClB,WAAW;EACT,SAAS;EACT,UAAU;EACV,eAAe;CACjB,EACF;CACA,oBAAoB;AACtB"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@keystrokehq/pexels",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.3",
|
|
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": {
|