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 @@ -4,7 +4,12 @@ import resourceGuru from "../../resource_guru.app.mjs";
export default {
key: "resource_guru-update-booking",
name: "Update Booking",
version: "0.0.1",
version: "0.0.2",
annotations: {
destructiveHint: true,
openWorldHint: true,
readOnlyHint: false,
},
description: "Update a specific booking identified by Id. [See the documentation](https://resourceguruapp.com/docs/api#tag/booking/paths/~1v1~1%7Baccount%7D~1bookings~1%7Bid%7D/put)",
type: "action",
props: {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,12 @@ export default {
key: "rest_countries_pe-search-countries-by-currency",
name: "Search Countries By Currency",
description: "Search for a country or countries by currency. [See the docs](https://restcountries.com/#endpoints-currency)",
version: "0.0.1",
version: "0.0.2",
annotations: {
destructiveHint: false,
openWorldHint: true,
readOnlyHint: true,
},
type: "action",
props: {
countries,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,12 @@ export default {
key: "rest_countries_pe-search-countries-by-language",
name: "Search Countries By Language",
description: "Search for a country or countries by language. [See the docs](https://restcountries.com/#endpoints-language)",
version: "0.0.1",
version: "0.0.2",
annotations: {
destructiveHint: false,
openWorldHint: true,
readOnlyHint: true,
},
type: "action",
props: {
countries,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,12 @@ export default {
key: "rest_countries_pe-search-country-by-name",
name: "Search Country By Name",
description: "Search for a country by name. [See the docs](https://restcountries.com/#endpoints-name)",
version: "0.0.1",
version: "0.0.2",
annotations: {
destructiveHint: false,
openWorldHint: true,
readOnlyHint: true,
},
type: "action",
props: {
countries,
Expand Down
7 changes: 6 additions & 1 deletion components/retable/actions/add-record/add-record.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,12 @@ export default {
key: "retable-add-record",
name: "Add Record",
description: "Add a new record in Retable. [See the documentation](https://docs.retable.io/retable-user-guide/retable-api/api#insert-row)",
version: "0.0.1",
version: "0.0.2",
annotations: {
destructiveHint: false,
openWorldHint: true,
readOnlyHint: false,
},
type: "action",
props: {
retable,
Expand Down
7 changes: 6 additions & 1 deletion components/retable/actions/update-record/update-record.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,12 @@ export default {
key: "retable-update-record",
name: "Update Record",
description: "Update an existing record in Retable. [See the documentation](https://docs.retable.io/retable-user-guide/retable-api/api#update-row)",
version: "0.0.1",
version: "0.0.2",
annotations: {
destructiveHint: true,
openWorldHint: true,
readOnlyHint: false,
},
type: "action",
props: {
retable,
Expand Down
7 changes: 6 additions & 1 deletion components/retailed/actions/get-usage/get-usage.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,12 @@ export default {
key: "retailed-get-usage",
name: "Get API Usage",
description: "Gets the API usage information for the Retailed API. [See the documentation](https://docs.retailed.io/v1/usage)",
version: "0.0.1",
version: "0.0.2",
annotations: {
destructiveHint: false,
openWorldHint: true,
readOnlyHint: true,
},
type: "action",
props: {
retailed,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,12 @@ export default {
key: "retently-add-tags-to-response",
name: "Add Tags to Response",
description: "Adds tags to a response. [See the documentation](https://www.retently.com/api/#api-add-response-tags-post)",
version: "0.0.1",
version: "0.0.2",
annotations: {
destructiveHint: false,
openWorldHint: true,
readOnlyHint: false,
},
type: "action",
props: {
retently,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,12 @@ export default {
key: "retently-create-customer",
name: "Create Customer",
description: "Creates a new customer. [See the documentation](https://www.retently.com/api/#api-create-or-update-customers-post)",
version: "0.0.1",
version: "0.0.2",
annotations: {
destructiveHint: true,
openWorldHint: true,
readOnlyHint: false,
},
type: "action",
props: {
retently,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,12 @@ export default {
name: "Create Device Return",
description: "Creates a device return order. [See the documentation](https://app.helloretriever.com/api/v1/docs/#tag/Device-Return-Orders/operation/Submit%20Order)",
type: "action",
version: "0.0.1",
version: "0.0.2",
annotations: {
destructiveHint: false,
openWorldHint: true,
readOnlyHint: false,
},
props: {
app,
requestCharger: {
Expand Down
7 changes: 6 additions & 1 deletion components/retriever/actions/get-order/get-order.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,12 @@ export default {
name: "Get Order",
description: "Fetches a single device return order. [See the documentation](https://app.helloretriever.com/api/v1/docs/#tag/Device-Return-Orders/operation/Get%20Order%20Details)",
type: "action",
version: "0.0.1",
version: "0.0.2",
annotations: {
destructiveHint: false,
openWorldHint: true,
readOnlyHint: true,
},
props: {
app,
orderId: {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,12 @@ export default {
key: "returnless-create-return-order",
name: "Create Return Order",
description: "Create a return order. [See the documentation](https://docs.returnless.com/docs/api-rest-reference/1fce50b07484b-creates-a-return-order-from-a-return-order-intent)",
version: "0.0.1",
version: "0.0.2",
annotations: {
destructiveHint: false,
openWorldHint: true,
readOnlyHint: false,
},
type: "action",
props: {
returnless,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,12 @@ export default {
key: "returnless-list-return-orders",
name: "List Return Orders",
description: "Retrieve a list of return orders. [See the documentation](https://docs.returnless.com/docs/api-rest-reference/0640e3c064cdc-list-all-return-orders)",
version: "0.0.1",
version: "0.0.2",
annotations: {
destructiveHint: false,
openWorldHint: true,
readOnlyHint: true,
},
type: "action",
props: {
returnless,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,12 @@ export default {
key: "returnless-list-sales-order-items",
name: "List Sales Order Items",
description: "Retrieve all items from a specific sales order with cursor-based pagination support. [See the documentation](https://docs.returnless.com/docs/api-rest-reference/6b3c26dad0434-list-all-items-of-a-sales-order)",
version: "0.0.1",
version: "0.0.2",
annotations: {
destructiveHint: false,
openWorldHint: true,
readOnlyHint: true,
},
type: "action",
props: {
returnless,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,12 @@ export default {
key: "returnless-list-sales-orders",
name: "List Sales Orders",
description: "Retrieve a list of sales orders sorted by creation date, with the most recent sales orders appearing first. [See the documentation](https://docs.returnless.com/docs/api-rest-reference/ce6a0e3d66378-list-all-sales-orders)",
version: "0.0.1",
version: "0.0.2",
annotations: {
destructiveHint: false,
openWorldHint: true,
readOnlyHint: true,
},
type: "action",
props: {
returnless,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,12 @@ export default {
key: "returnless-update-return-order-status",
name: "Update Return Order Status",
description: "Update the status of a return order. [See the documentation](https://docs.returnless.com/docs/api-rest-reference/1d07e272437a4-update-a-return-order-status)",
version: "0.0.1",
version: "0.0.2",
annotations: {
destructiveHint: true,
openWorldHint: true,
readOnlyHint: false,
},
type: "action",
props: {
returnless,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,12 @@ export default {
name: "Create Automated Transcription Order Using External Link",
description: "Submit a new automated transcription order using a external link that contains the media. [See docs here.](https://www.rev.com/api/orderspostautomatedtranscription)",
type: "action",
version: "0.0.1",
version: "0.0.2",
annotations: {
destructiveHint: false,
openWorldHint: true,
readOnlyHint: false,
},
props: {
rev,
externalLink: {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,12 @@ export default {
name: "Create Caption Order Using External Link",
description: "Submit a new caption order using a external link that contains the media. [See docs here.](https://www.rev.com/api/orderspostcaption)",
type: "action",
version: "0.0.1",
version: "0.0.2",
annotations: {
destructiveHint: false,
openWorldHint: true,
readOnlyHint: false,
},
props: {
rev,
externalLink: {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,12 @@ export default {
name: "Create Transcription Order Using External Link",
description: "Submit a new transcription order using a external link that contains the media. [See docs here.](https://www.rev.com/api/ordersposttranscription)",
type: "action",
version: "0.0.1",
version: "0.0.2",
annotations: {
destructiveHint: false,
openWorldHint: true,
readOnlyHint: false,
},
props: {
rev,
externalLink: {
Expand Down
7 changes: 6 additions & 1 deletion components/rev_ai/actions/get-transcript/get-transcript.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -5,18 +5,23 @@
key: "rev_ai-get-transcript",
name: "Get Transcript By Id",
description: "Returns the transcript for a completed transcription job. Transcript can be returned as either JSON or plaintext format.",
version: "0.1.1",
version: "0.1.2",
annotations: {
destructiveHint: false,
openWorldHint: true,
readOnlyHint: true,
},
type: "action",
props: {
rev_ai: {

Check warning on line 16 in components/rev_ai/actions/get-transcript/get-transcript.mjs

View workflow job for this annotation

GitHub Actions / Lint Code Base

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

Check warning on line 16 in components/rev_ai/actions/get-transcript/get-transcript.mjs

View workflow job for this annotation

GitHub Actions / Lint Code Base

Component prop rev_ai must have a label. See https://pipedream.com/docs/components/guidelines/#props
type: "app",
app: "rev_ai",
},
id: {

Check warning on line 20 in components/rev_ai/actions/get-transcript/get-transcript.mjs

View workflow job for this annotation

GitHub Actions / Lint Code Base

Component prop id must have a description. See https://pipedream.com/docs/components/guidelines/#props
type: "string",
label: "Job ID",
},
accept: {

Check warning on line 24 in components/rev_ai/actions/get-transcript/get-transcript.mjs

View workflow job for this annotation

GitHub Actions / Lint Code Base

Component prop accept must have a label. See https://pipedream.com/docs/components/guidelines/#props
type: "string",
description: "MIME type specifying the transcription output format.",
options: [
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,28 +5,33 @@
key: "rev_ai-submit-transcription-job",
name: "Submit Transcription Job",
description: "Starts an asynchronous job to transcribe speech-to-text for a media file. Add an optional callback URL to invoke when processing is complete.",
version: "0.1.1",
version: "0.1.2",
annotations: {
destructiveHint: true,
openWorldHint: true,
readOnlyHint: false,
},
type: "action",
props: {
rev_ai: {

Check warning on line 16 in components/rev_ai/actions/submit-transcription-job/submit-transcription-job.mjs

View workflow job for this annotation

GitHub Actions / Lint Code Base

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

Check warning on line 16 in components/rev_ai/actions/submit-transcription-job/submit-transcription-job.mjs

View workflow job for this annotation

GitHub Actions / Lint Code Base

Component prop rev_ai must have a label. See https://pipedream.com/docs/components/guidelines/#props
type: "app",
app: "rev_ai",
},
media_url: {

Check warning on line 20 in components/rev_ai/actions/submit-transcription-job/submit-transcription-job.mjs

View workflow job for this annotation

GitHub Actions / Lint Code Base

Component prop media_url must have a label. See https://pipedream.com/docs/components/guidelines/#props
type: "string",
description: "Direct download media url. Ignored if submitting job from file",
},
skip_diarization: {

Check warning on line 24 in components/rev_ai/actions/submit-transcription-job/submit-transcription-job.mjs

View workflow job for this annotation

GitHub Actions / Lint Code Base

Component prop skip_diarization must have a label. See https://pipedream.com/docs/components/guidelines/#props
type: "boolean",
description: "Specify if speaker diarization will be skipped by the speech engine",
optional: true,
},
skip_punctuation: {

Check warning on line 29 in components/rev_ai/actions/submit-transcription-job/submit-transcription-job.mjs

View workflow job for this annotation

GitHub Actions / Lint Code Base

Component prop skip_punctuation must have a label. See https://pipedream.com/docs/components/guidelines/#props
type: "boolean",
description: "Specify if \"punct\" type elements will be skipped by the speech engine. For JSON outputs, this includes removing spaces. For text outputs, words will still be delimited by a space",
optional: true,
},
remove_disfluencies: {

Check warning on line 34 in components/rev_ai/actions/submit-transcription-job/submit-transcription-job.mjs

View workflow job for this annotation

GitHub Actions / Lint Code Base

Component prop remove_disfluencies must have a label. See https://pipedream.com/docs/components/guidelines/#props
type: "boolean",
description: "Currently we only define disfluencies as 'ums' and 'uhs'. When set to true, disfluencies will be not appear in the transcript.",
optional: true,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,12 @@ export default {
key: "revolt-add-group-member",
name: "Add Group Member",
description: "Adds another user to the group. [See the documentation](https://developers.revolt.chat/developers/api/reference.html#tag/groups/put/channels/{group_id}/recipients/{member_id})",
version: "0.0.1",
version: "0.0.2",
annotations: {
destructiveHint: false,
openWorldHint: true,
readOnlyHint: false,
},
type: "action",
props: {
app,
Expand Down
7 changes: 6 additions & 1 deletion components/revolt/actions/create-group/create-group.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,12 @@ export default {
key: "revolt-create-group",
name: "Create Group",
description: "Create a new group channel. [See the documentation](https://developers.revolt.chat/developers/api/reference.html#tag/groups/post/channels/create)",
version: "0.0.1",
version: "0.0.2",
annotations: {
destructiveHint: false,
openWorldHint: true,
readOnlyHint: false,
},
type: "action",
props: {
app,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,12 @@ export default {
key: "revolt-send-friend-request",
name: "Send Friend Request",
description: "Send a friend request to another user. [See the documentation](https://developers.revolt.chat/developers/api/reference.html#tag/relationships/post/users/friend)",
version: "0.0.1",
version: "0.0.2",
annotations: {
destructiveHint: false,
openWorldHint: true,
readOnlyHint: false,
},
type: "action",
props: {
app,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,12 @@ export default {
key: "rewiser-create-transaction",
name: "Create Transaction",
description: "Create a financial transaction in Rewiser. [See the documentation](https://rewiser.io/api)",
version: "0.0.1",
version: "0.0.2",
annotations: {
destructiveHint: false,
openWorldHint: true,
readOnlyHint: false,
},
type: "action",
props: {
rewiser,
Expand Down
7 changes: 6 additions & 1 deletion components/rex/actions/create-contact/create-contact.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,12 @@ export default {
key: "rex-create-contact",
name: "Create Contact",
description: "Creates a new contact in Rex. [See the documentation](https://api-docs.rexsoftware.com/service/contacts#operation/create)",
version: "0.0.1",
version: "0.0.2",
annotations: {
destructiveHint: false,
openWorldHint: true,
readOnlyHint: false,
},
type: "action",
props: {
rex,
Expand Down
7 changes: 6 additions & 1 deletion components/rex/actions/create-lead/create-lead.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,12 @@ export default {
key: "rex-create-lead",
name: "Create Lead",
description: "Creates a new lead in Rex. [See the documentation](https://api-docs.rexsoftware.com/service/leads#operation/create)",
version: "0.0.1",
version: "0.0.2",
annotations: {
destructiveHint: false,
openWorldHint: true,
readOnlyHint: false,
},
type: "action",
props: {
rex,
Expand Down
7 changes: 6 additions & 1 deletion components/rex/actions/create-reminder/create-reminder.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,12 @@ export default {
key: "rex-create-reminder",
name: "Create Reminder",
description: "Creates a new reminder in Rex. [See the documentation](https://api-docs.rexsoftware.com/service/reminders#operation/create)",
version: "0.0.1",
version: "0.0.2",
annotations: {
destructiveHint: false,
openWorldHint: true,
readOnlyHint: false,
},
type: "action",
props: {
rex,
Expand Down
Loading
Loading