@taskmagic/apps-rendex 0.0.1
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/README.md +3 -0
- package/package.json +47 -0
- package/src/index.d.ts +3 -0
- package/src/index.js +47 -0
- package/src/index.js.map +1 -0
- package/src/lib/actions/render-to-image.d.ts +6 -0
- package/src/lib/actions/render-to-image.js +113 -0
- package/src/lib/actions/render-to-image.js.map +1 -0
- package/src/lib/common/auth.d.ts +1 -0
- package/src/lib/common/auth.js +28 -0
- package/src/lib/common/auth.js.map +1 -0
- package/src/lib/common/common.d.ts +1 -0
- package/src/lib/common/common.js +5 -0
- package/src/lib/common/common.js.map +1 -0
package/README.md
ADDED
package/package.json
ADDED
|
@@ -0,0 +1,47 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@taskmagic/apps-rendex",
|
|
3
|
+
"version": "0.0.1",
|
|
4
|
+
"dependencies": {
|
|
5
|
+
"@anthropic-ai/sdk": "0.33.1",
|
|
6
|
+
"@sinclair/typebox": "0.34.11",
|
|
7
|
+
"axios": "1.17.0",
|
|
8
|
+
"axios-retry": "4.4.1",
|
|
9
|
+
"deepmerge-ts": "7.1.0",
|
|
10
|
+
"mime-types": "2.1.35",
|
|
11
|
+
"nanoid": "3.3.8",
|
|
12
|
+
"openai": "4.67.1",
|
|
13
|
+
"replicate": "0.34.1",
|
|
14
|
+
"semver": "7.6.0",
|
|
15
|
+
"zod": "3.25.76",
|
|
16
|
+
"@taskmagic/pieces-common": "0.4.4",
|
|
17
|
+
"@taskmagic/pieces-framework": "0.7.46",
|
|
18
|
+
"@taskmagic/shared": "0.10.171",
|
|
19
|
+
"tslib": "1.14.1"
|
|
20
|
+
},
|
|
21
|
+
"overrides": {
|
|
22
|
+
"cross-spawn": "7.0.6",
|
|
23
|
+
"elliptic": "^6.6.1",
|
|
24
|
+
"fast-xml-parser": "^4.4.1",
|
|
25
|
+
"protobufjs": "^7.5.5",
|
|
26
|
+
"tmp": "^0.2.4",
|
|
27
|
+
"koa": "^2.16.4",
|
|
28
|
+
"picomatch": "^4.0.4",
|
|
29
|
+
"langsmith": "^0.6.0",
|
|
30
|
+
"serialize-javascript": "^6.0.2",
|
|
31
|
+
"elevenlabs": {
|
|
32
|
+
"form-data": "^4.0.4"
|
|
33
|
+
},
|
|
34
|
+
"@tryfabric/martian": {
|
|
35
|
+
"@notionhq/client": "$@notionhq/client"
|
|
36
|
+
},
|
|
37
|
+
"vite": {
|
|
38
|
+
"rollup": "npm:@rollup/wasm-node@^4.61.1"
|
|
39
|
+
}
|
|
40
|
+
},
|
|
41
|
+
"resolutions": {
|
|
42
|
+
"rollup": "npm:@rollup/wasm-node@^4.61.1"
|
|
43
|
+
},
|
|
44
|
+
"types": "./src/index.d.ts",
|
|
45
|
+
"main": "./src/index.js",
|
|
46
|
+
"type": "commonjs"
|
|
47
|
+
}
|
package/src/index.d.ts
ADDED
package/src/index.js
ADDED
|
@@ -0,0 +1,47 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.rendexAuth = exports.rendex = void 0;
|
|
4
|
+
const tslib_1 = require("tslib");
|
|
5
|
+
const pieces_framework_1 = require("@taskmagic/pieces-framework");
|
|
6
|
+
const shared_1 = require("@taskmagic/shared");
|
|
7
|
+
const pieces_common_1 = require("@taskmagic/pieces-common");
|
|
8
|
+
const auth_1 = require("./lib/common/auth");
|
|
9
|
+
Object.defineProperty(exports, "rendexAuth", { enumerable: true, get: function () { return auth_1.rendexAuth; } });
|
|
10
|
+
const common_1 = require("./lib/common/common");
|
|
11
|
+
const render_to_image_1 = require("./lib/actions/render-to-image");
|
|
12
|
+
exports.rendex = (0, pieces_framework_1.createPiece)({
|
|
13
|
+
displayName: 'Rendex',
|
|
14
|
+
description: 'Render raw HTML, a URL, or Markdown to a PNG, JPEG, or WebP image or a PDF via the Rendex API.',
|
|
15
|
+
auth: auth_1.rendexAuth,
|
|
16
|
+
minimumSupportedRelease: '0.30.0',
|
|
17
|
+
logoUrl: 'https://cdn.activepieces.com/pieces/rendex.png',
|
|
18
|
+
categories: [shared_1.PieceCategory.CONTENT_AND_FILES, shared_1.PieceCategory.DEVELOPER_TOOLS],
|
|
19
|
+
authors: ['Dan425953'],
|
|
20
|
+
ai: {
|
|
21
|
+
description: 'Turn HTML, a webpage URL, or Markdown into a screenshot image (PNG, JPEG, WebP) or a PDF.',
|
|
22
|
+
keywords: [
|
|
23
|
+
'screenshot',
|
|
24
|
+
'html to image',
|
|
25
|
+
'url to image',
|
|
26
|
+
'webpage to pdf',
|
|
27
|
+
'markdown to image',
|
|
28
|
+
'render',
|
|
29
|
+
'capture page',
|
|
30
|
+
'convert html to pdf',
|
|
31
|
+
],
|
|
32
|
+
},
|
|
33
|
+
actions: [
|
|
34
|
+
render_to_image_1.renderToImage,
|
|
35
|
+
(0, pieces_common_1.createCustomApiCallAction)({
|
|
36
|
+
baseUrl: () => common_1.RENDEX_BASE_URL,
|
|
37
|
+
auth: auth_1.rendexAuth,
|
|
38
|
+
authMapping: (auth) => tslib_1.__awaiter(void 0, void 0, void 0, function* () {
|
|
39
|
+
return ({
|
|
40
|
+
Authorization: `Bearer ${auth}`,
|
|
41
|
+
});
|
|
42
|
+
}),
|
|
43
|
+
}),
|
|
44
|
+
],
|
|
45
|
+
triggers: [],
|
|
46
|
+
});
|
|
47
|
+
//# sourceMappingURL=index.js.map
|
package/src/index.js.map
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../../../packages/pieces/community/rendex/src/index.ts"],"names":[],"mappings":";;;;AAAA,kEAA0D;AAC1D,8CAAkD;AAClD,4DAAqE;AACrE,4CAA+C;AAwCtC,2FAxCA,iBAAU,OAwCA;AAvCnB,gDAAsD;AACtD,mEAA8D;AAEjD,QAAA,MAAM,GAAG,IAAA,8BAAW,EAAC;IAChC,WAAW,EAAE,QAAQ;IACrB,WAAW,EACT,gGAAgG;IAClG,IAAI,EAAE,iBAAU;IAChB,uBAAuB,EAAE,QAAQ;IACjC,OAAO,EAAE,gDAAgD;IACzD,UAAU,EAAE,CAAC,sBAAa,CAAC,iBAAiB,EAAE,sBAAa,CAAC,eAAe,CAAC;IAC5E,OAAO,EAAE,CAAC,WAAW,CAAC;IACtB,EAAE,EAAE;QACF,WAAW,EACT,2FAA2F;QAC7F,QAAQ,EAAE;YACR,YAAY;YACZ,eAAe;YACf,cAAc;YACd,gBAAgB;YAChB,mBAAmB;YACnB,QAAQ;YACR,cAAc;YACd,qBAAqB;SACtB;KACF;IACD,OAAO,EAAE;QACP,+BAAa;QACb,IAAA,yCAAyB,EAAC;YACxB,OAAO,EAAE,GAAG,EAAE,CAAC,wBAAe;YAC9B,IAAI,EAAE,iBAAU;YAChB,WAAW,EAAE,CAAO,IAAI,EAAE,EAAE;gBAAC,OAAA,CAAC;oBAC5B,aAAa,EAAE,UAAU,IAAI,EAAE;iBAChC,CAAC,CAAA;cAAA;SACH,CAAC;KACH;IACD,QAAQ,EAAE,EAAE;CACb,CAAC,CAAC"}
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
export declare const renderToImage: import("@taskmagic/pieces-framework").IAction<import("@taskmagic/pieces-framework").SecretTextProperty<true>, {
|
|
2
|
+
source_type: import("@taskmagic/pieces-framework").StaticDropdownProperty<string, true>;
|
|
3
|
+
content: import("@taskmagic/pieces-framework").DynamicProperties<true>;
|
|
4
|
+
format: import("@taskmagic/pieces-framework").StaticDropdownProperty<string, false>;
|
|
5
|
+
full_page: import("@taskmagic/pieces-framework").CheckboxProperty<false>;
|
|
6
|
+
}>;
|
|
@@ -0,0 +1,113 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.renderToImage = void 0;
|
|
4
|
+
const tslib_1 = require("tslib");
|
|
5
|
+
const pieces_framework_1 = require("@taskmagic/pieces-framework");
|
|
6
|
+
const pieces_common_1 = require("@taskmagic/pieces-common");
|
|
7
|
+
const auth_1 = require("../common/auth");
|
|
8
|
+
const common_1 = require("../common/common");
|
|
9
|
+
exports.renderToImage = (0, pieces_framework_1.createAction)({
|
|
10
|
+
auth: auth_1.rendexAuth,
|
|
11
|
+
name: 'render_to_image',
|
|
12
|
+
displayName: 'Render to Image',
|
|
13
|
+
description: 'Render raw HTML, a URL, or Markdown to an image (PNG, JPEG, WebP) or a PDF.',
|
|
14
|
+
props: {
|
|
15
|
+
source_type: pieces_framework_1.Property.StaticDropdown({
|
|
16
|
+
displayName: 'Source',
|
|
17
|
+
description: 'Render from raw HTML, a live URL, or Markdown.',
|
|
18
|
+
required: true,
|
|
19
|
+
defaultValue: 'html',
|
|
20
|
+
options: {
|
|
21
|
+
options: [
|
|
22
|
+
{ label: 'HTML', value: 'html' },
|
|
23
|
+
{ label: 'URL', value: 'url' },
|
|
24
|
+
{ label: 'Markdown', value: 'markdown' },
|
|
25
|
+
],
|
|
26
|
+
},
|
|
27
|
+
}),
|
|
28
|
+
content: pieces_framework_1.Property.DynamicProperties({
|
|
29
|
+
displayName: 'Content',
|
|
30
|
+
description: 'The content to render, based on the Source you selected.',
|
|
31
|
+
required: true,
|
|
32
|
+
refreshers: ['source_type'],
|
|
33
|
+
props: (_a) => tslib_1.__awaiter(void 0, [_a], void 0, function* ({ source_type }) {
|
|
34
|
+
const mode = source_type;
|
|
35
|
+
if (mode === 'url') {
|
|
36
|
+
return {
|
|
37
|
+
url: pieces_framework_1.Property.ShortText({
|
|
38
|
+
displayName: 'URL',
|
|
39
|
+
description: 'The page URL to render.',
|
|
40
|
+
required: true,
|
|
41
|
+
}),
|
|
42
|
+
};
|
|
43
|
+
}
|
|
44
|
+
if (mode === 'markdown') {
|
|
45
|
+
return {
|
|
46
|
+
markdown: pieces_framework_1.Property.LongText({
|
|
47
|
+
displayName: 'Markdown',
|
|
48
|
+
description: 'The Markdown to render.',
|
|
49
|
+
required: true,
|
|
50
|
+
}),
|
|
51
|
+
};
|
|
52
|
+
}
|
|
53
|
+
return {
|
|
54
|
+
html: pieces_framework_1.Property.LongText({
|
|
55
|
+
displayName: 'HTML',
|
|
56
|
+
description: 'The HTML markup to render.',
|
|
57
|
+
required: true,
|
|
58
|
+
}),
|
|
59
|
+
};
|
|
60
|
+
}),
|
|
61
|
+
}),
|
|
62
|
+
format: pieces_framework_1.Property.StaticDropdown({
|
|
63
|
+
displayName: 'Format',
|
|
64
|
+
required: false,
|
|
65
|
+
defaultValue: 'png',
|
|
66
|
+
options: {
|
|
67
|
+
options: [
|
|
68
|
+
{ label: 'PNG', value: 'png' },
|
|
69
|
+
{ label: 'JPEG', value: 'jpeg' },
|
|
70
|
+
{ label: 'WebP', value: 'webp' },
|
|
71
|
+
{ label: 'PDF', value: 'pdf' },
|
|
72
|
+
],
|
|
73
|
+
},
|
|
74
|
+
}),
|
|
75
|
+
full_page: pieces_framework_1.Property.Checkbox({
|
|
76
|
+
displayName: 'Full Page',
|
|
77
|
+
description: 'Capture the full scrollable page instead of just the viewport.',
|
|
78
|
+
required: false,
|
|
79
|
+
defaultValue: false,
|
|
80
|
+
}),
|
|
81
|
+
},
|
|
82
|
+
run(context) {
|
|
83
|
+
return tslib_1.__awaiter(this, void 0, void 0, function* () {
|
|
84
|
+
const { auth, propsValue, files } = context;
|
|
85
|
+
const { source_type, content, format, full_page } = propsValue;
|
|
86
|
+
const sourceValue = content[source_type];
|
|
87
|
+
if (!sourceValue) {
|
|
88
|
+
throw new Error('Please provide content for the selected source.');
|
|
89
|
+
}
|
|
90
|
+
const body = {
|
|
91
|
+
[source_type]: sourceValue,
|
|
92
|
+
format: format !== null && format !== void 0 ? format : 'png',
|
|
93
|
+
fullPage: full_page !== null && full_page !== void 0 ? full_page : false,
|
|
94
|
+
};
|
|
95
|
+
const response = yield pieces_common_1.httpClient.sendRequest({
|
|
96
|
+
method: pieces_common_1.HttpMethod.POST,
|
|
97
|
+
url: `${common_1.RENDEX_BASE_URL}/v1/screenshot/json`,
|
|
98
|
+
headers: {
|
|
99
|
+
Authorization: `Bearer ${auth}`,
|
|
100
|
+
'Content-Type': 'application/json',
|
|
101
|
+
},
|
|
102
|
+
body,
|
|
103
|
+
});
|
|
104
|
+
const _a = response.body.data, { image } = _a, metadata = tslib_1.__rest(_a, ["image"]);
|
|
105
|
+
const file = yield files.write({
|
|
106
|
+
fileName: `rendex-capture.${metadata.format}`,
|
|
107
|
+
data: Buffer.from(image, 'base64'),
|
|
108
|
+
});
|
|
109
|
+
return Object.assign({ file }, metadata);
|
|
110
|
+
});
|
|
111
|
+
},
|
|
112
|
+
});
|
|
113
|
+
//# sourceMappingURL=render-to-image.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"render-to-image.js","sourceRoot":"","sources":["../../../../../../../../packages/pieces/community/rendex/src/lib/actions/render-to-image.ts"],"names":[],"mappings":"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"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare const rendexAuth: import("@taskmagic/pieces-framework").SecretTextProperty<true>;
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.rendexAuth = void 0;
|
|
4
|
+
const tslib_1 = require("tslib");
|
|
5
|
+
const pieces_framework_1 = require("@taskmagic/pieces-framework");
|
|
6
|
+
const pieces_common_1 = require("@taskmagic/pieces-common");
|
|
7
|
+
const common_1 = require("./common");
|
|
8
|
+
exports.rendexAuth = pieces_framework_1.PieceAuth.SecretText({
|
|
9
|
+
displayName: 'API Key',
|
|
10
|
+
description: 'Your Rendex API key. Create one in your dashboard at rendex.dev under API Keys (the free tier includes 500 renders per month).',
|
|
11
|
+
required: true,
|
|
12
|
+
validate: (_a) => tslib_1.__awaiter(void 0, [_a], void 0, function* ({ auth }) {
|
|
13
|
+
try {
|
|
14
|
+
yield pieces_common_1.httpClient.sendRequest({
|
|
15
|
+
method: pieces_common_1.HttpMethod.GET,
|
|
16
|
+
url: `${common_1.RENDEX_BASE_URL}/v1/credential-check`,
|
|
17
|
+
headers: {
|
|
18
|
+
Authorization: `Bearer ${auth}`,
|
|
19
|
+
},
|
|
20
|
+
});
|
|
21
|
+
return { valid: true };
|
|
22
|
+
}
|
|
23
|
+
catch (e) {
|
|
24
|
+
return { valid: false, error: 'Invalid API key' };
|
|
25
|
+
}
|
|
26
|
+
}),
|
|
27
|
+
});
|
|
28
|
+
//# sourceMappingURL=auth.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"auth.js","sourceRoot":"","sources":["../../../../../../../../packages/pieces/community/rendex/src/lib/common/auth.ts"],"names":[],"mappings":";;;;AAAA,kEAAwD;AACxD,4DAAkE;AAClE,qCAA2C;AAE9B,QAAA,UAAU,GAAG,4BAAS,CAAC,UAAU,CAAC;IAC7C,WAAW,EAAE,SAAS;IACtB,WAAW,EACT,gIAAgI;IAClI,QAAQ,EAAE,IAAI;IACd,QAAQ,EAAE,KAAiB,EAAE,oDAAZ,EAAE,IAAI,EAAE;QACvB,IAAI,CAAC;YACH,MAAM,0BAAU,CAAC,WAAW,CAAC;gBAC3B,MAAM,EAAE,0BAAU,CAAC,GAAG;gBACtB,GAAG,EAAE,GAAG,wBAAe,sBAAsB;gBAC7C,OAAO,EAAE;oBACP,aAAa,EAAE,UAAU,IAAI,EAAE;iBAChC;aACF,CAAC,CAAC;YACH,OAAO,EAAE,KAAK,EAAE,IAAI,EAAE,CAAC;QACzB,CAAC;QAAC,OAAO,CAAC,EAAE,CAAC;YACX,OAAO,EAAE,KAAK,EAAE,KAAK,EAAE,KAAK,EAAE,iBAAiB,EAAE,CAAC;QACpD,CAAC;IACH,CAAC,CAAA;CACF,CAAC,CAAC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare const RENDEX_BASE_URL = "https://api.rendex.dev";
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"common.js","sourceRoot":"","sources":["../../../../../../../../packages/pieces/community/rendex/src/lib/common/common.ts"],"names":[],"mappings":";;;AAAa,QAAA,eAAe,GAAG,wBAAwB,CAAC"}
|