@stardeck-customer-apps/compose 0.4.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 +5 -2
- package/dist/cli.js +2038 -16
- package/dist/index.js +2039 -17
- package/dist/index.mjs +2051 -6
- package/package.json +1 -1
package/SKILL.md
CHANGED
|
@@ -41,8 +41,11 @@ from `apps/web/stardeck.compose.json` instead:
|
|
|
41
41
|
{
|
|
42
42
|
"connectedStores": [
|
|
43
43
|
// `type` is optional and defaults to "database"; "storage" marks an
|
|
44
|
-
// object-storage store. The platform writes
|
|
45
|
-
|
|
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" }
|
|
46
49
|
],
|
|
47
50
|
"installs": {
|
|
48
51
|
"pos": { "installedVersion": "7.49.0", "datastoreBindings": { "media": "ds_123" } }
|