Skip to content

Commit

Permalink
chore(integration-templates): Automated commit updating flows.yaml ba…
Browse files Browse the repository at this point in the history
…sed on changes in NangoHQ/integration-templates@8977157 by Daniel Roy Lwetabe. Commit message: feat(front): List conversation messages (NangoHQ#113)
  • Loading branch information
github-actions[bot] committed Nov 19, 2024
1 parent a67b7c1 commit 0ca30e2
Showing 1 changed file with 100 additions and 0 deletions.
100 changes: 100 additions & 0 deletions packages/shared/flows.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2655,6 +2655,17 @@ integrations:
path: /conversations
track_deletes: true
sync_type: full
actions:
conversation:
description: >-
List the messages in a conversation in reverse chronological order
(newest first).
endpoint:
method: GET
path: /conversations/all
group: Conversations
output: FrontMessageOutput
input: SingleConversation
models:
Conversation:
id: string
Expand Down Expand Up @@ -2698,6 +2709,95 @@ integrations:
name: string
handle: string
role: from | to | cc | bcc
SingleConversation:
id: string
query?: QueryParams
RecipientsObj:
_links:
related:
contact: string
name: string
handle: string
role: from | to | cc | bcc
AttachmentObj:
id: string
filename: string
url: string
content_type: string
size: number
metadata:
is_inline: boolean
cid: string
AuthorObj:
_links:
self: string
related:
inboxes: string
conversations: string
id: string
email: string
username: string
first_name: string
last_name: string
is_admin: boolean
is_blocked: boolean
custom_fields: object
FrontMessages:
_links:
self: string
related:
conversation: string
message_replied_to?: string
message_seen: string
id: string
version?: string | null
blurb: string
error_type: string | null
type: >-
call | custom | email | facebook | front_chat | googleplay | intercom
| internal | phone-call | sms | tweet | tweet_dm | whatsapp | yalo_wha
is_draft: boolean
is_inbound: boolean
draft_mode: string | null
created_at: number
subject: string
author: AuthorObj | null
recipients: RecipientsObj[]
body: string
text: string
attachments?: AttachmentObj[]
signature?: SignatureObj | null
metadata?:
intercom_url?: string
duration?: number
have_been_answered?: boolean
external_id?: string
twitter_url?: string
is_retweet?: boolean
have_been_retweeted?: boolean
have_been_favorited?: boolean
thread_ref?: string
headers?: object
chat_visitor_url?: string
FrontMessageOutput:
messages: FrontMessages[]
SignatureObj:
_links?:
related?:
owner?: string
id?: string
name?: string
body?: string
sender_info?: string
is_visible_for_all_teammate_channels?: boolean
is_default?: boolean
is_private?: boolean
channel_ids?: string[]
QueryParams:
limit?: number
page_token?: string
sort_by?: string
sort_order?: asc | desc
github:
syncs:
issues:
Expand Down

0 comments on commit 0ca30e2

Please sign in to comment.