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
7 changes: 6 additions & 1 deletion components/aweber/actions/add-subscriber/add-subscriber.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,12 @@ export default {
name: "Add Subscriber",
description: "Add subscribers to the specified account and list. [See the docs here](https://api.aweber.com/#tag/Subscribers/paths/~1accounts~1{accountId}~1lists~1{listId}~1subscribers/post).",
type: "action",
version: "0.0.3",
version: "0.0.4",
annotations: {
destructiveHint: false,
openWorldHint: true,
readOnlyHint: false,
},
props: {
aweberApp,
accountId: {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,12 @@ export default {
name: "Create Or Update Subscriber",
description: "Create subscriber if the subscriber email is not existing or update the information for the specified subscriber by email. [See the docs here](https://api.aweber.com/#tag/Subscribers/paths/~1accounts~1{accountId}~1lists~1{listId}~1subscribers/patch).",
type: "action",
version: "0.0.1",
version: "0.0.2",
annotations: {
destructiveHint: true,
openWorldHint: true,
readOnlyHint: false,
},
props: {
aweberApp,
accountId: {
Expand Down
7 changes: 6 additions & 1 deletion components/aweber/actions/get-accounts/get-accounts.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,12 @@ export default {
name: "Get Accounts",
description: "Get a paginated collection of accounts. [See the docs here](https://api.aweber.com/#tag/Accounts/paths/~1accounts/get).",
type: "action",
version: "0.0.3",
version: "0.0.4",
annotations: {
destructiveHint: false,
openWorldHint: true,
readOnlyHint: true,
},
props: {
aweberApp,
start: {
Expand Down
7 changes: 6 additions & 1 deletion components/aweber/actions/get-lists/get-lists.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,12 @@ export default {
name: "Get Lists",
description: "Get a paginated collection of subscriber lists. [See the docs here](https://api.aweber.com/#tag/Lists/paths/~1accounts~1{accountId}~1lists/get).",
type: "action",
version: "0.0.3",
version: "0.0.4",
annotations: {
destructiveHint: false,
openWorldHint: true,
readOnlyHint: true,
},
props: {
aweberApp,
accountId: {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,12 @@ export default {
name: "Get Subscribers",
description: "Get a paginated collection of subscribers under the specified account and list. [See the docs here](https://api.aweber.com/#tag/Subscribers/paths/~1accounts~1{accountId}~1lists~1{listId}~1subscribers/get).",
type: "action",
version: "0.0.3",
version: "0.0.4",
annotations: {
destructiveHint: false,
openWorldHint: true,
readOnlyHint: true,
},
props: {
aweberApp,
accountId: {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,12 @@ export default {
name: "Update Subscriber",
description: "Update the information for the specified subscriber by email. [See the docs here](https://api.aweber.com/#tag/Subscribers/paths/~1accounts~1{accountId}~1lists~1{listId}~1subscribers/patch).",
type: "action",
version: "0.0.2",
version: "0.0.3",
annotations: {
destructiveHint: true,
openWorldHint: true,
readOnlyHint: false,
},
props: {
aweberApp,
accountId: {
Expand Down
7 changes: 6 additions & 1 deletion components/awork/actions/create-client/create-client.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,12 @@ import awork from "../../awork.app.mjs";

export default {
name: "Create Client",
version: "0.0.2",
version: "0.0.3",
annotations: {
destructiveHint: false,
openWorldHint: true,
readOnlyHint: false,
},
key: "awork-create-client",
description: "Creates a client. [See docs here](https://openapi.awork.io/#/Companies/post_companies)",
type: "action",
Expand Down
7 changes: 6 additions & 1 deletion components/awork/actions/create-project/create-project.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,12 @@ import awork from "../../awork.app.mjs";

export default {
name: "Create Project",
version: "0.0.2",
version: "0.0.3",
annotations: {
destructiveHint: false,
openWorldHint: true,
readOnlyHint: false,
},
key: "awork-create-project",
description: "Creates a project. [See docs here](https://openapi.awork.io/#/Projects/post_projects)",
type: "action",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,12 @@ import awork from "../../awork.app.mjs";

export default {
name: "Find Users By Email",
version: "0.0.2",
version: "0.0.3",
annotations: {
destructiveHint: false,
openWorldHint: true,
readOnlyHint: true,
},
key: "awork-find-users-by-email",
description: "Finds a user by email. [See docs here](https://openapi.awork.io/#/Users/get_users)",
type: "action",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,12 @@ export default {
Uploads a log event to the specified log stream.
[See docs](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-cloudwatch-logs/classes/putlogeventscommand.html)
`),
version: "0.1.2",
version: "0.1.3",
annotations: {
destructiveHint: false,
openWorldHint: true,
readOnlyHint: false,
},
type: "action",
props: {
aws: common.props.aws,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,12 @@ export default {
Creates a new table to your account.
[See docs](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-dynamodb/classes/createtablecommand.html)
`),
version: "0.2.2",
version: "0.2.3",
annotations: {
destructiveHint: false,
openWorldHint: true,
readOnlyHint: false,
},
type: "action",
props: {
aws: common.props.aws,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,12 @@ export default {
This operation allows you to perform transactional reads or writes on data stored in DynamoDB, using PartiQL.
[See docs](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-dynamodb/classes/executestatementcommand.html)
`),
version: "0.2.2",
version: "0.2.3",
annotations: {
destructiveHint: false,
openWorldHint: true,
readOnlyHint: false,
},
type: "action",
props: {
aws: common.props.aws,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,12 @@ export default {
If there is no matching item, Get Item does not return any data and there will be no Item element in the response.
[See docs](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-dynamodb/classes/getitemcommand.html)
`),
version: "0.2.2",
version: "0.2.3",
annotations: {
destructiveHint: false,
openWorldHint: true,
readOnlyHint: false,
},
type: "action",
props: {
aws: common.props.aws,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,12 @@ export default {
the new item completely replaces the existing item.
[See docs](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-dynamodb/classes/putitemcommand.html)
`),
version: "0.2.2",
version: "0.2.3",
annotations: {
destructiveHint: false,
openWorldHint: true,
readOnlyHint: false,
},
type: "action",
props: {
aws: common.props.aws,
Expand Down
7 changes: 6 additions & 1 deletion components/aws/actions/dynamodb-query/dynamodb-query.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,12 @@ export default {
The query operation finds items based on primary key values.
[See docs](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-dynamodb/classes/querycommand.html)
`),
version: "0.5.2",
version: "0.5.3",
annotations: {
destructiveHint: false,
openWorldHint: true,
readOnlyHint: false,
},
type: "action",
props: {
aws: common.props.aws,
Expand Down
7 changes: 6 additions & 1 deletion components/aws/actions/dynamodb-scan/dynamodb-scan.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,12 @@ export default {
The Scan operation returns one or more items and item attributes by accessing every item in a table.
[See docs](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-dynamodb/classes/scancommand.html)
`),
version: "0.2.2",
version: "0.2.3",
annotations: {
destructiveHint: false,
openWorldHint: true,
readOnlyHint: false,
},
type: "action",
props: {
aws: common.props.aws,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,12 @@ export default {
Updates an existing item's attributes, or adds a new item to the table if it does not already exist.
[See docs](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-dynamodb/classes/updateitemcommand.html)
`),
version: "0.2.2",
version: "0.2.3",
annotations: {
destructiveHint: true,
openWorldHint: true,
readOnlyHint: false,
},
type: "action",
props: {
aws: common.props.aws,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,12 @@ export default {
Modifies the settings for a given table. Only one type of modification is permitted per request.
[See docs](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-dynamodb/classes/updatetablecommand.html)
`),
version: "0.2.2",
version: "0.2.3",
annotations: {
destructiveHint: true,
openWorldHint: true,
readOnlyHint: false,
},
type: "action",
props: {
aws: common.props.aws,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,12 @@ export default {
key: "aws-eventbridge-send-event",
name: "EventBridge - Send Event to Event Bus",
description: "Sends an event to an EventBridge event bus. [See documentation](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/eventbridge/command/PutEventsCommand/)",
version: "0.4.3",
version: "0.4.4",
annotations: {
destructiveHint: false,
openWorldHint: true,
readOnlyHint: false,
},
type: "action",
props: {
aws: common.props.aws,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,12 @@ export default {
Create a Lambda function from source code. This action creates a zip file and deploys it to AWS Lambda.
[See the docs](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-lambda/classes/createfunctioncommand.html)
`),
version: "0.0.3",
version: "0.0.4",
annotations: {
destructiveHint: false,
openWorldHint: true,
readOnlyHint: false,
},
type: "action",
props: {
aws: common.props.aws,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,12 @@ export default {
Invoke a Lambda function using the AWS API.
[See the docs](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-lambda/index.html)
`),
version: "0.2.2",
version: "0.2.3",
annotations: {
destructiveHint: false,
openWorldHint: true,
readOnlyHint: false,
},
type: "action",
props: {
aws: common.props.aws,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,12 @@ export default {
name: "Redshift - Create Rows",
description: "Insert rows into a table. [See the documentation](https://docs.aws.amazon.com/redshift/latest/APIReference/API_ExecuteStatement.html)",
type: "action",
version: "0.0.1",
version: "0.0.2",
annotations: {
destructiveHint: false,
openWorldHint: true,
readOnlyHint: false,
},
props: {
app,
info: {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,12 @@ export default {
name: "Redshift - Delete Rows",
description: "Deletes row(s) in an existing table in Redshift. [See the documentation](https://docs.aws.amazon.com/redshift/latest/APIReference/API_ExecuteStatement.html)",
type: "action",
version: "0.0.1",
version: "0.0.2",
annotations: {
destructiveHint: true,
openWorldHint: true,
readOnlyHint: false,
},
props: {
app,
info: {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,12 @@ export default {
name: "Redshift - Query Database",
description: "Run a SELECT query on a database. [See the documentation](https://docs.aws.amazon.com/redshift/latest/APIReference/API_ExecuteStatement.html)",
type: "action",
version: "0.0.1",
version: "0.0.2",
annotations: {
destructiveHint: false,
openWorldHint: true,
readOnlyHint: false,
},
props: {
app,
info: {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,12 @@ export default {
name: "Redshift - Update Rows",
description: "Update row(s) in an existing table in Redshift. [See the documentation](https://docs.aws.amazon.com/redshift/latest/APIReference/API_ExecuteStatement.html)",
type: "action",
version: "0.0.1",
version: "0.0.2",
annotations: {
destructiveHint: true,
openWorldHint: true,
readOnlyHint: false,
},
props: {
app,
info: {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,12 @@ export default {
Downloads a file from S3 to the /tmp directory.
[See the documentation](https://docs.aws.amazon.com/AmazonS3/latest/API/API_GetObject.html)
`),
version: "0.0.5",
version: "0.0.6",
annotations: {
destructiveHint: false,
openWorldHint: true,
readOnlyHint: false,
},
type: "action",
props: {
aws: common.props.aws,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,13 +7,18 @@
key: "aws-s3-generate-presigned-url",
name: "S3 - Generate Presigned URL",
description: "Creates a presigned URL to download from a bucket. [See the documentation](https://docs.aws.amazon.com/AmazonS3/latest/userguide/example_s3_Scenario_PresignedUrl_section.html)",
version: "0.0.3",
version: "0.0.4",
annotations: {
destructiveHint: false,
openWorldHint: true,
readOnlyHint: false,
},
type: "action",
props: {
aws: common.props.aws,
region: common.props.region,
bucket: common.props.bucket,
key: {

Check warning on line 21 in components/aws/actions/s3-generate-presigned-url/s3-generate-presigned-url.mjs

View workflow job for this annotation

GitHub Actions / Lint Code Base

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

Check warning on line 21 in components/aws/actions/s3-generate-presigned-url/s3-generate-presigned-url.mjs

View workflow job for this annotation

GitHub Actions / Lint Code Base

Component prop key must have a label. See https://pipedream.com/docs/components/guidelines/#props
...common.props.key,
description: "The name of the S3 key with extension you'd like to download",
},
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,12 @@ export default {
key: "aws-s3-upload-base64-as-file",
name: "S3 - Upload Base64 As File",
description: "Accepts a base64-encoded string and a filename, then uploads as a file to S3. [See the documentation](https://docs.aws.amazon.com/AmazonS3/latest/userguide/upload-objects.html)",
version: "0.0.2",
version: "0.0.3",
annotations: {
destructiveHint: false,
openWorldHint: true,
readOnlyHint: false,
},
type: "action",
props: {
aws: common.props.aws,
Expand Down
Loading
Loading