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
Original file line number Diff line number Diff line change
@@ -1,16 +1,16 @@
import frontApp from "../../frontapp.app.mjs";
import frontapp from "../../frontapp.app.mjs";

export default {
key: "frontapp-get-conversation",
name: "Get Conversation",
description: "Retrieve a conversation by its ID from Front. [See the documentation](https://dev.frontapp.com/reference/get-conversation-by-id)",
version: "0.0.1",
version: "0.0.2",
type: "action",
props: {
frontApp,
frontapp,
conversationId: {
propDefinition: [
frontApp,
frontapp,
"conversationId",
],
},
Expand All @@ -23,7 +23,7 @@ export default {
},
},
async run({ $ }) {
const conversation = await this.frontApp.getConversation({
const conversation = await this.frontapp.getConversation({
$,
conversationId: this.conversationId,
});
Expand Down
2 changes: 1 addition & 1 deletion components/frontapp/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@pipedream/frontapp",
"version": "0.7.1",
"version": "0.7.2",
"description": "Pipedream Frontapp Components",
"main": "frontapp.app.mjs",
"keywords": [
Expand Down
Loading