@stardeck-customer-apps/compose 0.3.0 → 0.5.0

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/SKILL.md CHANGED
@@ -40,7 +40,12 @@ from `apps/web/stardeck.compose.json` instead:
40
40
  ```jsonc
41
41
  {
42
42
  "connectedStores": [
43
- { "storeId": "ds_123", "slug": "media", "bindingKey": null, "accessLevel": "write" }
43
+ // `type` is optional and defaults to "database"; "storage" marks an
44
+ // object-storage store. The platform writes storage rows, with `type` set,
45
+ // for projects on platform >= 10.1.0 (compose 0.4.0); older forks get
46
+ // database rows without `type`.
47
+ { "storeId": "ds_123", "slug": "media", "bindingKey": null, "accessLevel": "write" },
48
+ { "storeId": "ds_456", "slug": "uploads", "bindingKey": null, "accessLevel": "write", "type": "storage" }
44
49
  ],
45
50
  "installs": {
46
51
  "pos": { "installedVersion": "7.49.0", "datastoreBindings": { "media": "ds_123" } }