Skip to content

Commit 69b8364

Browse files
authored
chore(deps): move to the renamed @daytona/sdk package (#6033)
@daytonaio/sdk was renamed upstream to @daytona/sdk; the old name stops receiving releases. Import-specifier change only, plus the matching serverExternalPackages entry.
1 parent dc94879 commit 69b8364

6 files changed

Lines changed: 50 additions & 52 deletions

File tree

apps/sim/lib/execution/remote-sandbox/conformance.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ const {
6262
}))
6363

6464
vi.mock('@e2b/code-interpreter', () => ({ Sandbox: { create: mockE2BCreate } }))
65-
vi.mock('@daytonaio/sdk', () => ({
65+
vi.mock('@daytona/sdk', () => ({
6666
Daytona: class {
6767
create = mockDaytonaCreate
6868
},

apps/sim/lib/execution/remote-sandbox/daytona.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -253,7 +253,7 @@ export const daytonaProvider: SandboxProvider = {
253253
const language = options?.language ?? CodeLanguage.Python
254254
logger.info('Creating Daytona sandbox', { kind, snapshot })
255255

256-
const { Daytona } = await import('@daytonaio/sdk')
256+
const { Daytona } = await import('@daytona/sdk')
257257
const daytona = new Daytona({ apiKey })
258258
const sandbox = await daytona.create({ snapshot, language: toDaytonaLanguage(language) } as any)
259259

apps/sim/next.config.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -129,7 +129,7 @@ const nextConfig: NextConfig = {
129129
'isolated-vm',
130130
'@e2b/code-interpreter',
131131
'e2b',
132-
'@daytonaio/sdk',
132+
'@daytona/sdk',
133133
'@earendil-works/pi-ai',
134134
'@earendil-works/pi-coding-agent',
135135
],

apps/sim/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@
6666
"@browserbasehq/stagehand": "^3.2.1",
6767
"@calcom/embed-react": "1.5.3",
6868
"@cerebras/cerebras_cloud_sdk": "^1.23.0",
69-
"@daytonaio/sdk": "0.197.0",
69+
"@daytona/sdk": "0.200.0",
7070
"@e2b/code-interpreter": "^2.7.0",
7171
"@earendil-works/pi-ai": "0.80.10",
7272
"@earendil-works/pi-coding-agent": "0.80.10",

apps/sim/scripts/build-pi-daytona-snapshot.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
* DAYTONA_PI_SNAPSHOT_ID=<name:tag>
2424
*/
2525

26-
import { Daytona, Image } from '@daytonaio/sdk'
26+
import { Daytona, Image } from '@daytona/sdk'
2727
import { getErrorMessage } from '@sim/utils/errors'
2828
import {
2929
PI_APT,

0 commit comments

Comments
 (0)