Skip to content

Commit 013439c

Browse files
Merging pull request #17954
* Refactor update-issue action: remove duplicate imports and optional property * pnpm update --------- Co-authored-by: Lucas Caresia <[email protected]>
1 parent 1daaf61 commit 013439c

File tree

25 files changed

+28
-29
lines changed

25 files changed

+28
-29
lines changed

components/jira/actions/add-attachment-to-issue/add-attachment-to-issue.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ export default {
66
key: "jira-add-attachment-to-issue",
77
name: "Add Attachment To Issue",
88
description: "Adds an attachment to an issue, [See the docs](https://developer.atlassian.com/cloud/jira/platform/rest/v3/api-group-issue-attachments/#api-rest-api-3-issue-issueidorkey-attachments-post)",
9-
version: "1.0.2",
9+
version: "1.0.3",
1010
type: "action",
1111
props: {
1212
jira,

components/jira/actions/add-comment-to-issue/add-comment-to-issue.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ export default {
55
key: "jira-add-comment-to-issue",
66
name: "Add Comment To Issue",
77
description: "Adds a new comment to an issue, [See the docs](https://developer.atlassian.com/cloud/jira/platform/rest/v3/api-group-issue-comments/#api-rest-api-3-issue-issueidorkey-comment-post)",
8-
version: "0.1.10",
8+
version: "0.1.11",
99
type: "action",
1010
props: {
1111
jira,

components/jira/actions/add-multiple-attachments-to-issue/add-multiple-attachments-to-issue.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ export default {
66
key: "jira-add-multiple-attachments-to-issue",
77
name: "Add Multiple Attachments To Issue",
88
description: "Adds multiple attachments to an issue, [See the docs](https://developer.atlassian.com/cloud/jira/platform/rest/v3/api-group-issue-attachments/#api-rest-api-3-issue-issueidorkey-attachments-post)",
9-
version: "1.0.2",
9+
version: "1.0.3",
1010
type: "action",
1111
props: {
1212
jira,

components/jira/actions/add-watcher-to-issue/add-watcher-to-issue.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ import jira from "../../jira.app.mjs";
33
export default {
44
key: "jira-add-watcher-to-issue",
55
name: "Add Watcher To Issue",
6-
version: "0.0.9",
6+
version: "0.0.10",
77
description: "Adds a user as a watcher of an issue by passing the account ID of the user, For example, `5b10ac8d82e05b22cc7d4ef5`, If no user is specified the calling user is added. [See the docs](https://developer.atlassian.com/cloud/jira/platform/rest/v3/api-group-issue-watchers/#api-rest-api-3-issue-issueidorkey-watchers-post)",
88
type: "action",
99
props: {

components/jira/actions/assign-issue/assign-issue.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ import jira from "../../jira.app.mjs";
33
export default {
44
key: "jira-assign-issue",
55
name: "Assign Issue",
6-
version: "0.0.9",
6+
version: "0.0.10",
77
description: "Assigns an issue to a user. [See the docs](https://developer.atlassian.com/cloud/jira/platform/rest/v3/api-group-issues/#api-rest-api-3-issue-issueidorkey-assignee-put)",
88
type: "action",
99
props: {

components/jira/actions/create-custom-field-options-context/create-custom-field-options-context.mjs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
1-
import app from "../../jira.app.mjs";
21
import utils from "../../common/utils.mjs";
2+
import app from "../../jira.app.mjs";
33

44
export default {
55
key: "jira-create-custom-field-options-context",
66
name: "Create Custom Field Options (Context)",
77
description: "Create a context for custom field options. [See the documentation here](https://developer.atlassian.com/cloud/jira/platform/rest/v3/api-group-issue-custom-field-options/#api-rest-api-3-field-fieldid-context-contextid-option-post).",
8-
version: "0.0.2",
8+
version: "0.0.3",
99
type: "action",
1010
props: {
1111
app,

components/jira/actions/create-issue/create-issue.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ export default {
77
key: "jira-create-issue",
88
name: "Create Issue",
99
description: "Creates an issue or, where the option to create subtasks is enabled in Jira, a subtask, [See the docs](https://developer.atlassian.com/cloud/jira/platform/rest/v3/#api-rest-api-3-issue-post)",
10-
version: "0.1.21",
10+
version: "0.1.22",
1111
type: "action",
1212
props: {
1313
...common.props,

components/jira/actions/create-version/create-version.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ export default {
44
key: "jira-create-version",
55
name: "Create Jira Version in project",
66
description: "Creates a project version., [See the docs](https://developer.atlassian.com/cloud/jira/platform/rest/v3/api-group-project-versions/#api-rest-api-3-version-post)",
7-
version: "0.1.10",
7+
version: "0.1.11",
88
type: "action",
99
props: {
1010
jira,

components/jira/actions/delete-project/delete-project.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ export default {
44
key: "jira-delete-project",
55
name: "Delete Project",
66
description: "Deletes a project, [See the docs](https://developer.atlassian.com/cloud/jira/platform/rest/v3/api-group-projects/#api-rest-api-3-project-projectidorkey-delete)",
7-
version: "0.1.10",
7+
version: "0.1.11",
88
type: "action",
99
props: {
1010
jira,

components/jira/actions/get-all-projects/get-all-projects.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ export default {
44
key: "jira-get-all-projects",
55
name: "Get All Projects",
66
description: "Gets metadata on all projects, [See the docs](https://developer.atlassian.com/cloud/jira/platform/rest/v3/#api-rest-api-3-project-get)",
7-
version: "0.1.11",
7+
version: "0.1.12",
88
type: "action",
99
props: {
1010
jira,

0 commit comments

Comments
 (0)