2
0

⬆️ Upgrade dependencies

This commit is contained in:
Baptiste Arnaud
2023-01-14 16:53:34 +01:00
parent 491e60a815
commit 6459fb8ec8
28 changed files with 1584 additions and 1067 deletions

View File

@ -2,7 +2,7 @@ import { ExecuteIntegrationResponse } from '@/features/chat'
import { saveErrorLog, saveSuccessLog } from '@/features/logs/api'
import { parseVariables } from '@/features/variables'
import prisma from '@/lib/prisma'
import { render } from '@faire/mjml-react/dist/src/utils/render'
import { render } from '@faire/mjml-react/utils/render'
import { DefaultBotNotificationEmail } from 'emails'
import {
PublicTypebot,

View File

@ -8,13 +8,13 @@ import { getTestAsset } from '@/test/utils/playwright'
const mockSmtpCredentials: SmtpCredentialsData = {
from: {
email: 'timmy.schaden@ethereal.email',
name: 'Timmy Schaden',
email: 'ted.kreiger@ethereal.email',
name: 'Ted Kreiger',
},
host: 'smtp.ethereal.email',
port: 587,
username: 'timmy.schaden@ethereal.email',
password: 'u4vvSdyyvVsaVmJ27G',
username: 'ted.kreiger@ethereal.email',
password: 'bFYFHfWjFxB9MK28zS',
}
test.beforeAll(async () => {

View File

@ -7,13 +7,13 @@ import { getTestAsset } from '@/test/utils/playwright'
const mockSmtpCredentials: SmtpCredentialsData = {
from: {
email: 'marley.cummings@ethereal.email',
name: 'Marley Cummings',
email: 'ted.kreiger@ethereal.email',
name: 'Ted Kreiger',
},
host: 'smtp.ethereal.email',
port: 587,
username: 'marley.cummings@ethereal.email',
password: 'E5W1jHbAmv5cXXcut2',
username: 'ted.kreiger@ethereal.email',
password: 'bFYFHfWjFxB9MK28zS',
}
test.beforeAll(async () => {

View File

@ -13,7 +13,7 @@ import { saveErrorLog, saveSuccessLog } from '@/features/logs/api'
import Cors from 'cors'
import Mail from 'nodemailer/lib/mailer'
import { DefaultBotNotificationEmail } from 'emails'
import { render } from '@faire/mjml-react/dist/src/utils/render'
import { render } from '@faire/mjml-react/utils/render'
import prisma from '@/lib/prisma'
import { getLinkedTypebotsChildren } from '@/features/blocks/logic/typebotLink/api'