@neocompose/cli 0.9.0 → 0.9.1

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/CHANGELOG.md CHANGED
@@ -7,6 +7,13 @@
7
7
  - Document the final relation-only world layer-link contract and keep the
8
8
  format-4 Hello World corpus free of the retired value-side binding field.
9
9
 
10
+ ## [0.9.1] - 2026-07-24
11
+
12
+ ### Fixed
13
+
14
+ - Avoid synthesizing `partial: false` on member kinds that do not support the
15
+ field, so prospective animation validation accepts ordinary project members.
16
+
10
17
  ## [0.9.0] - 2026-07-23
11
18
 
12
19
  ### Added
package/dist/neo.mjs CHANGED
@@ -1235,6 +1235,7 @@ function memberDefaultApplies(field, type) {
1235
1235
  if (field === "collectionValueId") return type === 9;
1236
1236
  if (field === "dialogueGroupId") return type === 18;
1237
1237
  if (field === "templateId") return type === 11 || type === 12;
1238
+ if (field === "partial") return type === 7 || type === 21;
1238
1239
  return true;
1239
1240
  }
1240
1241
  function omitRedundantDeclarationOrder(recordKind, value) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@neocompose/cli",
3
- "version": "0.9.0",
3
+ "version": "0.9.1",
4
4
  "description": "Neo Compose native project-source CLI with bidirectional sync.",
5
5
  "license": "MIT",
6
6
  "type": "module",