Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,16 @@
key: "pipedream_utils-retrieve-new-rss-stories",
name: "Helper Functions - Retrieve New RSS Stories",
description: "Gets new stories from a specified RSS feed that have not already been processed.",
version: "0.0.2",
version: "0.0.3",
annotations: {
destructiveHint: false,
openWorldHint: true,
readOnlyHint: true,
},
type: "action",
props: {
pipedream_utils,
dataStore: {

Check warning on line 18 in components/pipedream_utils/actions/retrieve-new-rss-stories/retrieve-new-rss-stories.mjs

View workflow job for this annotation

GitHub Actions / Lint Code Base

Component prop dataStore must have a description. See https://pipedream.com/docs/components/guidelines/#props

Check warning on line 18 in components/pipedream_utils/actions/retrieve-new-rss-stories/retrieve-new-rss-stories.mjs

View workflow job for this annotation

GitHub Actions / Lint Code Base

Component prop dataStore must have a label. See https://pipedream.com/docs/components/guidelines/#props
type: "data_store",
},
rss_feeds: {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,12 @@
key: "pipedream_utils-schedule-task-in-future",
name: "Helper Functions - Pipedream Task Scheduler - Schedule Task",
description: "Schedule a task with an existing task scheduler source. See [here](https://pipedream.com/apps/pipedream/triggers/new-scheduled-tasks) for more details.",
version: "0.0.2",
version: "0.0.3",
annotations: {
destructiveHint: false,
openWorldHint: true,
readOnlyHint: false,
},
type: "action",
props: {
pipedream_utils,
Expand All @@ -15,7 +20,7 @@
label: "Num Seconds",
description: "How many seconds in the future would you like to schedule the task?",
},
secret: {

Check warning on line 23 in components/pipedream_utils/actions/schedule-task-in-future/schedule-task-in-future.mjs

View workflow job for this annotation

GitHub Actions / Lint Code Base

Component prop secret must have a description. See https://pipedream.com/docs/components/guidelines/#props

Check warning on line 23 in components/pipedream_utils/actions/schedule-task-in-future/schedule-task-in-future.mjs

View workflow job for this annotation

GitHub Actions / Lint Code Base

Component prop secret must have a label. See https://pipedream.com/docs/components/guidelines/#props
type: "string",
optional: true,
},
Expand All @@ -24,7 +29,7 @@
label: "Task Scheduler URL",
description: "Enter the URL as it appears in the **Endpoint** field of your Task Scheduler source",
},
message: {

Check warning on line 32 in components/pipedream_utils/actions/schedule-task-in-future/schedule-task-in-future.mjs

View workflow job for this annotation

GitHub Actions / Lint Code Base

Component prop message must have a label. See https://pipedream.com/docs/components/guidelines/#props
type: "string",
description: "The message / payload to send to your task scheduler. Can be any string or JavaScript object. This message will be emitted by the task scheduler at the specified number of seconds in the future.",
},
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,19 +6,24 @@
key: "pipedream_utils-send-email-with-nodemailer",
name: "Helper Functions - Send email with Nodemailer",
description: "Sends an email using the nodemailer package",
version: "0.0.1",
version: "0.0.2",
annotations: {
destructiveHint: false,
openWorldHint: true,
readOnlyHint: false,
},
type: "action",
props: {
pipedream_utils,
host: {

Check warning on line 18 in components/pipedream_utils/actions/send-email-with-nodemailer/send-email-with-nodemailer.mjs

View workflow job for this annotation

GitHub Actions / Lint Code Base

Component prop host must have a label. See https://pipedream.com/docs/components/guidelines/#props
type: "string",
description: "The hostname or IP address of your SMTP server",
},
port: {

Check warning on line 22 in components/pipedream_utils/actions/send-email-with-nodemailer/send-email-with-nodemailer.mjs

View workflow job for this annotation

GitHub Actions / Lint Code Base

Component prop port must have a label. See https://pipedream.com/docs/components/guidelines/#props
type: "string",
description: "The port your SMTP server listens on (defaults to 587 if is secure is false or 465 if true)",
},
secure: {

Check warning on line 26 in components/pipedream_utils/actions/send-email-with-nodemailer/send-email-with-nodemailer.mjs

View workflow job for this annotation

GitHub Actions / Lint Code Base

Component prop secure must have a label. See https://pipedream.com/docs/components/guidelines/#props
type: "boolean",
description: "If `true` the connection will use TLS when connecting to server. If `false` (the default) then TLS is used if server supports the **STARTTLS** extension. In most cases set this value to `true` if you are connecting to port 465. For port 587 or 25 keep it `false`",
optional: true,
Expand All @@ -35,11 +40,11 @@
description: "If this is `true` and **secure** is `false` then Nodemailer tries to use **STARTTLS** even if the server does not advertise support for it. If the connection can not be encrypted then message is not sent",
optional: true,
},
user: {

Check warning on line 43 in components/pipedream_utils/actions/send-email-with-nodemailer/send-email-with-nodemailer.mjs

View workflow job for this annotation

GitHub Actions / Lint Code Base

Component prop user must have a label. See https://pipedream.com/docs/components/guidelines/#props
type: "string",
description: "The username you use to connect to your SMTP server",
},
pass: {

Check warning on line 47 in components/pipedream_utils/actions/send-email-with-nodemailer/send-email-with-nodemailer.mjs

View workflow job for this annotation

GitHub Actions / Lint Code Base

Component prop pass must have a label. See https://pipedream.com/docs/components/guidelines/#props
type: "string",
description: "Your password",
},
Expand Down
7 changes: 6 additions & 1 deletion components/pipedream_utils/actions/send-to-s3/send-to-s3.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,12 @@ export default {
key: "pipedream_utils-send-to-s3",
name: "Helper Functions - Send to Amazon S3",
description: "Send data to Amazon S3 using Pipedream's destination integration. See https://docs.pipedream.com/destinations/s3/",
version: "0.0.1",
version: "0.0.2",
annotations: {
destructiveHint: false,
openWorldHint: true,
readOnlyHint: false,
},
type: "action",
props: {
pipedream_utils,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,12 @@ export default {
name: "Formatting - [Text] Set Default Value",
description: "Return a default value if the text is empty",
key: "pipedream_utils-set-default-value",
version: "0.0.5",
version: "0.0.6",
annotations: {
destructiveHint: false,
openWorldHint: false,
readOnlyHint: false,
},
type: "action",
props: {
pipedream_utils,
Expand Down
7 changes: 6 additions & 1 deletion components/pipedream_utils/actions/split-text/split-text.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,12 @@ export default {
name: "Formatting - [Text] Split Text",
description: "Split the text on a character or word and return one or all segments",
key: "pipedream_utils-split-text",
version: "0.0.5",
version: "0.0.6",
annotations: {
destructiveHint: false,
openWorldHint: false,
readOnlyHint: false,
},
type: "action",
props: {
pipedream_utils,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,12 @@ export default {
name: "Formatting - [Text] Transform Case",
description: "Transform case for a text input",
key: "pipedream_utils-transform-case",
version: "0.0.5",
version: "0.0.6",
annotations: {
destructiveHint: false,
openWorldHint: true,
readOnlyHint: false,
},
type: "action",
props: {
pipedream_utils,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,12 @@ export default {
key: "pipedream_utils-trigger-workflow",
name: "Helper Functions - Trigger Workflow",
description: "Trigger another Pipedream workflow in your workspace.",
version: "0.0.1",
version: "0.0.2",
annotations: {
destructiveHint: false,
openWorldHint: true,
readOnlyHint: false,
},
type: "action",
props: {
pipedream_utils,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,12 @@ export default {
name: "Formatting - [Text] Trim Whitespace",
description: "Removes leading and trailing whitespace",
key: "pipedream_utils-trim-whitespace",
version: "0.0.5",
version: "0.0.6",
annotations: {
destructiveHint: true,
openWorldHint: false,
readOnlyHint: false,
},
type: "action",
props: {
pipedream_utils,
Expand Down
7 changes: 6 additions & 1 deletion components/pipedream_utils/actions/url-decode/url-decode.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,12 @@ export default {
name: "Formatting - [Text] Decode URL",
description: "Decode a URL string",
key: "pipedream_utils-url-decode",
version: "0.0.5",
version: "0.0.6",
annotations: {
destructiveHint: false,
openWorldHint: false,
readOnlyHint: false,
},
type: "action",
props: {
pipedream_utils,
Expand Down
7 changes: 6 additions & 1 deletion components/pipedream_utils/actions/url-encode/url-encode.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,12 @@ export default {
name: "Formatting - [Text] Encode URL",
description: "Encode a string as a URL",
key: "pipedream_utils-url-encode",
version: "0.0.5",
version: "0.0.6",
annotations: {
destructiveHint: false,
openWorldHint: false,
readOnlyHint: false,
},
type: "action",
props: {
pipedream_utils,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,12 @@ export default {
key: "pipedream_utils-xml-to-json",
name: "Helper Functions - XML to JSON",
description: "See [xml-js](https://github.com/nashwaan/xml-js)",
version: "0.0.1",
version: "0.0.2",
annotations: {
destructiveHint: false,
openWorldHint: true,
readOnlyHint: false,
},
type: "action",
props: {
pipedream_utils,
Expand Down
7 changes: 6 additions & 1 deletion components/pipedrive/actions/add-activity/add-activity.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,12 @@ export default {
key: "pipedrive-add-activity",
name: "Add Activity",
description: "Adds a new activity. Includes `more_activities_scheduled_in_context` property in response's `additional_data` which indicates whether there are more undone activities scheduled with the same deal, person or organization (depending on the supplied data). See the Pipedrive API docs for Activities [here](https://developers.pipedrive.com/docs/api/v1/#!/Activities). For info on [adding an activity in Pipedrive](https://developers.pipedrive.com/docs/api/v1/Activities#addActivity)",
version: "0.1.15",
version: "0.1.16",
annotations: {
destructiveHint: false,
openWorldHint: true,
readOnlyHint: false,
},
type: "action",
props: {
pipedriveApp,
Expand Down
7 changes: 6 additions & 1 deletion components/pipedrive/actions/add-deal/add-deal.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,12 @@ export default {
key: "pipedrive-add-deal",
name: "Add Deal",
description: "Adds a new deal. See the Pipedrive API docs for Deals [here](https://developers.pipedrive.com/docs/api/v1/Deals#addDeal)",
version: "0.1.16",
version: "0.1.17",
annotations: {
destructiveHint: false,
openWorldHint: true,
readOnlyHint: false,
},
type: "action",
props: {
pipedriveApp,
Expand Down
7 changes: 6 additions & 1 deletion components/pipedrive/actions/add-lead/add-lead.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,12 @@ export default {
key: "pipedrive-add-lead",
name: "Add Lead",
description: "Create a new lead in Pipedrive. [See the documentation](https://developers.pipedrive.com/docs/api/v1/Leads#addLead)",
version: "0.0.9",
version: "0.0.10",
annotations: {
destructiveHint: false,
openWorldHint: true,
readOnlyHint: false,
},
type: "action",
props: {
pipedrive,
Expand Down
7 changes: 6 additions & 1 deletion components/pipedrive/actions/add-note/add-note.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,12 @@ export default {
key: "pipedrive-add-note",
name: "Add Note",
description: "Adds a new note. For info on [adding an note in Pipedrive](https://developers.pipedrive.com/docs/api/v1/Notes#addNote)",
version: "0.0.13",
version: "0.0.14",
annotations: {
destructiveHint: false,
openWorldHint: true,
readOnlyHint: false,
},
type: "action",
props: {
pipedriveApp,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,12 @@ export default {
key: "pipedrive-add-organization",
name: "Add Organization",
description: "Adds a new organization. See the Pipedrive API docs for Organizations [here](https://developers.pipedrive.com/docs/api/v1/Organizations#addOrganization)",
version: "0.1.15",
version: "0.1.16",
annotations: {
destructiveHint: false,
openWorldHint: true,
readOnlyHint: false,
},
type: "action",
props: {
pipedriveApp,
Expand Down
7 changes: 6 additions & 1 deletion components/pipedrive/actions/add-person/add-person.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,12 @@ export default {
key: "pipedrive-add-person",
name: "Add Person",
description: "Adds a new person. See the Pipedrive API docs for People [here](https://developers.pipedrive.com/docs/api/v1/Persons#addPerson)",
version: "0.1.15",
version: "0.1.16",
annotations: {
destructiveHint: false,
openWorldHint: true,
readOnlyHint: false,
},
type: "action",
props: {
pipedriveApp,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,12 @@ export default {
key: "pipedrive-get-lead-by-id",
name: "Get Lead by ID",
description: "Get a lead by its ID. [See the documentation](https://developers.pipedrive.com/docs/api/v1/Leads#getLead)",
version: "0.0.3",
version: "0.0.4",
annotations: {
destructiveHint: false,
openWorldHint: true,
readOnlyHint: true,
},
type: "action",
props: {
pipedriveApp,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,12 @@ export default {
key: "pipedrive-get-person-details",
name: "Get person details",
description: "Get details of a person by their ID. [See the documentation](https://developers.pipedrive.com/docs/api/v1/Persons#getPerson)",
version: "0.0.4",
version: "0.0.5",
annotations: {
destructiveHint: false,
openWorldHint: true,
readOnlyHint: true,
},
type: "action",
props: {
pipedriveApp,
Expand Down
7 changes: 6 additions & 1 deletion components/pipedrive/actions/merge-deals/merge-deals.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,12 @@ export default {
key: "pipedrive-merge-deals",
name: "Merge Deals",
description: "Merge two deals in Pipedrive. [See the documentation](https://developers.pipedrive.com/docs/api/v1/Deals#mergeDeals)",
version: "0.0.3",
version: "0.0.4",
annotations: {
destructiveHint: false,
openWorldHint: true,
readOnlyHint: false,
},
type: "action",
props: {
pipedriveApp,
Expand Down
7 changes: 6 additions & 1 deletion components/pipedrive/actions/merge-persons/merge-persons.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,12 @@ export default {
key: "pipedrive-merge-persons",
name: "Merge Persons",
description: "Merge two persons in Pipedrive. [See the documentation](https://developers.pipedrive.com/docs/api/v1/Persons#mergePersons)",
version: "0.0.3",
version: "0.0.4",
annotations: {
destructiveHint: false,
openWorldHint: true,
readOnlyHint: false,
},
type: "action",
props: {
pipedriveApp,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,12 @@ export default {
key: "pipedrive-remove-duplicate-notes",
name: "Remove Duplicate Notes",
description: "Remove duplicate notes from an object in Pipedrive. See the documentation for [getting notes](https://developers.pipedrive.com/docs/api/v1/Notes#getNotes) and [deleting notes](https://developers.pipedrive.com/docs/api/v1/Notes#deleteNote)",
version: "0.0.6",
version: "0.0.7",
annotations: {
destructiveHint: true,
openWorldHint: true,
readOnlyHint: false,
},
type: "action",
props: {
pipedriveApp,
Expand Down
7 changes: 6 additions & 1 deletion components/pipedrive/actions/search-leads/search-leads.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,12 @@ export default {
key: "pipedrive-search-leads",
name: "Search Leads",
description: "Search for leads by name or email. [See the documentation](https://developers.pipedrive.com/docs/api/v1/Leads#searchLeads)",
version: "0.0.3",
version: "0.0.4",
annotations: {
destructiveHint: false,
openWorldHint: true,
readOnlyHint: true,
},
type: "action",
props: {
pipedriveApp,
Expand Down
7 changes: 6 additions & 1 deletion components/pipedrive/actions/search-notes/search-notes.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,12 @@ export default {
key: "pipedrive-search-notes",
name: "Search Notes",
description: "Search for notes in Pipedrive. [See the documentation](https://developers.pipedrive.com/docs/api/v1/Notes#getNotes)",
version: "0.0.6",
version: "0.0.7",
annotations: {
destructiveHint: false,
openWorldHint: true,
readOnlyHint: true,
},
type: "action",
props: {
pipedriveApp,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,12 @@ export default {
key: "pipedrive-search-persons",
name: "Search persons",
description: "Searches all Persons by `name`, `email`, `phone`, `notes` and/or custom fields. This endpoint is a wrapper of `/v1/itemSearch` with a narrower OAuth scope. Found Persons can be filtered by Organization ID. See the Pipedrive API docs [here](https://developers.pipedrive.com/docs/api/v1/Persons#searchPersons)",
version: "0.1.15",
version: "0.1.16",
annotations: {
destructiveHint: false,
openWorldHint: true,
readOnlyHint: true,
},
type: "action",
props: {
pipedriveApp,
Expand Down
7 changes: 6 additions & 1 deletion components/pipedrive/actions/update-deal/update-deal.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,12 @@ export default {
key: "pipedrive-update-deal",
name: "Update Deal",
description: "Updates the properties of a deal. See the Pipedrive API docs for Deals [here](https://developers.pipedrive.com/docs/api/v1/Deals#updateDeal)",
version: "0.1.17",
version: "0.1.18",
annotations: {
destructiveHint: true,
openWorldHint: true,
readOnlyHint: false,
},
type: "action",
props: {
pipedriveApp,
Expand Down
7 changes: 6 additions & 1 deletion components/pipedrive/actions/update-person/update-person.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,12 @@ export default {
key: "pipedrive-update-person",
name: "Update Person",
description: "Updates an existing person in Pipedrive. [See the documentation](https://developers.pipedrive.com/docs/api/v1/Persons#updatePerson)",
version: "0.0.7",
version: "0.0.8",
annotations: {
destructiveHint: true,
openWorldHint: true,
readOnlyHint: false,
},
type: "action",
props: {
pipedriveApp,
Expand Down
Loading
Loading