@keystrokehq/pexels 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/collection-media.cjs +29 -29
- 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 +29 -29
- package/dist/actions/collection-media.mjs.map +1 -1
- package/dist/actions/curated-photos.cjs +21 -21
- 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 +21 -21
- package/dist/actions/curated-photos.mjs.map +1 -1
- package/dist/actions/featured-collections.cjs +9 -9
- 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 +9 -9
- package/dist/actions/featured-collections.mjs.map +1 -1
- package/dist/actions/get-photo.cjs +18 -18
- 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 +18 -18
- package/dist/actions/get-photo.mjs.map +1 -1
- package/dist/actions/get-video-by-id.cjs +17 -17
- 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 +17 -17
- package/dist/actions/get-video-by-id.mjs.map +1 -1
- package/dist/actions/my-collections.cjs +9 -9
- 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 +9 -9
- package/dist/actions/my-collections.mjs.map +1 -1
- package/dist/actions/popular-videos.cjs +23 -23
- 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 +23 -23
- package/dist/actions/popular-videos.mjs.map +1 -1
- package/dist/actions/search-photos.cjs +20 -20
- 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 +20 -20
- package/dist/actions/search-photos.mjs.map +1 -1
- package/dist/actions/search-videos.cjs +21 -21
- 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 +21 -21
- 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
|
@@ -3,33 +3,33 @@ let zod = require("zod");
|
|
|
3
3
|
//#region src/actions/get-video-by-id.ts
|
|
4
4
|
const PexelsGetVideoByIdInput = zod.z.object({ id: zod.z.number().int().describe("The unique identifier of the video to retrieve") }).describe("Request schema for retrieving a specific video by its ID.");
|
|
5
5
|
const PexelsGetVideoById_UserSchema = zod.z.object({
|
|
6
|
-
id: zod.z.number().int().describe("Unique identifier of the videographer"),
|
|
7
|
-
url: zod.z.string().describe("URL to the videographer's Pexels profile"),
|
|
8
|
-
name: zod.z.string().describe("Name of the videographer")
|
|
6
|
+
id: zod.z.number().int().describe("Unique identifier of the videographer").nullable(),
|
|
7
|
+
url: zod.z.string().describe("URL to the videographer's Pexels profile").nullable(),
|
|
8
|
+
name: zod.z.string().describe("Name of the videographer").nullable()
|
|
9
9
|
}).describe("Information about the videographer.");
|
|
10
10
|
const PexelsGetVideoById_VideoFileSchema = zod.z.object({
|
|
11
|
-
id: zod.z.number().int().describe("Unique identifier of the video file"),
|
|
11
|
+
id: zod.z.number().int().describe("Unique identifier of the video file").nullable(),
|
|
12
12
|
fps: zod.z.number().describe("Frames per second of the video file").nullable().optional(),
|
|
13
|
-
link: zod.z.string().describe("Direct download URL for this video file version"),
|
|
14
|
-
width: zod.z.number().int().describe("Width of this video file version in pixels"),
|
|
15
|
-
height: zod.z.number().int().describe("Height of this video file version in pixels"),
|
|
13
|
+
link: zod.z.string().describe("Direct download URL for this video file version").nullable(),
|
|
14
|
+
width: zod.z.number().int().describe("Width of this video file version in pixels").nullable(),
|
|
15
|
+
height: zod.z.number().int().describe("Height of this video file version in pixels").nullable(),
|
|
16
16
|
quality: zod.z.string().describe("Quality level (e.g., 'sd', 'hd', 'uhd')").nullable().optional(),
|
|
17
|
-
file_type: zod.z.string().describe("MIME type of the video file (e.g., 'video/mp4')")
|
|
17
|
+
file_type: zod.z.string().describe("MIME type of the video file (e.g., 'video/mp4')").nullable()
|
|
18
18
|
}).describe("A video file variant with specific quality and dimensions.");
|
|
19
19
|
const PexelsGetVideoById_VideoPictureSchema = zod.z.object({
|
|
20
|
-
id: zod.z.number().int().describe("Unique identifier of the preview picture"),
|
|
21
|
-
nr: zod.z.number().int().describe("Picture number/index"),
|
|
22
|
-
picture: zod.z.string().describe("URL to the preview image")
|
|
20
|
+
id: zod.z.number().int().describe("Unique identifier of the preview picture").nullable(),
|
|
21
|
+
nr: zod.z.number().int().describe("Picture number/index").nullable(),
|
|
22
|
+
picture: zod.z.string().describe("URL to the preview image").nullable()
|
|
23
23
|
}).describe("A preview image for the video.");
|
|
24
24
|
const PexelsGetVideoByIdOutput = zod.z.object({
|
|
25
|
-
id: zod.z.number().int().describe("Unique identifier for the video"),
|
|
26
|
-
url: zod.z.string().describe("Pexels.com page URL for this video"),
|
|
25
|
+
id: zod.z.number().int().describe("Unique identifier for the video").nullable(),
|
|
26
|
+
url: zod.z.string().describe("Pexels.com page URL for this video").nullable(),
|
|
27
27
|
tags: zod.z.array(zod.z.string()).describe("List of tags associated with the video"),
|
|
28
28
|
user: PexelsGetVideoById_UserSchema.nullable(),
|
|
29
|
-
image: zod.z.string().describe("URL to a preview screenshot of the video"),
|
|
30
|
-
width: zod.z.number().int().describe("Original video width in pixels"),
|
|
31
|
-
height: zod.z.number().int().describe("Original video height in pixels"),
|
|
32
|
-
duration: zod.z.number().int().describe("Duration of the video in seconds"),
|
|
29
|
+
image: zod.z.string().describe("URL to a preview screenshot of the video").nullable(),
|
|
30
|
+
width: zod.z.number().int().describe("Original video width in pixels").nullable(),
|
|
31
|
+
height: zod.z.number().int().describe("Original video height in pixels").nullable(),
|
|
32
|
+
duration: zod.z.number().int().describe("Duration of the video in seconds").nullable(),
|
|
33
33
|
video_files: zod.z.array(PexelsGetVideoById_VideoFileSchema).describe("Array of different sized/quality versions of the video"),
|
|
34
34
|
video_pictures: zod.z.array(PexelsGetVideoById_VideoPictureSchema).describe("Array of preview images for the video")
|
|
35
35
|
}).describe("Detailed information for a single video from Pexels.");
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"get-video-by-id.cjs","names":["z","action"],"sources":["../../src/actions/get-video-by-id.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const PexelsGetVideoByIdInput
|
|
1
|
+
{"version":3,"file":"get-video-by-id.cjs","names":["z","action"],"sources":["../../src/actions/get-video-by-id.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const PexelsGetVideoByIdInput = z.object({\n id: z.number().int().describe(\"The unique identifier of the video to retrieve\"),\n}).describe(\"Request schema for retrieving a specific video by its ID.\");\nconst PexelsGetVideoById_UserSchema = z.object({\n id: z.number().int().describe(\"Unique identifier of the videographer\").nullable(),\n url: z.string().describe(\"URL to the videographer's Pexels profile\").nullable(),\n name: z.string().describe(\"Name of the videographer\").nullable(),\n}).describe(\"Information about the videographer.\");\nconst PexelsGetVideoById_VideoFileSchema = z.object({\n id: z.number().int().describe(\"Unique identifier of the video file\").nullable(),\n fps: z.number().describe(\"Frames per second of the video file\").nullable().optional(),\n link: z.string().describe(\"Direct download URL for this video file version\").nullable(),\n width: z.number().int().describe(\"Width of this video file version in pixels\").nullable(),\n height: z.number().int().describe(\"Height of this video file version in pixels\").nullable(),\n quality: z.string().describe(\"Quality level (e.g., 'sd', 'hd', 'uhd')\").nullable().optional(),\n file_type: z.string().describe(\"MIME type of the video file (e.g., 'video/mp4')\").nullable(),\n}).describe(\"A video file variant with specific quality and dimensions.\");\nconst PexelsGetVideoById_VideoPictureSchema = z.object({\n id: z.number().int().describe(\"Unique identifier of the preview picture\").nullable(),\n nr: z.number().int().describe(\"Picture number/index\").nullable(),\n picture: z.string().describe(\"URL to the preview image\").nullable(),\n}).describe(\"A preview image for the video.\");\nexport const PexelsGetVideoByIdOutput = z.object({\n id: z.number().int().describe(\"Unique identifier for the video\").nullable(),\n url: z.string().describe(\"Pexels.com page URL for this video\").nullable(),\n tags: z.array(z.string()).describe(\"List of tags associated with the video\"),\n user: PexelsGetVideoById_UserSchema.nullable(),\n image: z.string().describe(\"URL to a preview screenshot of the video\").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(\"Duration of the video in seconds\").nullable(),\n video_files: z.array(PexelsGetVideoById_VideoFileSchema).describe(\"Array of different sized/quality versions of the video\"),\n video_pictures: z.array(PexelsGetVideoById_VideoPictureSchema).describe(\"Array of preview images for the video\"),\n}).describe(\"Detailed information for a single video from Pexels.\");\n\nexport const pexelsGetVideoById = action(\"PEXELS_GET_VIDEO_BY_ID\", {\n slug: \"pexels-get-video-by-id\",\n name: \"Get Video by ID\",\n description: \"Tool to retrieve detailed information about a specific video from Pexels. Use when you have a valid video ID to fetch metadata including dimensions, duration, videographer details, and available video file versions.\",\n input: PexelsGetVideoByIdInput,\n output: PexelsGetVideoByIdOutput,\n});\n"],"mappings":";;;AAIA,MAAa,0BAA0BA,IAAAA,EAAE,OAAO,EAC9C,IAAIA,IAAAA,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,SAAS,gDAAgD,EAChF,CAAC,CAAC,CAAC,SAAS,2DAA2D;AACvE,MAAM,gCAAgCA,IAAAA,EAAE,OAAO;CAC7C,IAAIA,IAAAA,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,SAAS,uCAAuC,CAAC,CAAC,SAAS;CAChF,KAAKA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,0CAA0C,CAAC,CAAC,SAAS;CAC9E,MAAMA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,0BAA0B,CAAC,CAAC,SAAS;AACjE,CAAC,CAAC,CAAC,SAAS,qCAAqC;AACjD,MAAM,qCAAqCA,IAAAA,EAAE,OAAO;CAClD,IAAIA,IAAAA,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,SAAS,qCAAqC,CAAC,CAAC,SAAS;CAC9E,KAAKA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,qCAAqC,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CACpF,MAAMA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,iDAAiD,CAAC,CAAC,SAAS;CACtF,OAAOA,IAAAA,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,SAAS,4CAA4C,CAAC,CAAC,SAAS;CACxF,QAAQA,IAAAA,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,SAAS,6CAA6C,CAAC,CAAC,SAAS;CAC1F,SAASA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,yCAAyC,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CAC5F,WAAWA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,iDAAiD,CAAC,CAAC,SAAS;AAC7F,CAAC,CAAC,CAAC,SAAS,4DAA4D;AACxE,MAAM,wCAAwCA,IAAAA,EAAE,OAAO;CACrD,IAAIA,IAAAA,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,SAAS,0CAA0C,CAAC,CAAC,SAAS;CACnF,IAAIA,IAAAA,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,SAAS,sBAAsB,CAAC,CAAC,SAAS;CAC/D,SAASA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,0BAA0B,CAAC,CAAC,SAAS;AACpE,CAAC,CAAC,CAAC,SAAS,gCAAgC;AAC5C,MAAa,2BAA2BA,IAAAA,EAAE,OAAO;CAC/C,IAAIA,IAAAA,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,SAAS,iCAAiC,CAAC,CAAC,SAAS;CAC1E,KAAKA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,oCAAoC,CAAC,CAAC,SAAS;CACxE,MAAMA,IAAAA,EAAE,MAAMA,IAAAA,EAAE,OAAO,CAAC,CAAC,CAAC,SAAS,wCAAwC;CAC3E,MAAM,8BAA8B,SAAS;CAC7C,OAAOA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,0CAA0C,CAAC,CAAC,SAAS;CAChF,OAAOA,IAAAA,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,SAAS,gCAAgC,CAAC,CAAC,SAAS;CAC5E,QAAQA,IAAAA,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,SAAS,iCAAiC,CAAC,CAAC,SAAS;CAC9E,UAAUA,IAAAA,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,SAAS,kCAAkC,CAAC,CAAC,SAAS;CACjF,aAAaA,IAAAA,EAAE,MAAM,kCAAkC,CAAC,CAAC,SAAS,wDAAwD;CAC1H,gBAAgBA,IAAAA,EAAE,MAAM,qCAAqC,CAAC,CAAC,SAAS,uCAAuC;AACjH,CAAC,CAAC,CAAC,SAAS,sDAAsD;AAElE,MAAa,qBAAqBC,eAAAA,OAAO,0BAA0B;CACjE,MAAM;CACN,MAAM;CACN,aAAa;CACb,OAAO;CACP,QAAQ;AACV,CAAC"}
|
|
@@ -1,9 +1,40 @@
|
|
|
1
1
|
import { z } from "zod";
|
|
2
2
|
|
|
3
3
|
//#region src/actions/get-video-by-id.d.ts
|
|
4
|
-
declare const PexelsGetVideoByIdInput: z.
|
|
5
|
-
|
|
6
|
-
|
|
4
|
+
declare const PexelsGetVideoByIdInput: z.ZodObject<{
|
|
5
|
+
id: z.ZodNumber;
|
|
6
|
+
}, z.core.$strip>;
|
|
7
|
+
declare const PexelsGetVideoByIdOutput: z.ZodObject<{
|
|
8
|
+
id: z.ZodNullable<z.ZodNumber>;
|
|
9
|
+
url: z.ZodNullable<z.ZodString>;
|
|
10
|
+
tags: z.ZodArray<z.ZodString>;
|
|
11
|
+
user: z.ZodNullable<z.ZodObject<{
|
|
12
|
+
id: z.ZodNullable<z.ZodNumber>;
|
|
13
|
+
url: z.ZodNullable<z.ZodString>;
|
|
14
|
+
name: z.ZodNullable<z.ZodString>;
|
|
15
|
+
}, z.core.$strip>>;
|
|
16
|
+
image: z.ZodNullable<z.ZodString>;
|
|
17
|
+
width: z.ZodNullable<z.ZodNumber>;
|
|
18
|
+
height: z.ZodNullable<z.ZodNumber>;
|
|
19
|
+
duration: z.ZodNullable<z.ZodNumber>;
|
|
20
|
+
video_files: z.ZodArray<z.ZodObject<{
|
|
21
|
+
id: z.ZodNullable<z.ZodNumber>;
|
|
22
|
+
fps: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
23
|
+
link: z.ZodNullable<z.ZodString>;
|
|
24
|
+
width: z.ZodNullable<z.ZodNumber>;
|
|
25
|
+
height: z.ZodNullable<z.ZodNumber>;
|
|
26
|
+
quality: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
27
|
+
file_type: z.ZodNullable<z.ZodString>;
|
|
28
|
+
}, z.core.$strip>>;
|
|
29
|
+
video_pictures: z.ZodArray<z.ZodObject<{
|
|
30
|
+
id: z.ZodNullable<z.ZodNumber>;
|
|
31
|
+
nr: z.ZodNullable<z.ZodNumber>;
|
|
32
|
+
picture: z.ZodNullable<z.ZodString>;
|
|
33
|
+
}, z.core.$strip>>;
|
|
34
|
+
}, z.core.$strip>;
|
|
35
|
+
declare const pexelsGetVideoById: import("@keystrokehq/action").WorkflowActionDefinition<{
|
|
36
|
+
id: number;
|
|
37
|
+
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
|
|
7
38
|
//#endregion
|
|
8
39
|
export { pexelsGetVideoById };
|
|
9
40
|
//# sourceMappingURL=get-video-by-id.d.cts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"get-video-by-id.d.cts","names":[],"sources":["../../src/actions/get-video-by-id.ts"],"mappings":";;;cAIa,uBAAA,
|
|
1
|
+
{"version":3,"file":"get-video-by-id.d.cts","names":[],"sources":["../../src/actions/get-video-by-id.ts"],"mappings":";;;cAIa,uBAAA,EAAuB,CAAA,CAAA,SAAA;;;cAsBvB,wBAAA,EAAwB,CAAA,CAAA,SAAA;;;;;;;;;;;;;;;;;;;;;;;;;;;;cAaxB,kBAAA,gCAAkB,wBAAA"}
|
|
@@ -1,9 +1,40 @@
|
|
|
1
1
|
import { z } from "zod";
|
|
2
2
|
|
|
3
3
|
//#region src/actions/get-video-by-id.d.ts
|
|
4
|
-
declare const PexelsGetVideoByIdInput: z.
|
|
5
|
-
|
|
6
|
-
|
|
4
|
+
declare const PexelsGetVideoByIdInput: z.ZodObject<{
|
|
5
|
+
id: z.ZodNumber;
|
|
6
|
+
}, z.core.$strip>;
|
|
7
|
+
declare const PexelsGetVideoByIdOutput: z.ZodObject<{
|
|
8
|
+
id: z.ZodNullable<z.ZodNumber>;
|
|
9
|
+
url: z.ZodNullable<z.ZodString>;
|
|
10
|
+
tags: z.ZodArray<z.ZodString>;
|
|
11
|
+
user: z.ZodNullable<z.ZodObject<{
|
|
12
|
+
id: z.ZodNullable<z.ZodNumber>;
|
|
13
|
+
url: z.ZodNullable<z.ZodString>;
|
|
14
|
+
name: z.ZodNullable<z.ZodString>;
|
|
15
|
+
}, z.core.$strip>>;
|
|
16
|
+
image: z.ZodNullable<z.ZodString>;
|
|
17
|
+
width: z.ZodNullable<z.ZodNumber>;
|
|
18
|
+
height: z.ZodNullable<z.ZodNumber>;
|
|
19
|
+
duration: z.ZodNullable<z.ZodNumber>;
|
|
20
|
+
video_files: z.ZodArray<z.ZodObject<{
|
|
21
|
+
id: z.ZodNullable<z.ZodNumber>;
|
|
22
|
+
fps: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
23
|
+
link: z.ZodNullable<z.ZodString>;
|
|
24
|
+
width: z.ZodNullable<z.ZodNumber>;
|
|
25
|
+
height: z.ZodNullable<z.ZodNumber>;
|
|
26
|
+
quality: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
27
|
+
file_type: z.ZodNullable<z.ZodString>;
|
|
28
|
+
}, z.core.$strip>>;
|
|
29
|
+
video_pictures: z.ZodArray<z.ZodObject<{
|
|
30
|
+
id: z.ZodNullable<z.ZodNumber>;
|
|
31
|
+
nr: z.ZodNullable<z.ZodNumber>;
|
|
32
|
+
picture: z.ZodNullable<z.ZodString>;
|
|
33
|
+
}, z.core.$strip>>;
|
|
34
|
+
}, z.core.$strip>;
|
|
35
|
+
declare const pexelsGetVideoById: import("@keystrokehq/action").WorkflowActionDefinition<{
|
|
36
|
+
id: number;
|
|
37
|
+
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
|
|
7
38
|
//#endregion
|
|
8
39
|
export { pexelsGetVideoById };
|
|
9
40
|
//# sourceMappingURL=get-video-by-id.d.mts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"get-video-by-id.d.mts","names":[],"sources":["../../src/actions/get-video-by-id.ts"],"mappings":";;;cAIa,uBAAA,
|
|
1
|
+
{"version":3,"file":"get-video-by-id.d.mts","names":[],"sources":["../../src/actions/get-video-by-id.ts"],"mappings":";;;cAIa,uBAAA,EAAuB,CAAA,CAAA,SAAA;;;cAsBvB,wBAAA,EAAwB,CAAA,CAAA,SAAA;;;;;;;;;;;;;;;;;;;;;;;;;;;;cAaxB,kBAAA,gCAAkB,wBAAA"}
|
|
@@ -3,23 +3,23 @@ import { z } from "zod";
|
|
|
3
3
|
//#region src/actions/get-video-by-id.ts
|
|
4
4
|
const PexelsGetVideoByIdInput = z.object({ id: z.number().int().describe("The unique identifier of the video to retrieve") }).describe("Request schema for retrieving a specific video by its ID.");
|
|
5
5
|
const PexelsGetVideoById_UserSchema = z.object({
|
|
6
|
-
id: z.number().int().describe("Unique identifier of the videographer"),
|
|
7
|
-
url: z.string().describe("URL to the videographer's Pexels profile"),
|
|
8
|
-
name: z.string().describe("Name of the videographer")
|
|
6
|
+
id: z.number().int().describe("Unique identifier of the videographer").nullable(),
|
|
7
|
+
url: z.string().describe("URL to the videographer's Pexels profile").nullable(),
|
|
8
|
+
name: z.string().describe("Name of the videographer").nullable()
|
|
9
9
|
}).describe("Information about the videographer.");
|
|
10
10
|
const PexelsGetVideoById_VideoFileSchema = z.object({
|
|
11
|
-
id: z.number().int().describe("Unique identifier of the video file"),
|
|
11
|
+
id: z.number().int().describe("Unique identifier of the video file").nullable(),
|
|
12
12
|
fps: z.number().describe("Frames per second of the video file").nullable().optional(),
|
|
13
|
-
link: z.string().describe("Direct download URL for this video file version"),
|
|
14
|
-
width: z.number().int().describe("Width of this video file version in pixels"),
|
|
15
|
-
height: z.number().int().describe("Height of this video file version in pixels"),
|
|
13
|
+
link: z.string().describe("Direct download URL for this video file version").nullable(),
|
|
14
|
+
width: z.number().int().describe("Width of this video file version in pixels").nullable(),
|
|
15
|
+
height: z.number().int().describe("Height of this video file version in pixels").nullable(),
|
|
16
16
|
quality: z.string().describe("Quality level (e.g., 'sd', 'hd', 'uhd')").nullable().optional(),
|
|
17
|
-
file_type: z.string().describe("MIME type of the video file (e.g., 'video/mp4')")
|
|
17
|
+
file_type: z.string().describe("MIME type of the video file (e.g., 'video/mp4')").nullable()
|
|
18
18
|
}).describe("A video file variant with specific quality and dimensions.");
|
|
19
19
|
const PexelsGetVideoById_VideoPictureSchema = z.object({
|
|
20
|
-
id: z.number().int().describe("Unique identifier of the preview picture"),
|
|
21
|
-
nr: z.number().int().describe("Picture number/index"),
|
|
22
|
-
picture: z.string().describe("URL to the preview image")
|
|
20
|
+
id: z.number().int().describe("Unique identifier of the preview picture").nullable(),
|
|
21
|
+
nr: z.number().int().describe("Picture number/index").nullable(),
|
|
22
|
+
picture: z.string().describe("URL to the preview image").nullable()
|
|
23
23
|
}).describe("A preview image for the video.");
|
|
24
24
|
const pexelsGetVideoById = action("PEXELS_GET_VIDEO_BY_ID", {
|
|
25
25
|
slug: "pexels-get-video-by-id",
|
|
@@ -27,14 +27,14 @@ const pexelsGetVideoById = action("PEXELS_GET_VIDEO_BY_ID", {
|
|
|
27
27
|
description: "Tool to retrieve detailed information about a specific video from Pexels. Use when you have a valid video ID to fetch metadata including dimensions, duration, videographer details, and available video file versions.",
|
|
28
28
|
input: PexelsGetVideoByIdInput,
|
|
29
29
|
output: z.object({
|
|
30
|
-
id: z.number().int().describe("Unique identifier for the video"),
|
|
31
|
-
url: z.string().describe("Pexels.com page URL for this video"),
|
|
30
|
+
id: z.number().int().describe("Unique identifier for the video").nullable(),
|
|
31
|
+
url: z.string().describe("Pexels.com page URL for this video").nullable(),
|
|
32
32
|
tags: z.array(z.string()).describe("List of tags associated with the video"),
|
|
33
33
|
user: PexelsGetVideoById_UserSchema.nullable(),
|
|
34
|
-
image: z.string().describe("URL to a preview screenshot of the video"),
|
|
35
|
-
width: z.number().int().describe("Original video width in pixels"),
|
|
36
|
-
height: z.number().int().describe("Original video height in pixels"),
|
|
37
|
-
duration: z.number().int().describe("Duration of the video in seconds"),
|
|
34
|
+
image: z.string().describe("URL to a preview screenshot of the video").nullable(),
|
|
35
|
+
width: z.number().int().describe("Original video width in pixels").nullable(),
|
|
36
|
+
height: z.number().int().describe("Original video height in pixels").nullable(),
|
|
37
|
+
duration: z.number().int().describe("Duration of the video in seconds").nullable(),
|
|
38
38
|
video_files: z.array(PexelsGetVideoById_VideoFileSchema).describe("Array of different sized/quality versions of the video"),
|
|
39
39
|
video_pictures: z.array(PexelsGetVideoById_VideoPictureSchema).describe("Array of preview images for the video")
|
|
40
40
|
}).describe("Detailed information for a single video from Pexels.")
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"get-video-by-id.mjs","names":[],"sources":["../../src/actions/get-video-by-id.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const PexelsGetVideoByIdInput
|
|
1
|
+
{"version":3,"file":"get-video-by-id.mjs","names":[],"sources":["../../src/actions/get-video-by-id.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const PexelsGetVideoByIdInput = z.object({\n id: z.number().int().describe(\"The unique identifier of the video to retrieve\"),\n}).describe(\"Request schema for retrieving a specific video by its ID.\");\nconst PexelsGetVideoById_UserSchema = z.object({\n id: z.number().int().describe(\"Unique identifier of the videographer\").nullable(),\n url: z.string().describe(\"URL to the videographer's Pexels profile\").nullable(),\n name: z.string().describe(\"Name of the videographer\").nullable(),\n}).describe(\"Information about the videographer.\");\nconst PexelsGetVideoById_VideoFileSchema = z.object({\n id: z.number().int().describe(\"Unique identifier of the video file\").nullable(),\n fps: z.number().describe(\"Frames per second of the video file\").nullable().optional(),\n link: z.string().describe(\"Direct download URL for this video file version\").nullable(),\n width: z.number().int().describe(\"Width of this video file version in pixels\").nullable(),\n height: z.number().int().describe(\"Height of this video file version in pixels\").nullable(),\n quality: z.string().describe(\"Quality level (e.g., 'sd', 'hd', 'uhd')\").nullable().optional(),\n file_type: z.string().describe(\"MIME type of the video file (e.g., 'video/mp4')\").nullable(),\n}).describe(\"A video file variant with specific quality and dimensions.\");\nconst PexelsGetVideoById_VideoPictureSchema = z.object({\n id: z.number().int().describe(\"Unique identifier of the preview picture\").nullable(),\n nr: z.number().int().describe(\"Picture number/index\").nullable(),\n picture: z.string().describe(\"URL to the preview image\").nullable(),\n}).describe(\"A preview image for the video.\");\nexport const PexelsGetVideoByIdOutput = z.object({\n id: z.number().int().describe(\"Unique identifier for the video\").nullable(),\n url: z.string().describe(\"Pexels.com page URL for this video\").nullable(),\n tags: z.array(z.string()).describe(\"List of tags associated with the video\"),\n user: PexelsGetVideoById_UserSchema.nullable(),\n image: z.string().describe(\"URL to a preview screenshot of the video\").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(\"Duration of the video in seconds\").nullable(),\n video_files: z.array(PexelsGetVideoById_VideoFileSchema).describe(\"Array of different sized/quality versions of the video\"),\n video_pictures: z.array(PexelsGetVideoById_VideoPictureSchema).describe(\"Array of preview images for the video\"),\n}).describe(\"Detailed information for a single video from Pexels.\");\n\nexport const pexelsGetVideoById = action(\"PEXELS_GET_VIDEO_BY_ID\", {\n slug: \"pexels-get-video-by-id\",\n name: \"Get Video by ID\",\n description: \"Tool to retrieve detailed information about a specific video from Pexels. Use when you have a valid video ID to fetch metadata including dimensions, duration, videographer details, and available video file versions.\",\n input: PexelsGetVideoByIdInput,\n output: PexelsGetVideoByIdOutput,\n});\n"],"mappings":";;;AAIA,MAAa,0BAA0B,EAAE,OAAO,EAC9C,IAAI,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,SAAS,gDAAgD,EAChF,CAAC,CAAC,CAAC,SAAS,2DAA2D;AACvE,MAAM,gCAAgC,EAAE,OAAO;CAC7C,IAAI,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,SAAS,uCAAuC,CAAC,CAAC,SAAS;CAChF,KAAK,EAAE,OAAO,CAAC,CAAC,SAAS,0CAA0C,CAAC,CAAC,SAAS;CAC9E,MAAM,EAAE,OAAO,CAAC,CAAC,SAAS,0BAA0B,CAAC,CAAC,SAAS;AACjE,CAAC,CAAC,CAAC,SAAS,qCAAqC;AACjD,MAAM,qCAAqC,EAAE,OAAO;CAClD,IAAI,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,SAAS,qCAAqC,CAAC,CAAC,SAAS;CAC9E,KAAK,EAAE,OAAO,CAAC,CAAC,SAAS,qCAAqC,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CACpF,MAAM,EAAE,OAAO,CAAC,CAAC,SAAS,iDAAiD,CAAC,CAAC,SAAS;CACtF,OAAO,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,SAAS,4CAA4C,CAAC,CAAC,SAAS;CACxF,QAAQ,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,SAAS,6CAA6C,CAAC,CAAC,SAAS;CAC1F,SAAS,EAAE,OAAO,CAAC,CAAC,SAAS,yCAAyC,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CAC5F,WAAW,EAAE,OAAO,CAAC,CAAC,SAAS,iDAAiD,CAAC,CAAC,SAAS;AAC7F,CAAC,CAAC,CAAC,SAAS,4DAA4D;AACxE,MAAM,wCAAwC,EAAE,OAAO;CACrD,IAAI,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,SAAS,0CAA0C,CAAC,CAAC,SAAS;CACnF,IAAI,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,SAAS,sBAAsB,CAAC,CAAC,SAAS;CAC/D,SAAS,EAAE,OAAO,CAAC,CAAC,SAAS,0BAA0B,CAAC,CAAC,SAAS;AACpE,CAAC,CAAC,CAAC,SAAS,gCAAgC;AAc5C,MAAa,qBAAqB,OAAO,0BAA0B;CACjE,MAAM;CACN,MAAM;CACN,aAAa;CACb,OAAO;CACP,QAlBsC,EAAE,OAAO;EAC/C,IAAI,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,SAAS,iCAAiC,CAAC,CAAC,SAAS;EAC1E,KAAK,EAAE,OAAO,CAAC,CAAC,SAAS,oCAAoC,CAAC,CAAC,SAAS;EACxE,MAAM,EAAE,MAAM,EAAE,OAAO,CAAC,CAAC,CAAC,SAAS,wCAAwC;EAC3E,MAAM,8BAA8B,SAAS;EAC7C,OAAO,EAAE,OAAO,CAAC,CAAC,SAAS,0CAA0C,CAAC,CAAC,SAAS;EAChF,OAAO,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,SAAS,gCAAgC,CAAC,CAAC,SAAS;EAC5E,QAAQ,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,SAAS,iCAAiC,CAAC,CAAC,SAAS;EAC9E,UAAU,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,SAAS,kCAAkC,CAAC,CAAC,SAAS;EACjF,aAAa,EAAE,MAAM,kCAAkC,CAAC,CAAC,SAAS,wDAAwD;EAC1H,gBAAgB,EAAE,MAAM,qCAAqC,CAAC,CAAC,SAAS,uCAAuC;CACjH,CAAC,CAAC,CAAC,SAAS,sDAOF;AACV,CAAC"}
|
|
@@ -6,19 +6,19 @@ const PexelsMyCollectionsInput = zod.z.object({
|
|
|
6
6
|
per_page: zod.z.number().int().default(15).describe("Number of collections per page, between 1 and 80").optional()
|
|
7
7
|
}).describe("Request model for retrieving user collections with pagination.");
|
|
8
8
|
const PexelsMyCollections_CollectionSchema = zod.z.object({
|
|
9
|
-
id: zod.z.number().int().describe("Collection ID"),
|
|
10
|
-
title: zod.z.string().describe("Collection title"),
|
|
11
|
-
private: zod.z.boolean().describe("Whether the collection is private"),
|
|
9
|
+
id: zod.z.number().int().describe("Collection ID").nullable(),
|
|
10
|
+
title: zod.z.string().describe("Collection title").nullable(),
|
|
11
|
+
private: zod.z.boolean().describe("Whether the collection is private").nullable(),
|
|
12
12
|
description: zod.z.string().describe("Collection description, if provided").nullable().optional(),
|
|
13
|
-
media_count: zod.z.number().int().describe("Total media items in the collection"),
|
|
14
|
-
photos_count: zod.z.number().int().describe("Number of photos in the collection"),
|
|
15
|
-
videos_count: zod.z.number().int().describe("Number of videos in the collection")
|
|
13
|
+
media_count: zod.z.number().int().describe("Total media items in the collection").nullable(),
|
|
14
|
+
photos_count: zod.z.number().int().describe("Number of photos in the collection").nullable(),
|
|
15
|
+
videos_count: zod.z.number().int().describe("Number of videos in the collection").nullable()
|
|
16
16
|
}).describe("Represents a Pexels collection.");
|
|
17
17
|
const PexelsMyCollectionsOutput = zod.z.object({
|
|
18
|
-
page: zod.z.number().int().describe("Current page number returned"),
|
|
19
|
-
per_page: zod.z.number().int().describe("Number of collections per page returned"),
|
|
18
|
+
page: zod.z.number().int().describe("Current page number returned").nullable(),
|
|
19
|
+
per_page: zod.z.number().int().describe("Number of collections per page returned").nullable(),
|
|
20
20
|
collections: zod.z.array(PexelsMyCollections_CollectionSchema).describe("List of user collections"),
|
|
21
|
-
total_results: zod.z.number().int().describe("Total number of collections")
|
|
21
|
+
total_results: zod.z.number().int().describe("Total number of collections").nullable()
|
|
22
22
|
}).describe("Response model for user collections listing.");
|
|
23
23
|
const pexelsMyCollections = require_action.action("PEXELS_MY_COLLECTIONS", {
|
|
24
24
|
slug: "pexels-my-collections",
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"my-collections.cjs","names":["z","action"],"sources":["../../src/actions/my-collections.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const PexelsMyCollectionsInput
|
|
1
|
+
{"version":3,"file":"my-collections.cjs","names":["z","action"],"sources":["../../src/actions/my-collections.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const PexelsMyCollectionsInput = z.object({\n page: z.number().int().default(1).describe(\"Page number to retrieve, must be >= 1\").optional(),\n per_page: z.number().int().default(15).describe(\"Number of collections per page, between 1 and 80\").optional(),\n}).describe(\"Request model for retrieving user collections with pagination.\");\nconst PexelsMyCollections_CollectionSchema = z.object({\n id: z.number().int().describe(\"Collection ID\").nullable(),\n title: z.string().describe(\"Collection title\").nullable(),\n private: z.boolean().describe(\"Whether the collection is private\").nullable(),\n description: z.string().describe(\"Collection description, if provided\").nullable().optional(),\n media_count: z.number().int().describe(\"Total media items in the collection\").nullable(),\n photos_count: z.number().int().describe(\"Number of photos in the collection\").nullable(),\n videos_count: z.number().int().describe(\"Number of videos in the collection\").nullable(),\n}).describe(\"Represents a Pexels collection.\");\nexport const PexelsMyCollectionsOutput = z.object({\n page: z.number().int().describe(\"Current page number returned\").nullable(),\n per_page: z.number().int().describe(\"Number of collections per page returned\").nullable(),\n collections: z.array(PexelsMyCollections_CollectionSchema).describe(\"List of user collections\"),\n total_results: z.number().int().describe(\"Total number of collections\").nullable(),\n}).describe(\"Response model for user collections listing.\");\n\nexport const pexelsMyCollections = action(\"PEXELS_MY_COLLECTIONS\", {\n slug: \"pexels-my-collections\",\n name: \"Get My Collections\",\n description: \"Tool to get all of the user's collections on Pexels. Use when you need to list a user's collections with pagination support.\",\n input: PexelsMyCollectionsInput,\n output: PexelsMyCollectionsOutput,\n});\n"],"mappings":";;;AAIA,MAAa,2BAA2BA,IAAAA,EAAE,OAAO;CAC/C,MAAMA,IAAAA,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,QAAQ,CAAC,CAAC,CAAC,SAAS,uCAAuC,CAAC,CAAC,SAAS;CAC7F,UAAUA,IAAAA,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,QAAQ,EAAE,CAAC,CAAC,SAAS,kDAAkD,CAAC,CAAC,SAAS;AAC/G,CAAC,CAAC,CAAC,SAAS,gEAAgE;AAC5E,MAAM,uCAAuCA,IAAAA,EAAE,OAAO;CACpD,IAAIA,IAAAA,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,SAAS,eAAe,CAAC,CAAC,SAAS;CACxD,OAAOA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,kBAAkB,CAAC,CAAC,SAAS;CACxD,SAASA,IAAAA,EAAE,QAAQ,CAAC,CAAC,SAAS,mCAAmC,CAAC,CAAC,SAAS;CAC5E,aAAaA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,qCAAqC,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CAC5F,aAAaA,IAAAA,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,SAAS,qCAAqC,CAAC,CAAC,SAAS;CACvF,cAAcA,IAAAA,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,SAAS,oCAAoC,CAAC,CAAC,SAAS;CACvF,cAAcA,IAAAA,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,SAAS,oCAAoC,CAAC,CAAC,SAAS;AACzF,CAAC,CAAC,CAAC,SAAS,iCAAiC;AAC7C,MAAa,4BAA4BA,IAAAA,EAAE,OAAO;CAChD,MAAMA,IAAAA,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,SAAS,8BAA8B,CAAC,CAAC,SAAS;CACzE,UAAUA,IAAAA,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,SAAS,yCAAyC,CAAC,CAAC,SAAS;CACxF,aAAaA,IAAAA,EAAE,MAAM,oCAAoC,CAAC,CAAC,SAAS,0BAA0B;CAC9F,eAAeA,IAAAA,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,SAAS,6BAA6B,CAAC,CAAC,SAAS;AACnF,CAAC,CAAC,CAAC,SAAS,8CAA8C;AAE1D,MAAa,sBAAsBC,eAAAA,OAAO,yBAAyB;CACjE,MAAM;CACN,MAAM;CACN,aAAa;CACb,OAAO;CACP,QAAQ;AACV,CAAC"}
|
|
@@ -1,9 +1,28 @@
|
|
|
1
1
|
import { z } from "zod";
|
|
2
2
|
|
|
3
3
|
//#region src/actions/my-collections.d.ts
|
|
4
|
-
declare const PexelsMyCollectionsInput: z.
|
|
5
|
-
|
|
6
|
-
|
|
4
|
+
declare const PexelsMyCollectionsInput: z.ZodObject<{
|
|
5
|
+
page: z.ZodOptional<z.ZodDefault<z.ZodNumber>>;
|
|
6
|
+
per_page: z.ZodOptional<z.ZodDefault<z.ZodNumber>>;
|
|
7
|
+
}, z.core.$strip>;
|
|
8
|
+
declare const PexelsMyCollectionsOutput: z.ZodObject<{
|
|
9
|
+
page: z.ZodNullable<z.ZodNumber>;
|
|
10
|
+
per_page: z.ZodNullable<z.ZodNumber>;
|
|
11
|
+
collections: z.ZodArray<z.ZodObject<{
|
|
12
|
+
id: z.ZodNullable<z.ZodNumber>;
|
|
13
|
+
title: z.ZodNullable<z.ZodString>;
|
|
14
|
+
private: z.ZodNullable<z.ZodBoolean>;
|
|
15
|
+
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
16
|
+
media_count: z.ZodNullable<z.ZodNumber>;
|
|
17
|
+
photos_count: z.ZodNullable<z.ZodNumber>;
|
|
18
|
+
videos_count: z.ZodNullable<z.ZodNumber>;
|
|
19
|
+
}, z.core.$strip>>;
|
|
20
|
+
total_results: z.ZodNullable<z.ZodNumber>;
|
|
21
|
+
}, z.core.$strip>;
|
|
22
|
+
declare const pexelsMyCollections: import("@keystrokehq/action").WorkflowActionDefinition<{
|
|
23
|
+
page?: number | undefined;
|
|
24
|
+
per_page?: number | undefined;
|
|
25
|
+
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
|
|
7
26
|
//#endregion
|
|
8
27
|
export { pexelsMyCollections };
|
|
9
28
|
//# sourceMappingURL=my-collections.d.cts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"my-collections.d.cts","names":[],"sources":["../../src/actions/my-collections.ts"],"mappings":";;;cAIa,wBAAA,
|
|
1
|
+
{"version":3,"file":"my-collections.d.cts","names":[],"sources":["../../src/actions/my-collections.ts"],"mappings":";;;cAIa,wBAAA,EAAwB,CAAA,CAAA,SAAA;;;;cAaxB,yBAAA,EAAyB,CAAA,CAAA,SAAA;;;;;;;;;;;;;;cAOzB,mBAAA,gCAAmB,wBAAA"}
|
|
@@ -1,9 +1,28 @@
|
|
|
1
1
|
import { z } from "zod";
|
|
2
2
|
|
|
3
3
|
//#region src/actions/my-collections.d.ts
|
|
4
|
-
declare const PexelsMyCollectionsInput: z.
|
|
5
|
-
|
|
6
|
-
|
|
4
|
+
declare const PexelsMyCollectionsInput: z.ZodObject<{
|
|
5
|
+
page: z.ZodOptional<z.ZodDefault<z.ZodNumber>>;
|
|
6
|
+
per_page: z.ZodOptional<z.ZodDefault<z.ZodNumber>>;
|
|
7
|
+
}, z.core.$strip>;
|
|
8
|
+
declare const PexelsMyCollectionsOutput: z.ZodObject<{
|
|
9
|
+
page: z.ZodNullable<z.ZodNumber>;
|
|
10
|
+
per_page: z.ZodNullable<z.ZodNumber>;
|
|
11
|
+
collections: z.ZodArray<z.ZodObject<{
|
|
12
|
+
id: z.ZodNullable<z.ZodNumber>;
|
|
13
|
+
title: z.ZodNullable<z.ZodString>;
|
|
14
|
+
private: z.ZodNullable<z.ZodBoolean>;
|
|
15
|
+
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
16
|
+
media_count: z.ZodNullable<z.ZodNumber>;
|
|
17
|
+
photos_count: z.ZodNullable<z.ZodNumber>;
|
|
18
|
+
videos_count: z.ZodNullable<z.ZodNumber>;
|
|
19
|
+
}, z.core.$strip>>;
|
|
20
|
+
total_results: z.ZodNullable<z.ZodNumber>;
|
|
21
|
+
}, z.core.$strip>;
|
|
22
|
+
declare const pexelsMyCollections: import("@keystrokehq/action").WorkflowActionDefinition<{
|
|
23
|
+
page?: number | undefined;
|
|
24
|
+
per_page?: number | undefined;
|
|
25
|
+
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
|
|
7
26
|
//#endregion
|
|
8
27
|
export { pexelsMyCollections };
|
|
9
28
|
//# sourceMappingURL=my-collections.d.mts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"my-collections.d.mts","names":[],"sources":["../../src/actions/my-collections.ts"],"mappings":";;;cAIa,wBAAA,
|
|
1
|
+
{"version":3,"file":"my-collections.d.mts","names":[],"sources":["../../src/actions/my-collections.ts"],"mappings":";;;cAIa,wBAAA,EAAwB,CAAA,CAAA,SAAA;;;;cAaxB,yBAAA,EAAyB,CAAA,CAAA,SAAA;;;;;;;;;;;;;;cAOzB,mBAAA,gCAAmB,wBAAA"}
|
|
@@ -6,13 +6,13 @@ const PexelsMyCollectionsInput = z.object({
|
|
|
6
6
|
per_page: z.number().int().default(15).describe("Number of collections per page, between 1 and 80").optional()
|
|
7
7
|
}).describe("Request model for retrieving user collections with pagination.");
|
|
8
8
|
const PexelsMyCollections_CollectionSchema = z.object({
|
|
9
|
-
id: z.number().int().describe("Collection ID"),
|
|
10
|
-
title: z.string().describe("Collection title"),
|
|
11
|
-
private: z.boolean().describe("Whether the collection is private"),
|
|
9
|
+
id: z.number().int().describe("Collection ID").nullable(),
|
|
10
|
+
title: z.string().describe("Collection title").nullable(),
|
|
11
|
+
private: z.boolean().describe("Whether the collection is private").nullable(),
|
|
12
12
|
description: z.string().describe("Collection description, if provided").nullable().optional(),
|
|
13
|
-
media_count: z.number().int().describe("Total media items in the collection"),
|
|
14
|
-
photos_count: z.number().int().describe("Number of photos in the collection"),
|
|
15
|
-
videos_count: z.number().int().describe("Number of videos in the collection")
|
|
13
|
+
media_count: z.number().int().describe("Total media items in the collection").nullable(),
|
|
14
|
+
photos_count: z.number().int().describe("Number of photos in the collection").nullable(),
|
|
15
|
+
videos_count: z.number().int().describe("Number of videos in the collection").nullable()
|
|
16
16
|
}).describe("Represents a Pexels collection.");
|
|
17
17
|
const pexelsMyCollections = action("PEXELS_MY_COLLECTIONS", {
|
|
18
18
|
slug: "pexels-my-collections",
|
|
@@ -20,10 +20,10 @@ const pexelsMyCollections = action("PEXELS_MY_COLLECTIONS", {
|
|
|
20
20
|
description: "Tool to get all of the user's collections on Pexels. Use when you need to list a user's collections with pagination support.",
|
|
21
21
|
input: PexelsMyCollectionsInput,
|
|
22
22
|
output: z.object({
|
|
23
|
-
page: z.number().int().describe("Current page number returned"),
|
|
24
|
-
per_page: z.number().int().describe("Number of collections per page returned"),
|
|
23
|
+
page: z.number().int().describe("Current page number returned").nullable(),
|
|
24
|
+
per_page: z.number().int().describe("Number of collections per page returned").nullable(),
|
|
25
25
|
collections: z.array(PexelsMyCollections_CollectionSchema).describe("List of user collections"),
|
|
26
|
-
total_results: z.number().int().describe("Total number of collections")
|
|
26
|
+
total_results: z.number().int().describe("Total number of collections").nullable()
|
|
27
27
|
}).describe("Response model for user collections listing.")
|
|
28
28
|
});
|
|
29
29
|
//#endregion
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"my-collections.mjs","names":[],"sources":["../../src/actions/my-collections.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const PexelsMyCollectionsInput
|
|
1
|
+
{"version":3,"file":"my-collections.mjs","names":[],"sources":["../../src/actions/my-collections.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const PexelsMyCollectionsInput = z.object({\n page: z.number().int().default(1).describe(\"Page number to retrieve, must be >= 1\").optional(),\n per_page: z.number().int().default(15).describe(\"Number of collections per page, between 1 and 80\").optional(),\n}).describe(\"Request model for retrieving user collections with pagination.\");\nconst PexelsMyCollections_CollectionSchema = z.object({\n id: z.number().int().describe(\"Collection ID\").nullable(),\n title: z.string().describe(\"Collection title\").nullable(),\n private: z.boolean().describe(\"Whether the collection is private\").nullable(),\n description: z.string().describe(\"Collection description, if provided\").nullable().optional(),\n media_count: z.number().int().describe(\"Total media items in the collection\").nullable(),\n photos_count: z.number().int().describe(\"Number of photos in the collection\").nullable(),\n videos_count: z.number().int().describe(\"Number of videos in the collection\").nullable(),\n}).describe(\"Represents a Pexels collection.\");\nexport const PexelsMyCollectionsOutput = z.object({\n page: z.number().int().describe(\"Current page number returned\").nullable(),\n per_page: z.number().int().describe(\"Number of collections per page returned\").nullable(),\n collections: z.array(PexelsMyCollections_CollectionSchema).describe(\"List of user collections\"),\n total_results: z.number().int().describe(\"Total number of collections\").nullable(),\n}).describe(\"Response model for user collections listing.\");\n\nexport const pexelsMyCollections = action(\"PEXELS_MY_COLLECTIONS\", {\n slug: \"pexels-my-collections\",\n name: \"Get My Collections\",\n description: \"Tool to get all of the user's collections on Pexels. Use when you need to list a user's collections with pagination support.\",\n input: PexelsMyCollectionsInput,\n output: PexelsMyCollectionsOutput,\n});\n"],"mappings":";;;AAIA,MAAa,2BAA2B,EAAE,OAAO;CAC/C,MAAM,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,QAAQ,CAAC,CAAC,CAAC,SAAS,uCAAuC,CAAC,CAAC,SAAS;CAC7F,UAAU,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,QAAQ,EAAE,CAAC,CAAC,SAAS,kDAAkD,CAAC,CAAC,SAAS;AAC/G,CAAC,CAAC,CAAC,SAAS,gEAAgE;AAC5E,MAAM,uCAAuC,EAAE,OAAO;CACpD,IAAI,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,SAAS,eAAe,CAAC,CAAC,SAAS;CACxD,OAAO,EAAE,OAAO,CAAC,CAAC,SAAS,kBAAkB,CAAC,CAAC,SAAS;CACxD,SAAS,EAAE,QAAQ,CAAC,CAAC,SAAS,mCAAmC,CAAC,CAAC,SAAS;CAC5E,aAAa,EAAE,OAAO,CAAC,CAAC,SAAS,qCAAqC,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CAC5F,aAAa,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,SAAS,qCAAqC,CAAC,CAAC,SAAS;CACvF,cAAc,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,SAAS,oCAAoC,CAAC,CAAC,SAAS;CACvF,cAAc,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,SAAS,oCAAoC,CAAC,CAAC,SAAS;AACzF,CAAC,CAAC,CAAC,SAAS,iCAAiC;AAQ7C,MAAa,sBAAsB,OAAO,yBAAyB;CACjE,MAAM;CACN,MAAM;CACN,aAAa;CACb,OAAO;CACP,QAZuC,EAAE,OAAO;EAChD,MAAM,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,SAAS,8BAA8B,CAAC,CAAC,SAAS;EACzE,UAAU,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,SAAS,yCAAyC,CAAC,CAAC,SAAS;EACxF,aAAa,EAAE,MAAM,oCAAoC,CAAC,CAAC,SAAS,0BAA0B;EAC9F,eAAe,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,SAAS,6BAA6B,CAAC,CAAC,SAAS;CACnF,CAAC,CAAC,CAAC,SAAS,8CAOF;AACV,CAAC"}
|
|
@@ -6,44 +6,44 @@ const PexelsPopularVideosInput = zod.z.object({
|
|
|
6
6
|
per_page: zod.z.number().int().describe("Number of videos per page (1–80). Default is 15.").optional()
|
|
7
7
|
}).describe("Request parameters for retrieving popular videos from Pexels.");
|
|
8
8
|
const PexelsPopularVideos_UserModelSchema = zod.z.object({
|
|
9
|
-
id: zod.z.number().int().describe("ID of the video author."),
|
|
10
|
-
url: zod.z.string().describe("URL of the author's profile."),
|
|
11
|
-
name: zod.z.string().describe("Name of the video author.")
|
|
9
|
+
id: zod.z.number().int().describe("ID of the video author.").nullable(),
|
|
10
|
+
url: zod.z.string().describe("URL of the author's profile.").nullable(),
|
|
11
|
+
name: zod.z.string().describe("Name of the video author.").nullable()
|
|
12
12
|
});
|
|
13
13
|
const PexelsPopularVideos_VideoFileModelSchema = zod.z.object({
|
|
14
|
-
id: zod.z.number().int().describe("ID of the video file."),
|
|
15
|
-
fps: zod.z.number().describe("Frames per second of the video file."),
|
|
16
|
-
link: zod.z.string().describe("Direct URL to the video file."),
|
|
17
|
-
width: zod.z.number().int().describe("Width of the video file in pixels."),
|
|
18
|
-
height: zod.z.number().int().describe("Height of the video file in pixels."),
|
|
19
|
-
quality: zod.z.string().describe("Quality label of the video file."),
|
|
20
|
-
file_type: zod.z.string().describe("MIME type of the video file.")
|
|
14
|
+
id: zod.z.number().int().describe("ID of the video file.").nullable(),
|
|
15
|
+
fps: zod.z.number().describe("Frames per second of the video file.").nullable(),
|
|
16
|
+
link: zod.z.string().describe("Direct URL to the video file.").nullable(),
|
|
17
|
+
width: zod.z.number().int().describe("Width of the video file in pixels.").nullable(),
|
|
18
|
+
height: zod.z.number().int().describe("Height of the video file in pixels.").nullable(),
|
|
19
|
+
quality: zod.z.string().describe("Quality label of the video file.").nullable(),
|
|
20
|
+
file_type: zod.z.string().describe("MIME type of the video file.").nullable()
|
|
21
21
|
});
|
|
22
22
|
const PexelsPopularVideos_VideoPictureModelSchema = zod.z.object({
|
|
23
|
-
id: zod.z.number().int().describe("ID of the preview picture."),
|
|
24
|
-
nr: zod.z.number().int().describe("Sequence number of the picture."),
|
|
25
|
-
picture: zod.z.string().describe("URL of the preview picture.")
|
|
23
|
+
id: zod.z.number().int().describe("ID of the preview picture.").nullable(),
|
|
24
|
+
nr: zod.z.number().int().describe("Sequence number of the picture.").nullable(),
|
|
25
|
+
picture: zod.z.string().describe("URL of the preview picture.").nullable()
|
|
26
26
|
});
|
|
27
27
|
const PexelsPopularVideos_VideoModelSchema = zod.z.object({
|
|
28
|
-
id: zod.z.number().int().describe("ID of the video."),
|
|
29
|
-
url: zod.z.string().describe("URL to the Pexels page for the video."),
|
|
28
|
+
id: zod.z.number().int().describe("ID of the video.").nullable(),
|
|
29
|
+
url: zod.z.string().describe("URL to the Pexels page for the video.").nullable(),
|
|
30
30
|
tags: zod.z.array(zod.z.string()).describe("List of tags associated with the video."),
|
|
31
31
|
user: PexelsPopularVideos_UserModelSchema.nullable(),
|
|
32
|
-
image: zod.z.string().describe("URL of the video preview image."),
|
|
33
|
-
width: zod.z.number().int().describe("Width of the video in pixels."),
|
|
34
|
-
height: zod.z.number().int().describe("Height of the video in pixels."),
|
|
35
|
-
duration: zod.z.number().int().describe("Duration of the video in seconds."),
|
|
32
|
+
image: zod.z.string().describe("URL of the video preview image.").nullable(),
|
|
33
|
+
width: zod.z.number().int().describe("Width of the video in pixels.").nullable(),
|
|
34
|
+
height: zod.z.number().int().describe("Height of the video in pixels.").nullable(),
|
|
35
|
+
duration: zod.z.number().int().describe("Duration of the video in seconds.").nullable(),
|
|
36
36
|
full_res: zod.z.string().describe("URL of the full-resolution video (if available).").nullable().optional(),
|
|
37
37
|
avg_color: zod.z.string().describe("Average color of the video preview image (hex code).").nullable().optional(),
|
|
38
38
|
video_files: zod.z.array(PexelsPopularVideos_VideoFileModelSchema).describe("Available video file variants."),
|
|
39
39
|
video_pictures: zod.z.array(PexelsPopularVideos_VideoPictureModelSchema).describe("List of preview pictures for the video.")
|
|
40
40
|
});
|
|
41
41
|
const PexelsPopularVideosOutput = zod.z.object({
|
|
42
|
-
url: zod.z.string().describe("URL of the results page."),
|
|
43
|
-
page: zod.z.number().int().describe("Current page number."),
|
|
42
|
+
url: zod.z.string().describe("URL of the results page.").nullable(),
|
|
43
|
+
page: zod.z.number().int().describe("Current page number.").nullable(),
|
|
44
44
|
videos: zod.z.array(PexelsPopularVideos_VideoModelSchema).describe("List of popular video objects."),
|
|
45
|
-
per_page: zod.z.number().int().describe("Number of videos per page."),
|
|
46
|
-
total_results: zod.z.number().int().describe("Total number of video results available.")
|
|
45
|
+
per_page: zod.z.number().int().describe("Number of videos per page.").nullable(),
|
|
46
|
+
total_results: zod.z.number().int().describe("Total number of video results available.").nullable()
|
|
47
47
|
});
|
|
48
48
|
const pexelsPopularVideos = require_action.action("PEXELS_POPULAR_VIDEOS", {
|
|
49
49
|
slug: "pexels-popular-videos",
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"popular-videos.cjs","names":["z","action"],"sources":["../../src/actions/popular-videos.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const PexelsPopularVideosInput
|
|
1
|
+
{"version":3,"file":"popular-videos.cjs","names":["z","action"],"sources":["../../src/actions/popular-videos.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const PexelsPopularVideosInput = z.object({\n page: z.number().int().describe(\"Page number to retrieve. Default is 1.\").optional(),\n per_page: z.number().int().describe(\"Number of videos per page (1–80). Default is 15.\").optional(),\n}).describe(\"Request parameters for retrieving popular videos from Pexels.\");\nconst PexelsPopularVideos_UserModelSchema = z.object({\n id: z.number().int().describe(\"ID of the video author.\").nullable(),\n url: z.string().describe(\"URL of the author's profile.\").nullable(),\n name: z.string().describe(\"Name of the video author.\").nullable(),\n});\nconst PexelsPopularVideos_VideoFileModelSchema = z.object({\n id: z.number().int().describe(\"ID of the video file.\").nullable(),\n fps: z.number().describe(\"Frames per second of the video file.\").nullable(),\n link: z.string().describe(\"Direct URL to the video file.\").nullable(),\n width: z.number().int().describe(\"Width of the video file in pixels.\").nullable(),\n height: z.number().int().describe(\"Height of the video file in pixels.\").nullable(),\n quality: z.string().describe(\"Quality label of the video file.\").nullable(),\n file_type: z.string().describe(\"MIME type of the video file.\").nullable(),\n});\nconst PexelsPopularVideos_VideoPictureModelSchema = z.object({\n id: z.number().int().describe(\"ID of the preview picture.\").nullable(),\n nr: z.number().int().describe(\"Sequence number of the picture.\").nullable(),\n picture: z.string().describe(\"URL of the preview picture.\").nullable(),\n});\nconst PexelsPopularVideos_VideoModelSchema = z.object({\n id: z.number().int().describe(\"ID of the video.\").nullable(),\n url: z.string().describe(\"URL to the Pexels page for the video.\").nullable(),\n tags: z.array(z.string()).describe(\"List of tags associated with the video.\"),\n user: PexelsPopularVideos_UserModelSchema.nullable(),\n image: z.string().describe(\"URL of the video preview image.\").nullable(),\n width: z.number().int().describe(\"Width of the video in pixels.\").nullable(),\n height: z.number().int().describe(\"Height of the video in pixels.\").nullable(),\n duration: z.number().int().describe(\"Duration of the video in seconds.\").nullable(),\n full_res: z.string().describe(\"URL of the full-resolution video (if available).\").nullable().optional(),\n avg_color: z.string().describe(\"Average color of the video preview image (hex code).\").nullable().optional(),\n video_files: z.array(PexelsPopularVideos_VideoFileModelSchema).describe(\"Available video file variants.\"),\n video_pictures: z.array(PexelsPopularVideos_VideoPictureModelSchema).describe(\"List of preview pictures for the video.\"),\n});\nexport const PexelsPopularVideosOutput = z.object({\n url: z.string().describe(\"URL of the results page.\").nullable(),\n page: z.number().int().describe(\"Current page number.\").nullable(),\n videos: z.array(PexelsPopularVideos_VideoModelSchema).describe(\"List of popular video objects.\"),\n per_page: z.number().int().describe(\"Number of videos per page.\").nullable(),\n total_results: z.number().int().describe(\"Total number of video results available.\").nullable(),\n});\n\nexport const pexelsPopularVideos = action(\"PEXELS_POPULAR_VIDEOS\", {\n slug: \"pexels-popular-videos\",\n name: \"Get Popular Videos\",\n description: \"Tool to retrieve current popular Pexels videos. Use when you want to fetch trending videos from Pexels.\",\n input: PexelsPopularVideosInput,\n output: PexelsPopularVideosOutput,\n});\n"],"mappings":"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"}
|