Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/develop' into staging
Browse files Browse the repository at this point in the history
Signed-off-by: Andrey Sobolev <[email protected]>
  • Loading branch information
haiodo committed Dec 25, 2024
2 parents e8db59c + fa4dc0d commit f1d12e7
Show file tree
Hide file tree
Showing 41 changed files with 1,120 additions and 1,548 deletions.
2,495 changes: 1,032 additions & 1,463 deletions common/config/rush/pnpm-lock.yaml

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion common/scripts/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
"format": "echo \"No format specified\""
},
"devDependencies": {
"esbuild": "^0.20.0",
"esbuild": "^0.24.2",
"sharp": "~0.32.0"
},
"private": true
Expand Down
2 changes: 1 addition & 1 deletion desktop/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@
"eslint-plugin-promise": "^6.1.1",
"eslint": "^8.54.0",
"prettier": "^3.1.0",
"esbuild": "^0.20.0",
"esbuild": "^0.24.2",
"esbuild-loader": "^4.0.3",
"svelte-preprocess": "^5.1.3",
"@types/ws": "^8.5.11"
Expand Down
2 changes: 1 addition & 1 deletion dev/doc-import-tool/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@
"eslint-plugin-n": "^15.4.0",
"eslint": "^8.54.0",
"ts-node": "^10.8.0",
"esbuild": "^0.20.0",
"esbuild": "^0.24.2",
"@types/minio": "~7.0.11",
"@types/node": "~20.11.16",
"@typescript-eslint/parser": "^6.11.0",
Expand Down
2 changes: 1 addition & 1 deletion dev/import-tool/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@
"@typescript-eslint/eslint-plugin": "^6.11.0",
"eslint": "^8.54.0",
"ts-node": "^10.8.0",
"esbuild": "^0.20.0",
"esbuild": "^0.24.2",
"@types/node": "~20.11.16",
"@typescript-eslint/parser": "^6.11.0",
"typescript": "^5.3.3",
Expand Down
2 changes: 1 addition & 1 deletion dev/prod/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@
"fork-ts-checker-webpack-plugin": "^9.0.2",
"update-browserslist-db": "^1.1.0",
"browserslist": "^4.23.3",
"esbuild": "^0.20.0",
"esbuild": "^0.24.2",
"esbuild-loader": "^4.0.3",
"typescript": "^5.3.3",
"svelte-preprocess": "^5.1.3"
Expand Down
2 changes: 1 addition & 1 deletion dev/tool/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@
"eslint-plugin-n": "^15.4.0",
"eslint": "^8.54.0",
"ts-node": "^10.8.0",
"esbuild": "^0.20.0",
"esbuild": "^0.24.2",
"@types/minio": "~7.0.11",
"@types/node": "~20.11.16",
"@typescript-eslint/parser": "^6.11.0",
Expand Down
2 changes: 1 addition & 1 deletion models/all/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
"eslint-config-standard-with-typescript": "^40.0.0",
"prettier": "^3.1.0",
"typescript": "^5.3.3",
"esbuild": "^0.20.0"
"esbuild": "^0.24.2"
},
"dependencies": {
"@hcengineering/model": "^0.6.11",
Expand Down
2 changes: 1 addition & 1 deletion packages/collaborator-client/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-n": "^15.4.0",
"eslint": "^8.54.0",
"esbuild": "^0.20.0",
"esbuild": "^0.24.2",
"@typescript-eslint/parser": "^6.11.0",
"eslint-config-standard-with-typescript": "^40.0.0",
"prettier": "^3.1.0",
Expand Down
3 changes: 2 additions & 1 deletion packages/platform-rig/bin/compile.js
Original file line number Diff line number Diff line change
Expand Up @@ -172,6 +172,7 @@ async function performESBuild(filesToTranspile) {
sourcemap: 'linked',
allowOverwrite: true,
format: 'cjs',
color: true,
plugins: [
copy({
// this is equal to process.cwd(), which means we use cwd path as base path to resolve `to` path
Expand All @@ -181,7 +182,7 @@ async function performESBuild(filesToTranspile) {
from: [args[1] + '/**/*.json'],
to: ['./lib'],
},
watch: true,
watch: false
})
]
})
Expand Down
4 changes: 2 additions & 2 deletions packages/platform-rig/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@
"devDependencies": {
"eslint-config-standard-with-typescript": "^40.0.0",
"svelte-eslint-parser": "^0.33.1",
"esbuild": "^0.20.0",
"esbuild-svelte": "^0.8.0",
"esbuild": "^0.24.2",
"esbuild-svelte": "^0.9.0",
"esbuild-plugin-copy": "~2.1.1"
},
"dependencies": {
Expand Down
10 changes: 6 additions & 4 deletions plugins/workbench-resources/src/workbench.ts
Original file line number Diff line number Diff line change
Expand Up @@ -54,14 +54,13 @@ let prevTabId: Ref<WorkbenchTab> | undefined
tabIdStore.subscribe((value) => {
prevTabIdStore.set(prevTabId)
prevTabId = value
saveTabToLocalStorage(value)
})

locationWorkspaceStore.subscribe((workspace) => {
tabIdStore.set(getTabFromLocalStorage(workspace ?? ''))
})

tabIdStore.subscribe(saveTabToLocalStorage)

const syncTabLoc = reduceCalls(async (): Promise<void> => {
const loc = getCurrentLocation()
const workspace = get(locationWorkspaceStore)
Expand All @@ -84,11 +83,14 @@ const syncTabLoc = reduceCalls(async (): Promise<void> => {
if (t.name !== name) return false

const tabLoc = getTabLocation(t)
if (tabLoc.path[2] !== loc.path[2]) return false
if (tabLoc.path[2] === notificationId) return true

return tabLoc.path[2] === loc.path[2] && tabLoc.path[3] === loc.path[3]
return tabLoc.path[3] === loc.path[3]
})

if (tab.name !== undefined && name !== tab.name && tab.isPinned) {
if (get(tabIdStore) !== tab._id) return
if (tabByName !== undefined) {
selectTab(tabByName._id)
return
Expand Down Expand Up @@ -127,7 +129,7 @@ const syncTabLoc = reduceCalls(async (): Promise<void> => {
}
})

locationStore.subscribe((l: Location) => {
locationStore.subscribe(() => {
void syncTabLoc()
})

Expand Down
2 changes: 1 addition & 1 deletion pods/account/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-n": "^15.4.0",
"eslint": "^8.54.0",
"esbuild": "^0.20.0",
"esbuild": "^0.24.2",
"@types/koa-bodyparser": "^4.3.12",
"@types/koa-router": "^7.4.8",
"@types/koa": "^2.15.0",
Expand Down
2 changes: 1 addition & 1 deletion pods/backup/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-n": "^15.4.0",
"eslint": "^8.54.0",
"esbuild": "^0.20.0",
"esbuild": "^0.24.2",
"@typescript-eslint/parser": "^6.11.0",
"eslint-config-standard-with-typescript": "^40.0.0",
"prettier": "^3.1.0",
Expand Down
2 changes: 1 addition & 1 deletion pods/collaborator/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-n": "^15.4.0",
"eslint": "^8.54.0",
"esbuild": "^0.20.0",
"esbuild": "^0.24.2",
"@typescript-eslint/parser": "^6.11.0",
"eslint-config-standard-with-typescript": "^40.0.0",
"prettier": "^3.1.0",
Expand Down
2 changes: 1 addition & 1 deletion pods/front/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@
"@types/express-fileupload": "^1.1.7",
"@types/uuid": "^8.3.1",
"@types/cors": "^2.8.12",
"esbuild": "^0.20.0",
"esbuild": "^0.24.2",
"prettier": "^3.1.0",
"typescript": "^5.3.3",
"@types/body-parser": "~1.19.2",
Expand Down
2 changes: 1 addition & 1 deletion pods/fulltext/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-n": "^15.4.0",
"eslint": "^8.54.0",
"esbuild": "^0.20.0",
"esbuild": "^0.24.2",
"@typescript-eslint/parser": "^6.11.0",
"eslint-config-standard-with-typescript": "^40.0.0",
"prettier": "^3.1.0",
Expand Down
2 changes: 1 addition & 1 deletion pods/server/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@
"eslint-config-prettier": "^8.8.0",
"@types/ws": "^8.5.11",
"ts-node": "^10.8.0",
"esbuild": "^0.20.0",
"esbuild": "^0.24.2",
"@typescript-eslint/parser": "^6.11.0",
"eslint-config-standard-with-typescript": "^40.0.0",
"prettier": "^3.1.0",
Expand Down
2 changes: 1 addition & 1 deletion pods/stats/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-n": "^15.4.0",
"eslint": "^8.54.0",
"esbuild": "^0.20.0",
"esbuild": "^0.24.2",
"@types/koa-bodyparser": "^4.3.12",
"@types/koa-router": "^7.4.8",
"@types/koa": "^2.15.0",
Expand Down
2 changes: 1 addition & 1 deletion pods/workspace/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-n": "^15.4.0",
"eslint": "^8.54.0",
"esbuild": "^0.20.0",
"esbuild": "^0.24.2",
"@typescript-eslint/parser": "^6.11.0",
"eslint-config-standard-with-typescript": "^40.0.0",
"prettier": "^3.1.0",
Expand Down
2 changes: 1 addition & 1 deletion server/account-service/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-n": "^15.4.0",
"eslint": "^8.54.0",
"esbuild": "^0.20.0",
"esbuild": "^0.24.2",
"@types/koa-bodyparser": "^4.3.12",
"@types/koa-router": "^7.4.8",
"@types/koa": "^2.15.0",
Expand Down
2 changes: 1 addition & 1 deletion server/collaborator/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-n": "^15.4.0",
"eslint": "^8.54.0",
"esbuild": "^0.20.0",
"esbuild": "^0.24.2",
"@typescript-eslint/parser": "^6.11.0",
"eslint-config-standard-with-typescript": "^40.0.0",
"prettier": "^3.1.0",
Expand Down
2 changes: 1 addition & 1 deletion server/server-pipeline/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
"eslint-plugin-n": "^15.4.0",
"eslint": "^8.54.0",
"ts-node": "^10.8.0",
"esbuild": "^0.20.0",
"esbuild": "^0.24.2",
"@typescript-eslint/parser": "^6.11.0",
"eslint-config-standard-with-typescript": "^40.0.0",
"prettier": "^3.1.0",
Expand Down
2 changes: 1 addition & 1 deletion server/workspace-service/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-n": "^15.4.0",
"eslint": "^8.54.0",
"esbuild": "^0.20.0",
"esbuild": "^0.24.2",
"@types/koa-bodyparser": "^4.3.12",
"@types/koa-router": "^7.4.8",
"@types/koa": "^2.15.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 @@ -40,9 +40,9 @@
},
"dependencies": {
"@deepgram/sdk": "^3.9.0",
"@livekit/agents": "^0.5.1",
"@livekit/rtc-node": "^0.12.1",
"@livekit/agents-plugin-openai": "^0.7.1",
"@livekit/agents": "^0.6.0",
"@livekit/rtc-node": "^0.12.2",
"@livekit/agents-plugin-openai": "^0.7.3",
"dotenv": "^16.4.5"
}
}
Loading

0 comments on commit f1d12e7

Please sign in to comment.