@modelnex/sdk 0.5.12 → 0.5.13

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.js CHANGED
@@ -227,7 +227,7 @@ function resolveSocketIoTransports(serverUrl, order) {
227
227
  try {
228
228
  const host = new URL(serverUrl).hostname.toLowerCase();
229
229
  if (host.endsWith("awsapprunner.com")) {
230
- return ["websocket"];
230
+ return ["polling"];
231
231
  }
232
232
  } catch {
233
233
  }
package/dist/index.mjs CHANGED
@@ -18,7 +18,7 @@ function resolveSocketIoTransports(serverUrl, order) {
18
18
  try {
19
19
  const host = new URL(serverUrl).hostname.toLowerCase();
20
20
  if (host.endsWith("awsapprunner.com")) {
21
- return ["websocket"];
21
+ return ["polling"];
22
22
  }
23
23
  } catch {
24
24
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@modelnex/sdk",
3
- "version": "0.5.12",
3
+ "version": "0.5.13",
4
4
  "description": "React SDK for natural language control of web apps via AI agents",
5
5
  "main": "./dist/index.js",
6
6
  "module": "./dist/index.mjs",