Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Motion - update props descriptions #11429

Open
wants to merge 3 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 1 addition & 1 deletion components/motion/actions/create-task/create-task.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import motion from "../../motion.app.mjs";
export default {
key: "motion-create-task",
name: "Create Task",
version: "0.0.1",
version: "0.0.2",
description: "Create a new task. [See the documentation](https://docs.usemotion.com/docs/motion-rest-api/0846d1205f9b3-create-task)",
type: "action",
props: {
Expand Down
2 changes: 1 addition & 1 deletion components/motion/actions/delete-task/delete-task.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import motion from "../../motion.app.mjs";
export default {
key: "motion-delete-task",
name: "Delete Task",
version: "0.0.1",
version: "0.0.2",
description: "Delete a specific task by Id. [See the documentation](https://docs.usemotion.com/docs/motion-rest-api/963b35f93846f-delete-a-task)",
type: "action",
props: {
Expand Down
2 changes: 1 addition & 1 deletion components/motion/actions/get-task/get-task.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import motion from "../../motion.app.mjs";
export default {
key: "motion-get-task",
name: "Retrieve Task",
version: "0.0.1",
version: "0.0.2",
description: "Retrieve a specific task by Id. [See the documentation](https://docs.usemotion.com/docs/motion-rest-api/3e8c65ed58693-retrieve-a-task)",
type: "action",
props: {
Expand Down
4 changes: 2 additions & 2 deletions components/motion/actions/move-workspace/move-workspace.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import motion from "../../motion.app.mjs";
export default {
key: "motion-move-workspace",
name: "Move Workspace",
version: "0.0.1",
version: "0.0.2",
description: "Move a specific task to another workspace. When moving tasks from one workspace to another, the tasks project, status, and label(s) and assignee will all be reset. [See the documentation](https://docs.usemotion.com/docs/motion-rest-api/0440c0ba81f10-move-workspace)",
type: "action",
props: {
Expand All @@ -19,7 +19,7 @@ export default {
motion,
"workspaceId",
],
description: "The id of the workspace where the task is going.",
description: "The ID of the workspace where the task is going.",
},
assigneeId: {
propDefinition: [
Expand Down
2 changes: 1 addition & 1 deletion components/motion/actions/update-task/update-task.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import motion from "../../motion.app.mjs";
export default {
key: "motion-update-task",
name: "Update Task",
version: "0.0.1",
version: "0.0.2",
description: "Update a specific task. [See the documentation](https://docs.usemotion.com/docs/motion-rest-api/a2b2ce881ce26-update-a-task)",
type: "action",
props: {
Expand Down
10 changes: 5 additions & 5 deletions components/motion/motion.app.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ export default {
assigneeId: {
type: "string",
label: "Assignee Id",
description: "The user id the task should be assigned to.",
description: "The user ID the task should be assigned to.",
async options({
workspaceId, taskId,
}) {
Expand Down Expand Up @@ -86,7 +86,7 @@ export default {
projectId: {
type: "string",
label: "Project Id",
description: "The id of the project.",
description: "The ID of the project.",
async options({
workspaceId, taskId,
}) {
Expand All @@ -113,7 +113,7 @@ export default {
status: {
type: "string",
label: "Status",
description: "The id of the task status.",
description: "The ID of the task status. To configure auto scheduling, enter `Auto-Scheduled` as a custom expression.",
async options({
workspaceId, taskId,
}) {
Expand All @@ -135,7 +135,7 @@ export default {
taskId: {
type: "string",
label: "Task Id",
description: "The id of the task.",
description: "The ID of the task.",
async options() {
const { tasks } = await this.listTasks();

Expand All @@ -150,7 +150,7 @@ export default {
workspaceId: {
type: "string",
label: "Workspace Id",
description: "The id of the workspace.",
description: "The ID of the workspace.",
async options() {
const { workspaces } = await this.listWorkspaces();

Expand Down
2 changes: 1 addition & 1 deletion components/motion/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@pipedream/motion",
"version": "0.1.0",
"version": "0.1.1",
"description": "Pipedream Motion Components",
"main": "motion.app.mjs",
"keywords": [
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import motion from "../../motion.app.mjs";
export default {
key: "motion-task-status-updated",
name: "Task Status Updated",
version: "0.0.1",
version: "0.0.2",
description: "Emit new event when the status of a specific task is updated.",
type: "source",
dedupe: "unique",
Expand Down