freestyle-sandboxes 0.0.86 → 0.0.87

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.cjs CHANGED
@@ -1086,7 +1086,7 @@ ${response.error.message}`);
1086
1086
  const response2 = await handleReadFileFromEphemeralDevServer({
1087
1087
  client,
1088
1088
  path: {
1089
- filepath: path
1089
+ "*filepath": path
1090
1090
  },
1091
1091
  body: {
1092
1092
  devServer: devServerInstance,
package/dist/index.mjs CHANGED
@@ -1084,7 +1084,7 @@ ${response.error.message}`);
1084
1084
  const response2 = await handleReadFileFromEphemeralDevServer({
1085
1085
  client,
1086
1086
  path: {
1087
- filepath: path
1087
+ "*filepath": path
1088
1088
  },
1089
1089
  body: {
1090
1090
  devServer: devServerInstance,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "freestyle-sandboxes",
3
- "version": "0.0.86",
3
+ "version": "0.0.87",
4
4
  "type": "module",
5
5
  "main": "./dist/index.cjs",
6
6
  "module": "./dist/index.mjs",
package/src/index.ts CHANGED
@@ -1150,7 +1150,7 @@ export class FreestyleSandboxes {
1150
1150
  await sandbox_openapi.handleReadFileFromEphemeralDevServer({
1151
1151
  client,
1152
1152
  path: {
1153
- filepath: path,
1153
+ "*filepath": path,
1154
1154
  },
1155
1155
  body: {
1156
1156
  devServer: devServerInstance,