Skip to content

Commit c19591f

Browse files
fix variable casing (#17993)
1 parent 20ac5e4 commit c19591f

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

components/frontapp/actions/get-conversation/get-conversation.mjs

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,16 @@
1-
import frontApp from "../../frontapp.app.mjs";
1+
import frontapp from "../../frontapp.app.mjs";
22

33
export default {
44
key: "frontapp-get-conversation",
55
name: "Get Conversation",
66
description: "Retrieve a conversation by its ID from Front. [See the documentation](https://dev.frontapp.com/reference/get-conversation-by-id)",
7-
version: "0.0.1",
7+
version: "0.0.2",
88
type: "action",
99
props: {
10-
frontApp,
10+
frontapp,
1111
conversationId: {
1212
propDefinition: [
13-
frontApp,
13+
frontapp,
1414
"conversationId",
1515
],
1616
},
@@ -23,7 +23,7 @@ export default {
2323
},
2424
},
2525
async run({ $ }) {
26-
const conversation = await this.frontApp.getConversation({
26+
const conversation = await this.frontapp.getConversation({
2727
$,
2828
conversationId: this.conversationId,
2929
});

components/frontapp/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@pipedream/frontapp",
3-
"version": "0.7.1",
3+
"version": "0.7.2",
44
"description": "Pipedream Frontapp Components",
55
"main": "frontapp.app.mjs",
66
"keywords": [

0 commit comments

Comments
 (0)