Skip to content

Commit 37468fb

Browse files
committed
Merge branch '20166-add-format-file-ref-to-file-accepting-props' into 20166-add-format-file-ref-to-file-accepting-props-PART-1-_-to-A
2 parents 6132b90 + 91b9ec9 commit 37468fb

File tree

430 files changed

+882
-741
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

430 files changed

+882
-741
lines changed

components/adobe_pdf_services/actions/extract-text-and-tables/extract-text-and-tables.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ export default {
44
key: "adobe_pdf_services-extract-text-and-tables",
55
name: "Extract Text and Tables From PDF",
66
description: "Extracts text and table element information from a PDF document and returns a JSON file along with table data in XLSX format within a .zip file saved to the `/tmp` directory. [See the documentation](https://developer.adobe.com/document-services/docs/overview/pdf-extract-api/howtos/extract-api/#extract-text-and-tables)",
7-
version: "0.0.4",
7+
version: "0.0.5",
88
annotations: {
99
destructiveHint: false,
1010
openWorldHint: true,

components/adobe_pdf_services/actions/extract-text-from-pdf/extract-text-from-pdf.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ export default {
44
key: "adobe_pdf_services-extract-text-from-pdf",
55
name: "Extract Text From PDF",
66
description: "Extracts text element information from a PDF document and returns a JSON file within a .zip file saved to the `/tmp` directory. [See the documentation](https://developer.adobe.com/document-services/docs/overview/pdf-extract-api/howtos/extract-api/#extract-text-from-a-pdf)",
7-
version: "0.0.4",
7+
version: "0.0.5",
88
annotations: {
99
destructiveHint: false,
1010
openWorldHint: true,

components/adobe_pdf_services/adobe_pdf_services.app.mjs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ export default {
88
type: "string",
99
label: "File Path",
1010
description: "The path to the pdf file saved to the `/tmp` directory (e.g. `/tmp/example.pdf`). [See the documentation](https://pipedream.com/docs/workflows/steps/code/nodejs/working-with-files/#the-tmp-directory).",
11+
format: "file-ref",
1112
},
1213
filename: {
1314
type: "string",

components/adobe_pdf_services/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@pipedream/adobe_pdf_services",
3-
"version": "0.1.2",
3+
"version": "0.1.3",
44
"description": "Pipedream Adobe PDF Services Components",
55
"main": "adobe_pdf_services.app.mjs",
66
"keywords": [

components/alttext_ai/actions/generate-alt-text/generate-alt-text.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ export default {
99
name: "Generate Alt Text",
1010
description:
1111
"Generates a descriptive alt text for a given image. [See the documentation](https://alttext.ai/apidocs#tag/Images/operation/create-image)",
12-
version: "0.1.1",
12+
version: "0.1.3",
1313
annotations: {
1414
destructiveHint: false,
1515
openWorldHint: true,

components/alttextify/actions/submit-image/submit-image.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ export default {
55
key: "alttextify-submit-image",
66
name: "Submit Image to Alttextify",
77
description: "Upload or submit an image to Alttextify for alt text generation. [See the documentation](https://apidoc.alttextify.net/#api-Image-UploadRawImage)",
8-
version: "0.0.3",
8+
version: "0.0.4",
99
annotations: {
1010
destructiveHint: false,
1111
openWorldHint: true,

components/amazon_ses/actions/send-email/send-email.mjs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -71,6 +71,7 @@ export default {
7171
type: "string[]",
7272
label: "Attachments",
7373
description: "File paths (e.g., `/tmp/file.pdf`) or URLs to attach to the email. Files will be automatically base64-encoded and MIME types auto-detected.",
74+
format: "file-ref",
7475
optional: true,
7576
},
7677
inlineAttachments: {

components/boldsign/actions/send-document-template/send-document-template.mjs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ export default {
99
key: "boldsign-send-document-template",
1010
name: "Send Document Using Template",
1111
description: "Send documents for e-signature using a BoldSign template. [See the documentation](https://developers.boldsign.com/documents/send-document-from-template/?region=us)",
12-
version: "0.1.2",
12+
version: "0.1.3",
1313
annotations: {
1414
destructiveHint: false,
1515
openWorldHint: true,
@@ -160,6 +160,7 @@ export default {
160160
type: "string[]",
161161
label: "File Paths or URLs",
162162
description: "The files to upload. For each entry, provide either a file URL or path to a file in the `/tmp` directory (for example, `/tmp/myFile.txt`)",
163+
format: "file-ref",
163164
optional: true,
164165
},
165166
fileUrls: {

components/boldsign/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@pipedream/boldsign",
3-
"version": "0.2.1",
3+
"version": "0.2.2",
44
"description": "Pipedream BoldSign Components",
55
"main": "boldsign.app.mjs",
66
"keywords": [
@@ -13,6 +13,6 @@
1313
"access": "public"
1414
},
1515
"dependencies": {
16-
"@pipedream/platform": "^3.1.1"
16+
"@pipedream/platform": "^3.2.5"
1717
}
1818
}

components/box/actions/create-sign-request/create-sign-request.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ export default {
66
name: "Create Box Sign Request",
77
description: "Creates a signature request. This involves preparing a document for signing and sending the signature request to signers. [See the documentation](https://developer.box.com/reference/post-sign-requests/).",
88
key: "box-create-sign-request",
9-
version: "0.0.3",
9+
version: "0.0.4",
1010
annotations: {
1111
destructiveHint: false,
1212
openWorldHint: true,

0 commit comments

Comments
 (0)