From f7f8620819d4e700756afa5d4560d4ea3cf792fb Mon Sep 17 00:00:00 2001 From: Michelle Bergeron Date: Wed, 26 Nov 2025 13:05:04 -0500 Subject: [PATCH 1/2] new components --- .../add-ticket-tags/add-ticket-tags.mjs | 46 ++++++++++ .../actions/get-macro/get-macro.mjs | 31 +++++++ .../list-ticket-field-values.mjs | 33 +++++++ .../list-ticket-tags/list-ticket-tags.mjs | 33 +++++++ .../set-ticket-tags/set-ticket-tags.mjs | 46 ++++++++++ .../update-ticket-field-values.mjs | 91 +++++++++++++++++++ .../gorgias_oauth/gorgias_oauth.app.mjs | 53 ++++++++++- components/gorgias_oauth/package.json | 2 +- 8 files changed, 332 insertions(+), 3 deletions(-) create mode 100644 components/gorgias_oauth/actions/add-ticket-tags/add-ticket-tags.mjs create mode 100644 components/gorgias_oauth/actions/get-macro/get-macro.mjs create mode 100644 components/gorgias_oauth/actions/list-ticket-field-values/list-ticket-field-values.mjs create mode 100644 components/gorgias_oauth/actions/list-ticket-tags/list-ticket-tags.mjs create mode 100644 components/gorgias_oauth/actions/set-ticket-tags/set-ticket-tags.mjs create mode 100644 components/gorgias_oauth/actions/update-ticket-field-values/update-ticket-field-values.mjs diff --git a/components/gorgias_oauth/actions/add-ticket-tags/add-ticket-tags.mjs b/components/gorgias_oauth/actions/add-ticket-tags/add-ticket-tags.mjs new file mode 100644 index 0000000000000..50373f6f182e3 --- /dev/null +++ b/components/gorgias_oauth/actions/add-ticket-tags/add-ticket-tags.mjs @@ -0,0 +1,46 @@ +import gorgias from "../../gorgias_oauth.app.mjs"; + +export default { + key: "gorgias_oauth-add-ticket-tags", + name: "Add Ticket Tags", + description: "Add tags to a ticket. [See the documentation](https://developers.gorgias.com/reference/create-ticket-tags)", + version: "0.0.1", + type: "action", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: false, + }, + props: { + gorgias, + ticketId: { + propDefinition: [ + gorgias, + "ticketId", + ], + }, + tagIds: { + propDefinition: [ + gorgias, + "tagId", + ], + type: "string[]", + label: "Tag IDs", + description: "The IDs of the tags to add to the ticket", + optional: false, + }, + }, + async run({ $ }) { + const response = await this.gorgias.addTicketTags({ + $, + ticketId: this.ticketId, + data: { + ids: this.tagIds, + }, + }); + $.export("$summary", `Successfully added ${this.tagIds.length} tag${this.tagIds.length === 1 + ? "" + : "s"} to ticket ${this.ticketId}`); + return response; + }, +}; diff --git a/components/gorgias_oauth/actions/get-macro/get-macro.mjs b/components/gorgias_oauth/actions/get-macro/get-macro.mjs new file mode 100644 index 0000000000000..c994116e4479b --- /dev/null +++ b/components/gorgias_oauth/actions/get-macro/get-macro.mjs @@ -0,0 +1,31 @@ +import gorgias from "../../gorgias_oauth.app.mjs"; + +export default { + key: "gorgias_oauth-get-macro", + name: "Get Macro", + description: "Get a macro by ID. [See the documentation](https://developers.gorgias.com/reference/get-macro)", + version: "0.0.1", + type: "action", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: true, + }, + props: { + gorgias, + macroId: { + propDefinition: [ + gorgias, + "macroId", + ], + }, + }, + async run({ $ }) { + const response = await this.gorgias.getMacro({ + $, + id: this.macroId, + }); + $.export("$summary", `Successfully retrieved macro with ID: ${this.macroId}`); + return response; + }, +}; diff --git a/components/gorgias_oauth/actions/list-ticket-field-values/list-ticket-field-values.mjs b/components/gorgias_oauth/actions/list-ticket-field-values/list-ticket-field-values.mjs new file mode 100644 index 0000000000000..cebf87a2b533a --- /dev/null +++ b/components/gorgias_oauth/actions/list-ticket-field-values/list-ticket-field-values.mjs @@ -0,0 +1,33 @@ +import gorgias from "../../gorgias_oauth.app.mjs"; + +export default { + key: "gorgias_oauth-list-ticket-field-values", + name: "List Ticket Field Values", + description: "List field values for a ticket. [See the documentation](https://developers.gorgias.com/reference/list-ticket-custom-fields)", + version: "0.0.1", + type: "action", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: true, + }, + props: { + gorgias, + ticketId: { + propDefinition: [ + gorgias, + "ticketId", + ], + }, + }, + async run({ $ }) { + const response = await this.gorgias.listTicketFieldValues({ + $, + ticketId: this.ticketId, + }); + $.export("$summary", `Successfully retrieved ${response?.data?.length ?? 0} field value${response?.data?.length === 1 + ? "" + : "s"} for ticket ${this.ticketId}`); + return response; + }, +}; diff --git a/components/gorgias_oauth/actions/list-ticket-tags/list-ticket-tags.mjs b/components/gorgias_oauth/actions/list-ticket-tags/list-ticket-tags.mjs new file mode 100644 index 0000000000000..a19c40bd5a824 --- /dev/null +++ b/components/gorgias_oauth/actions/list-ticket-tags/list-ticket-tags.mjs @@ -0,0 +1,33 @@ +import gorgias from "../../gorgias_oauth.app.mjs"; + +export default { + key: "gorgias_oauth-list-ticket-tags", + name: "List Ticket Tags", + description: "List tags for a ticket. [See the documentation](https://developers.gorgias.com/reference/get_api-tickets-ticket-id-tags)", + version: "0.0.1", + type: "action", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: true, + }, + props: { + gorgias, + ticketId: { + propDefinition: [ + gorgias, + "ticketId", + ], + }, + }, + async run({ $ }) { + const response = await this.gorgias.listTicketTags({ + $, + ticketId: this.ticketId, + }); + $.export("$summary", `Successfully retrieved ${response?.data?.length ?? 0} tag${response?.data?.length === 1 + ? "" + : "s"} for ticket ${this.ticketId}`); + return response; + }, +}; diff --git a/components/gorgias_oauth/actions/set-ticket-tags/set-ticket-tags.mjs b/components/gorgias_oauth/actions/set-ticket-tags/set-ticket-tags.mjs new file mode 100644 index 0000000000000..94f50d4ae8f54 --- /dev/null +++ b/components/gorgias_oauth/actions/set-ticket-tags/set-ticket-tags.mjs @@ -0,0 +1,46 @@ +import gorgias from "../../gorgias_oauth.app.mjs"; + +export default { + key: "gorgias_oauth-set-ticket-tags", + name: "Set Ticket Tags", + description: "Set tags on a ticket. [See the documentation](https://developers.gorgias.com/reference/update-ticket-tags)", + version: "0.0.1", + type: "action", + annotations: { + destructiveHint: true, + openWorldHint: true, + readOnlyHint: false, + }, + props: { + gorgias, + ticketId: { + propDefinition: [ + gorgias, + "ticketId", + ], + }, + tagIds: { + propDefinition: [ + gorgias, + "tagId", + ], + type: "string[]", + label: "Tag IDs", + description: "The IDs of the tags to set on the ticket", + optional: false, + }, + }, + async run({ $ }) { + const response = await this.gorgias.setTicketTags({ + $, + ticketId: this.ticketId, + data: { + ids: this.tagIds, + }, + }); + $.export("$summary", `Successfully set ${this.tagIds.length} tag${this.tagIds.length === 1 + ? "" + : "s"} on ticket ${this.ticketId}`); + return response; + }, +}; diff --git a/components/gorgias_oauth/actions/update-ticket-field-values/update-ticket-field-values.mjs b/components/gorgias_oauth/actions/update-ticket-field-values/update-ticket-field-values.mjs new file mode 100644 index 0000000000000..163145a524c13 --- /dev/null +++ b/components/gorgias_oauth/actions/update-ticket-field-values/update-ticket-field-values.mjs @@ -0,0 +1,91 @@ +import gorgias from "../../gorgias_oauth.app.mjs"; + +export default { + key: "gorgias_oauth-update-ticket-field-values", + name: "Update Ticket Field Values", + description: "Update field values for a ticket. [See the documentation](https://developers.gorgias.com/reference/update-ticket-custom-fields)", + version: "0.0.1", + type: "action", + annotations: { + destructiveHint: true, + openWorldHint: true, + readOnlyHint: false, + }, + props: { + gorgias, + ticketId: { + propDefinition: [ + gorgias, + "ticketId", + ], + reloadProps: true, + }, + }, + async additionalProps() { + const props = {}; + if (!this.ticketId) { + return props; + } + const { data: customFields } = await this.gorgias.listCustomFields({ + params: { + object_type: "Ticket", + }, + }); + for (const field of customFields) { + const inputType = field?.definition?.input_settings?.input_type; + const dataType = field?.definition?.data_type; + props[field.id] = { + type: dataType === "boolean" + ? "boolean" + : "string", + label: field.label, + optional: !field.required, + }; + if (dataType === "boolean") continue; + if (inputType === "dropdown") { + props[field.id].options = field.definition.input_settings.choices.map((choice) => `${choice}`); + } + } + return props; + }, + async run({ $ }) { + const { data: customFields } = await this.gorgias.listCustomFields({ + params: { + object_type: "Ticket", + }, + }); + + const { data: fieldValues } = await this.gorgias.listTicketFieldValues({ + ticketId: this.ticketId, + }); + const data = []; + for (const field of customFields) { + if (this[field.id] === undefined) { + const fieldValue = fieldValues.find((fv) => fv.field.id === field.id); + if (fieldValue) { + data.push({ + id: field.id, + value: fieldValue?.value, + }); + } + continue; + } + const dataType = field?.definition?.data_type; + data.push({ + id: field.id, + value: dataType === "number" + ? +this[field.id] + : this[field.id], + }); + } + + const response = await this.gorgias.updateTicketFieldValues({ + $, + ticketId: this.ticketId, + data, + }); + + $.export("$summary", `Successfully updated ticket ${this.ticketId} field values`); + return response; + }, +}; diff --git a/components/gorgias_oauth/gorgias_oauth.app.mjs b/components/gorgias_oauth/gorgias_oauth.app.mjs index 9f6734ea54cab..1b4d371d28994 100644 --- a/components/gorgias_oauth/gorgias_oauth.app.mjs +++ b/components/gorgias_oauth/gorgias_oauth.app.mjs @@ -59,7 +59,7 @@ export default { ticketId: { type: "integer", label: "Ticket ID", - description: "The ID of a ticket to watch for new messages", + description: "The ID of a ticket", async options({ prevContext }) { const { data: tickets, @@ -196,7 +196,7 @@ export default { tagId: { type: "string", label: "Tag ID", - description: "The tag id.", + description: "The ID of a tag", optional: true, async options({ prevContext: { cursor } }) { if (cursor === null) { @@ -523,5 +523,54 @@ export default { method: "DELETE", }); }, + listTicketTags({ + ticketId, ...opts + }) { + return this._makeRequest({ + path: `/tickets/${ticketId}/tags`, + ...opts, + }); + }, + addTicketTags({ + ticketId, ...opts + }) { + return this._makeRequest({ + method: "POST", + path: `/tickets/${ticketId}/tags`, + ...opts, + }); + }, + setTicketTags({ + ticketId, ...opts + }) { + return this._makeRequest({ + method: "PUT", + path: `/tickets/${ticketId}/tags`, + ...opts, + }); + }, + listTicketFieldValues({ + ticketId, ...opts + }) { + return this._makeRequest({ + path: `/tickets/${ticketId}/custom-fields`, + ...opts, + }); + }, + listCustomFields(opts = {}) { + return this._makeRequest({ + path: "/custom-fields", + ...opts, + }); + }, + updateTicketFieldValues({ + ticketId, ...opts + }) { + return this._makeRequest({ + method: "PUT", + path: `/tickets/${ticketId}/custom-fields`, + ...opts, + }); + }, }, }; diff --git a/components/gorgias_oauth/package.json b/components/gorgias_oauth/package.json index 3fb26c4b162e0..a0e55d05d1e35 100644 --- a/components/gorgias_oauth/package.json +++ b/components/gorgias_oauth/package.json @@ -1,6 +1,6 @@ { "name": "@pipedream/gorgias_oauth", - "version": "0.7.0", + "version": "0.8.0", "description": "Pipedream Gorgias OAuth Components", "main": "gorgias_oauth.app.mjs", "keywords": [ From 4a6b3aea1e4d5c075a6917b5fae868ce8a5ab3cc Mon Sep 17 00:00:00 2001 From: Michelle Bergeron Date: Wed, 26 Nov 2025 13:09:49 -0500 Subject: [PATCH 2/2] versions --- .../gorgias_oauth/actions/create-customer/create-customer.mjs | 2 +- components/gorgias_oauth/actions/create-macro/create-macro.mjs | 2 +- .../actions/create-ticket-message/create-ticket-message.mjs | 2 +- .../gorgias_oauth/actions/create-ticket/create-ticket.mjs | 2 +- components/gorgias_oauth/actions/delete-macro/delete-macro.mjs | 2 +- .../actions/get-ticket-message/get-ticket-message.mjs | 2 +- components/gorgias_oauth/actions/get-ticket/get-ticket.mjs | 2 +- components/gorgias_oauth/actions/list-macros/list-macros.mjs | 2 +- .../gorgias_oauth/actions/list-messages/list-messages.mjs | 2 +- .../actions/list-ticket-messages/list-ticket-messages.mjs | 2 +- components/gorgias_oauth/actions/list-tickets/list-tickets.mjs | 2 +- .../actions/retrieve-customer/retrieve-customer.mjs | 2 +- .../gorgias_oauth/actions/update-customer/update-customer.mjs | 2 +- components/gorgias_oauth/actions/update-macro/update-macro.mjs | 2 +- .../gorgias_oauth/actions/update-ticket/update-ticket.mjs | 2 +- .../sources/internal-note-created/internal-note-created.mjs | 2 +- .../gorgias_oauth/sources/macro-updated/macro-updated.mjs | 2 +- .../sources/new-macro-created/new-macro-created.mjs | 2 +- .../gorgias_oauth/sources/ticket-created/ticket-created.mjs | 2 +- .../sources/ticket-message-created/ticket-message-created.mjs | 2 +- .../gorgias_oauth/sources/ticket-updated/ticket-updated.mjs | 2 +- 21 files changed, 21 insertions(+), 21 deletions(-) diff --git a/components/gorgias_oauth/actions/create-customer/create-customer.mjs b/components/gorgias_oauth/actions/create-customer/create-customer.mjs index 24eb519c812bf..9e498c6b6803c 100644 --- a/components/gorgias_oauth/actions/create-customer/create-customer.mjs +++ b/components/gorgias_oauth/actions/create-customer/create-customer.mjs @@ -5,7 +5,7 @@ export default { key: "gorgias_oauth-create-customer", name: "Create Customer", description: "Create a new customer. [See the docs](https://developers.gorgias.com/reference/post_api-customers)", - version: "0.0.9", + version: "0.0.10", annotations: { destructiveHint: false, openWorldHint: true, diff --git a/components/gorgias_oauth/actions/create-macro/create-macro.mjs b/components/gorgias_oauth/actions/create-macro/create-macro.mjs index 2796f9dbbd72f..78173171b5b20 100644 --- a/components/gorgias_oauth/actions/create-macro/create-macro.mjs +++ b/components/gorgias_oauth/actions/create-macro/create-macro.mjs @@ -6,7 +6,7 @@ export default { key: "gorgias_oauth-create-macro", name: "Create Macro", description: "Create a macro. [See the documentation](https://developers.gorgias.com/reference/create-macro)", - version: "0.0.3", + version: "0.0.4", annotations: { destructiveHint: false, openWorldHint: true, diff --git a/components/gorgias_oauth/actions/create-ticket-message/create-ticket-message.mjs b/components/gorgias_oauth/actions/create-ticket-message/create-ticket-message.mjs index 08585a39aa810..2914a52591856 100644 --- a/components/gorgias_oauth/actions/create-ticket-message/create-ticket-message.mjs +++ b/components/gorgias_oauth/actions/create-ticket-message/create-ticket-message.mjs @@ -7,7 +7,7 @@ export default { key: "gorgias_oauth-create-ticket-message", name: "Create Ticket Message", description: "Create a message for a ticket in the Gorgias system. [See the documentation](https://developers.gorgias.com/reference/create-ticket-message)", - version: "0.0.6", + version: "0.0.7", annotations: { destructiveHint: false, openWorldHint: true, diff --git a/components/gorgias_oauth/actions/create-ticket/create-ticket.mjs b/components/gorgias_oauth/actions/create-ticket/create-ticket.mjs index e5175c84acb84..caa3c6b65311d 100644 --- a/components/gorgias_oauth/actions/create-ticket/create-ticket.mjs +++ b/components/gorgias_oauth/actions/create-ticket/create-ticket.mjs @@ -4,7 +4,7 @@ export default { key: "gorgias_oauth-create-ticket", name: "Create Ticket", description: "Create a new ticket. [See the docs](https://developers.gorgias.com/reference/post_api-tickets)", - version: "0.0.10", + version: "0.0.11", annotations: { destructiveHint: false, openWorldHint: true, diff --git a/components/gorgias_oauth/actions/delete-macro/delete-macro.mjs b/components/gorgias_oauth/actions/delete-macro/delete-macro.mjs index 038d9c4e7799b..a2f198dc426cd 100644 --- a/components/gorgias_oauth/actions/delete-macro/delete-macro.mjs +++ b/components/gorgias_oauth/actions/delete-macro/delete-macro.mjs @@ -4,7 +4,7 @@ export default { key: "gorgias_oauth-delete-macro", name: "Delete Macro", description: "Delete a macro. [See the documentation](https://developers.gorgias.com/reference/delete-macro)", - version: "0.0.3", + version: "0.0.4", annotations: { destructiveHint: true, openWorldHint: true, diff --git a/components/gorgias_oauth/actions/get-ticket-message/get-ticket-message.mjs b/components/gorgias_oauth/actions/get-ticket-message/get-ticket-message.mjs index 109ba6d75229a..ddb2fa0bdc7a5 100644 --- a/components/gorgias_oauth/actions/get-ticket-message/get-ticket-message.mjs +++ b/components/gorgias_oauth/actions/get-ticket-message/get-ticket-message.mjs @@ -4,7 +4,7 @@ export default { name: "Get Ticket Message", description: "Get a specific message from a ticket. [See the documentation](https://developers.gorgias.com/reference/get-ticket-message)", key: "gorgias_oauth-get-ticket-message", - version: "0.0.1", + version: "0.0.2", type: "action", annotations: { destructiveHint: false, diff --git a/components/gorgias_oauth/actions/get-ticket/get-ticket.mjs b/components/gorgias_oauth/actions/get-ticket/get-ticket.mjs index 54e97e2dce8d7..a40966da447d4 100644 --- a/components/gorgias_oauth/actions/get-ticket/get-ticket.mjs +++ b/components/gorgias_oauth/actions/get-ticket/get-ticket.mjs @@ -4,7 +4,7 @@ export default { key: "gorgias_oauth-get-ticket", name: "Get Ticket", description: "Get a ticket. [See the documentation](https://developers.gorgias.com/reference/get-ticket)", - version: "0.0.3", + version: "0.0.4", annotations: { destructiveHint: false, openWorldHint: true, diff --git a/components/gorgias_oauth/actions/list-macros/list-macros.mjs b/components/gorgias_oauth/actions/list-macros/list-macros.mjs index eda9c5c244654..ca6145d474486 100644 --- a/components/gorgias_oauth/actions/list-macros/list-macros.mjs +++ b/components/gorgias_oauth/actions/list-macros/list-macros.mjs @@ -4,7 +4,7 @@ export default { key: "gorgias_oauth-list-macros", name: "List Macros", description: "List all macros. [See the documentation](https://developers.gorgias.com/reference/list-macros)", - version: "0.0.3", + version: "0.0.4", annotations: { destructiveHint: false, openWorldHint: true, diff --git a/components/gorgias_oauth/actions/list-messages/list-messages.mjs b/components/gorgias_oauth/actions/list-messages/list-messages.mjs index 44d932d47e5d3..6892b641e0479 100644 --- a/components/gorgias_oauth/actions/list-messages/list-messages.mjs +++ b/components/gorgias_oauth/actions/list-messages/list-messages.mjs @@ -4,7 +4,7 @@ export default { name: "List Messages", description: "List all messages. [See the documentation](https://developers.gorgias.com/reference/list-messages)", key: "gorgias_oauth-list-messages", - version: "0.0.1", + version: "0.0.2", type: "action", annotations: { destructiveHint: false, diff --git a/components/gorgias_oauth/actions/list-ticket-messages/list-ticket-messages.mjs b/components/gorgias_oauth/actions/list-ticket-messages/list-ticket-messages.mjs index 39b96349e1900..b418a246b38af 100644 --- a/components/gorgias_oauth/actions/list-ticket-messages/list-ticket-messages.mjs +++ b/components/gorgias_oauth/actions/list-ticket-messages/list-ticket-messages.mjs @@ -4,7 +4,7 @@ export default { name: "List Ticket Messages", description: "List all messages for a specific ticket. [See the documentation](https://developers.gorgias.com/reference/list-ticket-messages)", key: "gorgias_oauth-list-ticket-messages", - version: "0.0.1", + version: "0.0.2", type: "action", annotations: { destructiveHint: false, diff --git a/components/gorgias_oauth/actions/list-tickets/list-tickets.mjs b/components/gorgias_oauth/actions/list-tickets/list-tickets.mjs index 8f5b03ddd561c..fb2bb3e435169 100644 --- a/components/gorgias_oauth/actions/list-tickets/list-tickets.mjs +++ b/components/gorgias_oauth/actions/list-tickets/list-tickets.mjs @@ -4,7 +4,7 @@ export default { key: "gorgias_oauth-list-tickets", name: "List Tickets", description: "List all tickets. [See the docs](https://developers.gorgias.com/reference/get_api-tickets)", - version: "0.0.10", + version: "0.0.11", annotations: { destructiveHint: false, openWorldHint: true, diff --git a/components/gorgias_oauth/actions/retrieve-customer/retrieve-customer.mjs b/components/gorgias_oauth/actions/retrieve-customer/retrieve-customer.mjs index 6df8786eaadbf..9f3e8ceef04e1 100644 --- a/components/gorgias_oauth/actions/retrieve-customer/retrieve-customer.mjs +++ b/components/gorgias_oauth/actions/retrieve-customer/retrieve-customer.mjs @@ -4,7 +4,7 @@ export default { key: "gorgias_oauth-retrieve-customer", name: "Retrieve a Customer", description: "Retrieve a customer. [See the docs](https://developers.gorgias.com/reference/get_api-customers-id-)", - version: "0.0.9", + version: "0.0.10", annotations: { destructiveHint: false, openWorldHint: true, diff --git a/components/gorgias_oauth/actions/update-customer/update-customer.mjs b/components/gorgias_oauth/actions/update-customer/update-customer.mjs index 18d8deade0a67..29b3386bd0a21 100644 --- a/components/gorgias_oauth/actions/update-customer/update-customer.mjs +++ b/components/gorgias_oauth/actions/update-customer/update-customer.mjs @@ -10,7 +10,7 @@ export default { key: "gorgias_oauth-update-customer", name: "Update Customer", description: "Update a customer. [See the docs](https://developers.gorgias.com/reference/put_api-customers-id-)", - version: "0.0.9", + version: "0.0.10", annotations: { destructiveHint: true, openWorldHint: true, diff --git a/components/gorgias_oauth/actions/update-macro/update-macro.mjs b/components/gorgias_oauth/actions/update-macro/update-macro.mjs index 39e285526c987..d615a7e8ebb05 100644 --- a/components/gorgias_oauth/actions/update-macro/update-macro.mjs +++ b/components/gorgias_oauth/actions/update-macro/update-macro.mjs @@ -6,7 +6,7 @@ export default { key: "gorgias_oauth-update-macro", name: "Update Macro", description: "Update a macro. [See the documentation](https://developers.gorgias.com/reference/update-macro)", - version: "0.0.3", + version: "0.0.4", annotations: { destructiveHint: true, openWorldHint: true, diff --git a/components/gorgias_oauth/actions/update-ticket/update-ticket.mjs b/components/gorgias_oauth/actions/update-ticket/update-ticket.mjs index a1727ac2d8248..1b43b4e1cb7c3 100644 --- a/components/gorgias_oauth/actions/update-ticket/update-ticket.mjs +++ b/components/gorgias_oauth/actions/update-ticket/update-ticket.mjs @@ -5,7 +5,7 @@ export default { key: "gorgias_oauth-update-ticket", name: "Update Ticket", description: "Updates a predefined ticket in the Gorgias system. [See the documentation](https://developers.gorgias.com/reference/update-ticket)", - version: "0.0.6", + version: "0.0.7", annotations: { destructiveHint: true, openWorldHint: true, diff --git a/components/gorgias_oauth/sources/internal-note-created/internal-note-created.mjs b/components/gorgias_oauth/sources/internal-note-created/internal-note-created.mjs index 0c0b61cbfcfcb..ab33f8bdc7c14 100644 --- a/components/gorgias_oauth/sources/internal-note-created/internal-note-created.mjs +++ b/components/gorgias_oauth/sources/internal-note-created/internal-note-created.mjs @@ -7,7 +7,7 @@ export default { key: "gorgias_oauth-internal-note-created", name: "New Internal Note", description: "Emit new event when an internal note is created on a ticket. [See the documentation](https://developers.gorgias.com/reference/the-event-object)", - version: "0.0.3", + version: "0.0.4", type: "source", props: { ...base.props, diff --git a/components/gorgias_oauth/sources/macro-updated/macro-updated.mjs b/components/gorgias_oauth/sources/macro-updated/macro-updated.mjs index 7b60f07e9c25b..176732a010e66 100644 --- a/components/gorgias_oauth/sources/macro-updated/macro-updated.mjs +++ b/components/gorgias_oauth/sources/macro-updated/macro-updated.mjs @@ -6,7 +6,7 @@ export default { key: "gorgias_oauth-macro-updated", name: "Macro Updated", description: "Emit new event when a macro is updated. [See the documentation](https://developers.gorgias.com/reference/the-event-object)", - version: "0.0.2", + version: "0.0.3", type: "source", dedupe: "unique", methods: { diff --git a/components/gorgias_oauth/sources/new-macro-created/new-macro-created.mjs b/components/gorgias_oauth/sources/new-macro-created/new-macro-created.mjs index 9ace61cf08200..84252ed5d75f0 100644 --- a/components/gorgias_oauth/sources/new-macro-created/new-macro-created.mjs +++ b/components/gorgias_oauth/sources/new-macro-created/new-macro-created.mjs @@ -6,7 +6,7 @@ export default { key: "gorgias_oauth-new-macro-created", name: "New Macro Created", description: "Emit new event when a macro is created. [See the documentation](https://developers.gorgias.com/reference/the-event-object)", - version: "0.0.2", + version: "0.0.3", type: "source", dedupe: "unique", methods: { diff --git a/components/gorgias_oauth/sources/ticket-created/ticket-created.mjs b/components/gorgias_oauth/sources/ticket-created/ticket-created.mjs index 7cd0c4e8d7cec..5b0100bdd5bef 100644 --- a/components/gorgias_oauth/sources/ticket-created/ticket-created.mjs +++ b/components/gorgias_oauth/sources/ticket-created/ticket-created.mjs @@ -7,7 +7,7 @@ export default { key: "gorgias_oauth-ticket-created", name: "New Ticket", description: "Emit new event when a ticket is created. [See the documentation](https://developers.gorgias.com/reference/the-event-object)", - version: "0.1.9", + version: "0.1.10", type: "source", props: { ...base.props, diff --git a/components/gorgias_oauth/sources/ticket-message-created/ticket-message-created.mjs b/components/gorgias_oauth/sources/ticket-message-created/ticket-message-created.mjs index 3c44a377bb3fd..9d8c77c398212 100644 --- a/components/gorgias_oauth/sources/ticket-message-created/ticket-message-created.mjs +++ b/components/gorgias_oauth/sources/ticket-message-created/ticket-message-created.mjs @@ -8,7 +8,7 @@ export default { key: "gorgias_oauth-ticket-message-created", name: "New Ticket Message", description: "Emit new event when a ticket message is created. [See the documentation](https://developers.gorgias.com/reference/the-event-object)", - version: "0.1.9", + version: "0.1.10", type: "source", props: { ...base.props, diff --git a/components/gorgias_oauth/sources/ticket-updated/ticket-updated.mjs b/components/gorgias_oauth/sources/ticket-updated/ticket-updated.mjs index 1e19116db59b9..6ba0c8dd79450 100644 --- a/components/gorgias_oauth/sources/ticket-updated/ticket-updated.mjs +++ b/components/gorgias_oauth/sources/ticket-updated/ticket-updated.mjs @@ -7,7 +7,7 @@ export default { key: "gorgias_oauth-ticket-updated", name: "New Updated Ticket", description: "Emit new event when a ticket is updated. [See the documentation](https://developers.gorgias.com/reference/the-event-object)", - version: "0.1.9", + version: "0.1.10", type: "source", props: { ...base.props,