Skip to content

Commit 8860745

Browse files
committed
Update Freshdesk action versions for consistency and improvements
- Incremented version numbers for multiple Freshdesk actions and sources to reflect recent updates. - Updated versions include: - `add-note-to-ticket` to 0.0.4 - `add-ticket-tags` to 0.0.5 - `assign-ticket-to-agent`, `assign-ticket-to-group`, `close-ticket`, `set-ticket-priority`, `set-ticket-status` to 0.0.6 - `create-agent`, `create-solution-article`, `create-company`, `create-contact`, `create-ticket-field`, `download-attachment`, `get-contact`, `get-solution-article`, `list-agents`, `list-category-folders`, `list-folder-articles`, `list-solution-categories`, `list-ticket-conversations`, `list-ticket-fields`, `remove-ticket-tags`, `update-agent`, `update-contact`, `update-solution-article`, `update-ticket-field` to 0.0.3 - `create-ticket` to 0.0.10 - `list-all-tickets` to 0.2.7 - `list-ticket-fields` to 0.0.3 - `new-contact` and `new-ticket` to 0.0.9 - `contact-updated`, `ticket-updated` to 0.0.2 - Ensured all updates align with the latest API documentation for improved functionality.
1 parent e6ba034 commit 8860745

File tree

36 files changed

+36
-36
lines changed

36 files changed

+36
-36
lines changed

components/freshdesk/actions/add-note-to-ticket/add-note-to-ticket.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ export default {
55
key: "freshdesk-add-note-to-ticket",
66
name: "Add Note to Ticket",
77
description: "Add a note or conversation to an existing ticket. [See the documentation](https://developers.freshdesk.com/api/#add_note_to_a_ticket).",
8-
version: "0.0.3",
8+
version: "0.0.4",
99
annotations: {
1010
destructiveHint: false,
1111
openWorldHint: true,

components/freshdesk/actions/add-ticket-tags/add-ticket-tags.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ export default {
66
name: "Add Ticket Tags",
77
description: "Add tags to a ticket (appends to existing tags). [See the documentation](https://developers.freshdesk.com/api/#update_ticket)",
88
type: "action",
9-
version: "0.0.4",
9+
version: "0.0.5",
1010
annotations: {
1111
destructiveHint: true,
1212
openWorldHint: true,

components/freshdesk/actions/assign-ticket-to-agent/assign-ticket-to-agent.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ export default {
44
key: "freshdesk-assign-ticket-to-agent",
55
name: "Assign Ticket to Agent",
66
description: "Assign a Freshdesk ticket to a specific agent. [See the documentation](https://developers.freshdesk.com/api/#update_ticket).",
7-
version: "0.0.5",
7+
version: "0.0.6",
88
annotations: {
99
destructiveHint: true,
1010
openWorldHint: true,

components/freshdesk/actions/assign-ticket-to-group/assign-ticket-to-group.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ export default {
44
key: "freshdesk-assign-ticket-to-group",
55
name: "Assign Ticket to Group",
66
description: "Assign a Freshdesk ticket to a specific group [See the documentation](https://developers.freshdesk.com/api/#update_ticket).",
7-
version: "0.0.5",
7+
version: "0.0.6",
88
annotations: {
99
destructiveHint: true,
1010
openWorldHint: true,

components/freshdesk/actions/close-ticket/close-ticket.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ export default {
44
key: "freshdesk-close-ticket",
55
name: "Close Ticket",
66
description: "Set a Freshdesk ticket's status to 'Closed'. [See docs](https://developers.freshdesk.com/api/#update_a_ticket)",
7-
version: "0.0.5",
7+
version: "0.0.6",
88
annotations: {
99
destructiveHint: true,
1010
openWorldHint: true,

components/freshdesk/actions/create-agent/create-agent.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ export default {
55
key: "freshdesk-create-agent",
66
name: "Create Agent",
77
description: "Create an agent in Freshdesk. [See the documentation](https://developers.freshdesk.com/api/#create_agent)",
8-
version: "0.0.2",
8+
version: "0.0.3",
99
annotations: {
1010
destructiveHint: false,
1111
openWorldHint: true,

components/freshdesk/actions/create-company/create-company.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ export default {
44
key: "freshdesk-create-company",
55
name: "Create a Company",
66
description: "Create a company. [See the documentation](https://developers.freshdesk.com/api/#create_company)",
7-
version: "0.0.8",
7+
version: "0.0.9",
88
annotations: {
99
destructiveHint: false,
1010
openWorldHint: true,

components/freshdesk/actions/create-contact/create-contact.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ export default {
55
key: "freshdesk-create-contact",
66
name: "Create a Contact",
77
description: "Create a contact. [See the documentation](https://developers.freshdesk.com/api/#create_contact)",
8-
version: "0.0.8",
8+
version: "0.0.9",
99
annotations: {
1010
destructiveHint: false,
1111
openWorldHint: true,

components/freshdesk/actions/create-solution-article/create-solution-article.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ export default {
66
key: "freshdesk-create-solution-article",
77
name: "Create Solution Article",
88
description: "Create a solution article in Freshdesk. [See the documentation](https://developers.freshdesk.com/api/#solution_article_attributes)",
9-
version: "0.0.2",
9+
version: "0.0.3",
1010
annotations: {
1111
destructiveHint: false,
1212
openWorldHint: true,

components/freshdesk/actions/create-ticket-field/create-ticket-field.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ export default {
66
key: "freshdesk-create-ticket-field",
77
name: "Create Ticket Field",
88
description: "Create a ticket field in Freshdesk. [See the documentation](https://developers.freshdesk.com/api/#create_ticket_field)",
9-
version: "0.0.2",
9+
version: "0.0.3",
1010
annotations: {
1111
destructiveHint: false,
1212
openWorldHint: true,

0 commit comments

Comments
 (0)