@tomorrowos/sdk 0.9.7 → 0.9.8

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/REPLIT_SETUP.md CHANGED
@@ -230,7 +230,7 @@ Allowed extras (optional): `"build-player": "tomorrowos build --platform tizen"`
230
230
  "node": ">=20"
231
231
  },
232
232
  "dependencies": {
233
- "@tomorrowos/sdk": "^0.9.7",
233
+ "@tomorrowos/sdk": "^0.9.8",
234
234
  "dotenv": "^17.2.3",
235
235
  "tsx": "^4.19.0"
236
236
  },
@@ -23,14 +23,14 @@ function resolveDatabaseProvider(env) {
23
23
  if (driver === "supabase" || (!driver && env.SUPABASE_URL)) {
24
24
  return {
25
25
  provider: "supabase",
26
- label: "Supabase",
26
+ label: "Database",
27
27
  configured: !!env.SUPABASE_URL || !!env.DATABASE_URL
28
28
  };
29
29
  }
30
30
  if (driver === "postgres" || (!driver && hasUrl && !env.SUPABASE_URL)) {
31
31
  return {
32
32
  provider: "postgres",
33
- label: "Postgres",
33
+ label: "Database",
34
34
  configured: hasUrl
35
35
  };
36
36
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tomorrowos/sdk",
3
- "version": "0.9.7",
3
+ "version": "0.9.8",
4
4
  "description": "TomorrowOS CMS server SDK - WebSocket transport, pairing, device commands, optional static CMS UI. Includes CLI (tomorrowos init / build) and starter templates.",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "my-cms",
3
- "version": "0.9.7",
3
+ "version": "0.9.8",
4
4
  "description": "CMS server on @tomorrowos/sdk. Add your UI (React, static files, etc.) alongside this server.",
5
5
  "private": true,
6
6
  "type": "module",
@@ -13,7 +13,7 @@
13
13
  "build-player": "tomorrowos build --platform tizen"
14
14
  },
15
15
  "dependencies": {
16
- "@tomorrowos/sdk": "^0.9.7",
16
+ "@tomorrowos/sdk": "^0.9.8",
17
17
  "dotenv": "^17.2.3",
18
18
  "tsx": "^4.19.0"
19
19
  },