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
617 changes: 355 additions & 262 deletions common/config/rush/pnpm-lock.yaml

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion plugins/bitrix-resources/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@
"@hcengineering/setting-resources": "workspace:^0.7.0",
"@hcengineering/chunter": "workspace:^0.7.0",
"p-queue": "~7.3.0",
"qs": "~6.11.0",
"qs": "~6.16.0",
"@hcengineering/tags": "workspace:^0.7.0",
"@hcengineering/tags-resources": "workspace:^0.7.0",
"fast-equals": "^5.2.2",
Expand Down
2 changes: 1 addition & 1 deletion plugins/bitrix/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@
"@hcengineering/tags": "workspace:^0.7.0",
"@hcengineering/task": "workspace:^0.7.0",
"fast-equals": "^5.2.2",
"qs": "~6.11.0"
"qs": "~6.16.0"
},
"repository": {
"type": "git",
Expand Down
2 changes: 1 addition & 1 deletion plugins/text-editor-resources/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@
"slugify": "^1.6.6",
"lib0": "^0.2.109",
"lowlight": "^3.3.0",
"mermaid": "^11.12.0",
"mermaid": "^11.17.2",
"@hcengineering/theme": "workspace:^0.7.0",
"tippy.js": "~6.3.7",
"@hcengineering/activity": "workspace:^0.7.0",
Expand Down
6 changes: 3 additions & 3 deletions services/ai-bot/love-agent/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -35,9 +35,9 @@
"typescript": "^5.9.3"
},
"dependencies": {
"@deepgram/sdk": "^4.11.2",
"@livekit/agents": "^0.7.4",
"@livekit/rtc-node": "^0.13.11",
"@deepgram/sdk": "^5.9.0",
"@livekit/agents": "^1.7.1",
"@livekit/rtc-node": "^0.13.34",
"dotenv": "^16.4.5",
"ws": "^8.21.0"
},
Expand Down
1,443 changes: 1,183 additions & 260 deletions services/ai-bot/love-agent/pnpm-lock.yaml

Large diffs are not rendered by default.

6 changes: 3 additions & 3 deletions services/mail/pod-mail/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -50,12 +50,12 @@
"@tsconfig/node16": "^1.0.4",
"@types/cors": "^2.8.19",
"@types/express": "^4.17.13",
"@types/nodemailer": "^8.0.1",
"eslint-plugin-node": "^11.1.0",
"typescript": "^5.9.3"
},
"dependencies": {
"@aws-sdk/client-ses": "^3.1107.0",
"@types/nodemailer": "^6.4.17",
"@aws-sdk/client-sesv2": "^3.1121.0",
"@hcengineering/analytics": "workspace:^0.7.19",
"@hcengineering/analytics-service": "workspace:^0.7.19",
"@hcengineering/core": "workspace:^0.7.26",
Expand All @@ -64,6 +64,6 @@
"dotenv": "^16.4.5",
"express": "^4.21.2",
"lru-cache": "^11.1.0",
"nodemailer": "^6.10.0"
"nodemailer": "^9.1.1"
}
}
6 changes: 3 additions & 3 deletions services/mail/pod-mail/src/transport.ts
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
// limitations under the License.
//
import nodemailer, { type Transporter } from 'nodemailer'
import * as aws from '@aws-sdk/client-ses'
import { SESv2Client, SendEmailCommand } from '@aws-sdk/client-sesv2'

import { type Config, type SmtpConfig, type SesConfig, getTlsSettings } from './config'

Expand All @@ -39,7 +39,7 @@ function smtp (config: SmtpConfig): Transporter {

function ses (config: SesConfig): Transporter {
console.log('Using AWS SES config')
const ses = new aws.SES({
const sesClient = new SESv2Client({
region: config.Region,
credentials: {
accessKeyId: config.AccessKey,
Expand All @@ -48,7 +48,7 @@ function ses (config: SesConfig): Transporter {
})

return nodemailer.createTransport({
SES: { ses, aws }
SES: { sesClient, SendEmailCommand }
})
}

Expand Down
2 changes: 1 addition & 1 deletion services/rekoni/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@
"dotenv": "^16.4.5",
"email-addresses": "^5.0.0",
"express": "^4.21.2",
"express-form-data": "^2.0.22",
"express-form-data": "^3.0.1",
"html-to-text": "^9.0.3",
"jimp": "^0.16.1",
"jwt-simple": "^0.5.6",
Expand Down