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
1 change: 1 addition & 0 deletions packages/database/src/types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -114,6 +114,7 @@ export type InboxWithIntegrations = InboxModel & {
integrationWhatsapp?: IntegrationWhatsappModel | null
integrationZalo?: IntegrationZaloModel | null
integrationSmtp?: IntegrationSmtpModel | null
integrationTiktok?: IntegrationTiktokModel | null
}

export type ContactOnSmartDelayModel =
Expand Down
2 changes: 1 addition & 1 deletion packages/flow-config/src/steps/email.ts
Original file line number Diff line number Diff line change
Expand Up @@ -135,7 +135,7 @@ export const emailStepDefaultFn = (
{
id: createId(),
type: pageElementTypes.enum.text,
text: `You received this email from {{page_name}}. If you would like to unsubscribe, <a href="${UNSUBSCRIBE_PLACEHOLDER}">click here</a>`,
text: `You received this email from {{page_user_name}}. If you would like to unsubscribe, <a href="${UNSUBSCRIBE_PLACEHOLDER}">click here</a>`,
},
],
...props,
Expand Down
2 changes: 2 additions & 0 deletions packages/variables/src/helpers/integration-fields.ts
Original file line number Diff line number Diff line change
Expand Up @@ -100,6 +100,8 @@ export const getIntegrationField = async (
return inbox.integrationWhatsapp?.name ?? null
case channelTypes.enum.zalo:
return inbox.integrationZalo?.name ?? null
case channelTypes.enum.tiktok:
return inbox.integrationTiktok?.name ?? null
case channelTypes.enum.telegram:
return inbox.integrationTelegram?.name ?? null
case channelTypes.enum.webchat:
Expand Down
Loading