@voxgig/sdkgen 4.0.0 → 4.1.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.
Files changed (49) hide show
  1. package/bin/voxgig-sdkgen +1 -1
  2. package/package.json +1 -1
  3. package/project/.sdk/model/target/c.aon +4 -3
  4. package/project/.sdk/model/target/clojure.aon +4 -3
  5. package/project/.sdk/model/target/cpp.aon +4 -3
  6. package/project/.sdk/model/target/csharp.aon +4 -3
  7. package/project/.sdk/model/target/dart.aon +4 -3
  8. package/project/.sdk/model/target/elixir.aon +4 -3
  9. package/project/.sdk/model/target/go-cli.aon +4 -3
  10. package/project/.sdk/model/target/go-mcp.aon +4 -3
  11. package/project/.sdk/model/target/go.aon +1 -1
  12. package/project/.sdk/model/target/java.aon +4 -3
  13. package/project/.sdk/model/target/js.aon +4 -3
  14. package/project/.sdk/model/target/kotlin.aon +4 -3
  15. package/project/.sdk/model/target/lean.aon +4 -3
  16. package/project/.sdk/model/target/lua.aon +4 -3
  17. package/project/.sdk/model/target/ocaml.aon +4 -3
  18. package/project/.sdk/model/target/perl.aon +4 -3
  19. package/project/.sdk/model/target/php.aon +4 -3
  20. package/project/.sdk/model/target/py-data.aon +4 -3
  21. package/project/.sdk/model/target/py.aon +4 -3
  22. package/project/.sdk/model/target/rb.aon +4 -3
  23. package/project/.sdk/model/target/rust.aon +4 -3
  24. package/project/.sdk/model/target/scala.aon +4 -3
  25. package/project/.sdk/model/target/seneca-provider.aon +4 -3
  26. package/project/.sdk/model/target/swift.aon +4 -3
  27. package/project/.sdk/model/target/ts.aon +4 -3
  28. package/project/.sdk/model/target/zig.aon +5 -4
  29. package/project/.sdk/src/cmp/go-cli/Main_go-cli.ts +1 -1
  30. package/project/.sdk/src/cmp/go-mcp/Main_go-mcp.ts +1 -1
  31. package/project/.sdk/src/cmp/py-data/Main_py-data.ts +1 -1
  32. package/project/.sdk/src/cmp/seneca-provider/Main_seneca-provider.ts +1 -1
  33. package/project/.sdk/tm/c/feature/test.c +50 -12
  34. package/project/.sdk/tm/cpp/feature/test.hpp +34 -11
  35. package/project/.sdk/tm/csharp/feature/TestFeature.cs +28 -2
  36. package/project/.sdk/tm/elixir/lib/projectname/feature/test.ex +39 -12
  37. package/project/.sdk/tm/go/test/runner_test.go +1 -1
  38. package/project/.sdk/tm/java/feature/TestFeature.java +46 -12
  39. package/project/.sdk/tm/kotlin/feature/TestFeature.kt +29 -11
  40. package/project/.sdk/tm/perl/feature/test_feature.pm +34 -12
  41. package/project/.sdk/tm/py/test/test_struct_utility.py +1 -1
  42. package/project/.sdk/tm/rust/feature/test.rs +41 -16
  43. package/project/.sdk/tm/rust/tests/common/mod.rs +1 -1
  44. package/project/.sdk/tm/scala/feature/TestFeature.scala +35 -12
  45. package/project/.sdk/tm/swift/Sources/ProjectNameSDK/feature/TestFeature.swift +33 -12
  46. package/project/.sdk/tm/ts/test/utility/Corpus.test.ts +2 -2
  47. package/project/.sdk/tm/ts/test/utility/PrimaryUtility.test.ts +1 -1
  48. package/project/.sdk/tm/zig/feature/test.zig +39 -12
  49. package/project/sdkgen-package.json +1 -1
package/bin/voxgig-sdkgen CHANGED
@@ -8,7 +8,7 @@ const { Shape, One, Skip } = require('shape')
8
8
 
9
9
  const { SdkGen } = require('../dist/sdkgen.js')
10
10
 
11
- const VERSION = '4.0.0'
11
+ const VERSION = '4.1.0'
12
12
  const KONSOLE = console
13
13
 
14
14
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@voxgig/sdkgen",
3
- "version": "4.0.0",
3
+ "version": "4.1.0",
4
4
  "main": "dist/sdkgen.js",
5
5
  "type": "commonjs",
6
6
  "engines": {
@@ -29,12 +29,13 @@ main: kit: feature: &: target: c: deps: &: {
29
29
  #
30
30
  # `target add <t>` OVERWRITES this file, so a project must never set its
31
31
  # publication values here — voxgig-solardemo-sdk lost its pinned npm package
32
- # name exactly that way. Set them in the project's own model
33
- # (`model/sdk.aontu`), where they survive a resync.
32
+ # name exactly that way. Set them in the project's own overlay
33
+ # (`model/project.aon`), which create-sdkgen creates once and never
34
+ # overwrites — NOT `model/sdk.aon`, which it rewrites on every scaffold.
34
35
  #
35
36
  # For that to work this file must LEAVE THOSE KEYS UNSET: in aontu a concrete
36
37
  # value does not yield to another concrete value, it CONFLICTS, and two
37
- # defaults conflict too. The schema (@voxgig/sdkgen/model/sdkgen.aontu)
38
+ # defaults conflict too. The schema (@voxgig/sdkgen/model/sdkgen.aon)
38
39
  # already defaults `tag.active`, `registry.state`, `registry.active` and
39
40
  # `registry.package`, so a project's concrete value wins over the default and
40
41
  # repeating them here would only take that away.
@@ -28,12 +28,13 @@ main: kit: feature: &: target: clojure: deps: &: {
28
28
  #
29
29
  # `target add <t>` OVERWRITES this file, so a project must never set its
30
30
  # publication values here — voxgig-solardemo-sdk lost its pinned npm package
31
- # name exactly that way. Set them in the project's own model
32
- # (`model/sdk.aontu`), where they survive a resync.
31
+ # name exactly that way. Set them in the project's own overlay
32
+ # (`model/project.aon`), which create-sdkgen creates once and never
33
+ # overwrites — NOT `model/sdk.aon`, which it rewrites on every scaffold.
33
34
  #
34
35
  # For that to work this file must LEAVE THOSE KEYS UNSET: in aontu a concrete
35
36
  # value does not yield to another concrete value, it CONFLICTS, and two
36
- # defaults conflict too. The schema (@voxgig/sdkgen/model/sdkgen.aontu)
37
+ # defaults conflict too. The schema (@voxgig/sdkgen/model/sdkgen.aon)
37
38
  # already defaults `tag.active`, `registry.state`, `registry.active` and
38
39
  # `registry.package`, so a project's concrete value wins over the default and
39
40
  # repeating them here would only take that away.
@@ -28,12 +28,13 @@ main: kit: feature: &: target: cpp: deps: &: {
28
28
  #
29
29
  # `target add <t>` OVERWRITES this file, so a project must never set its
30
30
  # publication values here — voxgig-solardemo-sdk lost its pinned npm package
31
- # name exactly that way. Set them in the project's own model
32
- # (`model/sdk.aontu`), where they survive a resync.
31
+ # name exactly that way. Set them in the project's own overlay
32
+ # (`model/project.aon`), which create-sdkgen creates once and never
33
+ # overwrites — NOT `model/sdk.aon`, which it rewrites on every scaffold.
33
34
  #
34
35
  # For that to work this file must LEAVE THOSE KEYS UNSET: in aontu a concrete
35
36
  # value does not yield to another concrete value, it CONFLICTS, and two
36
- # defaults conflict too. The schema (@voxgig/sdkgen/model/sdkgen.aontu)
37
+ # defaults conflict too. The schema (@voxgig/sdkgen/model/sdkgen.aon)
37
38
  # already defaults `tag.active`, `registry.state`, `registry.active` and
38
39
  # `registry.package`, so a project's concrete value wins over the default and
39
40
  # repeating them here would only take that away.
@@ -26,12 +26,13 @@ main: kit: feature: &: target: csharp: deps: &: {
26
26
  #
27
27
  # `target add <t>` OVERWRITES this file, so a project must never set its
28
28
  # publication values here — voxgig-solardemo-sdk lost its pinned npm package
29
- # name exactly that way. Set them in the project's own model
30
- # (`model/sdk.aontu`), where they survive a resync.
29
+ # name exactly that way. Set them in the project's own overlay
30
+ # (`model/project.aon`), which create-sdkgen creates once and never
31
+ # overwrites — NOT `model/sdk.aon`, which it rewrites on every scaffold.
31
32
  #
32
33
  # For that to work this file must LEAVE THOSE KEYS UNSET: in aontu a concrete
33
34
  # value does not yield to another concrete value, it CONFLICTS, and two
34
- # defaults conflict too. The schema (@voxgig/sdkgen/model/sdkgen.aontu)
35
+ # defaults conflict too. The schema (@voxgig/sdkgen/model/sdkgen.aon)
35
36
  # already defaults `tag.active`, `registry.state`, `registry.active` and
36
37
  # `registry.package`, so a project's concrete value wins over the default and
37
38
  # repeating them here would only take that away.
@@ -26,12 +26,13 @@ main: kit: feature: &: target: dart: deps: &: {
26
26
  #
27
27
  # `target add <t>` OVERWRITES this file, so a project must never set its
28
28
  # publication values here — voxgig-solardemo-sdk lost its pinned npm package
29
- # name exactly that way. Set them in the project's own model
30
- # (`model/sdk.aontu`), where they survive a resync.
29
+ # name exactly that way. Set them in the project's own overlay
30
+ # (`model/project.aon`), which create-sdkgen creates once and never
31
+ # overwrites — NOT `model/sdk.aon`, which it rewrites on every scaffold.
31
32
  #
32
33
  # For that to work this file must LEAVE THOSE KEYS UNSET: in aontu a concrete
33
34
  # value does not yield to another concrete value, it CONFLICTS, and two
34
- # defaults conflict too. The schema (@voxgig/sdkgen/model/sdkgen.aontu)
35
+ # defaults conflict too. The schema (@voxgig/sdkgen/model/sdkgen.aon)
35
36
  # already defaults `tag.active`, `registry.state`, `registry.active` and
36
37
  # `registry.package`, so a project's concrete value wins over the default and
37
38
  # repeating them here would only take that away.
@@ -25,12 +25,13 @@ main: kit: feature: &: target: elixir: deps: &: {
25
25
  #
26
26
  # `target add <t>` OVERWRITES this file, so a project must never set its
27
27
  # publication values here — voxgig-solardemo-sdk lost its pinned npm package
28
- # name exactly that way. Set them in the project's own model
29
- # (`model/sdk.aontu`), where they survive a resync.
28
+ # name exactly that way. Set them in the project's own overlay
29
+ # (`model/project.aon`), which create-sdkgen creates once and never
30
+ # overwrites — NOT `model/sdk.aon`, which it rewrites on every scaffold.
30
31
  #
31
32
  # For that to work this file must LEAVE THOSE KEYS UNSET: in aontu a concrete
32
33
  # value does not yield to another concrete value, it CONFLICTS, and two
33
- # defaults conflict too. The schema (@voxgig/sdkgen/model/sdkgen.aontu)
34
+ # defaults conflict too. The schema (@voxgig/sdkgen/model/sdkgen.aon)
34
35
  # already defaults `tag.active`, `registry.state`, `registry.active` and
35
36
  # `registry.package`, so a project's concrete value wins over the default and
36
37
  # repeating them here would only take that away.
@@ -47,12 +47,13 @@ main: kit: feature: &: target: 'go-cli': deps: &: {
47
47
  #
48
48
  # `target add <t>` OVERWRITES this file, so a project must never set its
49
49
  # publication values here — voxgig-solardemo-sdk lost its pinned npm package
50
- # name exactly that way. Set them in the project's own model
51
- # (`model/sdk.aontu`), where they survive a resync.
50
+ # name exactly that way. Set them in the project's own overlay
51
+ # (`model/project.aon`), which create-sdkgen creates once and never
52
+ # overwrites — NOT `model/sdk.aon`, which it rewrites on every scaffold.
52
53
  #
53
54
  # For that to work this file must LEAVE THOSE KEYS UNSET: in aontu a concrete
54
55
  # value does not yield to another concrete value, it CONFLICTS, and two
55
- # defaults conflict too. The schema (@voxgig/sdkgen/model/sdkgen.aontu)
56
+ # defaults conflict too. The schema (@voxgig/sdkgen/model/sdkgen.aon)
56
57
  # already defaults `tag.active`, `registry.state`, `registry.active` and
57
58
  # `registry.package`, so a project's concrete value wins over the default and
58
59
  # repeating them here would only take that away.
@@ -41,12 +41,13 @@ main: kit: feature: &: target: 'go-mcp': deps: &: {
41
41
  #
42
42
  # `target add <t>` OVERWRITES this file, so a project must never set its
43
43
  # publication values here — voxgig-solardemo-sdk lost its pinned npm package
44
- # name exactly that way. Set them in the project's own model
45
- # (`model/sdk.aontu`), where they survive a resync.
44
+ # name exactly that way. Set them in the project's own overlay
45
+ # (`model/project.aon`), which create-sdkgen creates once and never
46
+ # overwrites — NOT `model/sdk.aon`, which it rewrites on every scaffold.
46
47
  #
47
48
  # For that to work this file must LEAVE THOSE KEYS UNSET: in aontu a concrete
48
49
  # value does not yield to another concrete value, it CONFLICTS, and two
49
- # defaults conflict too. The schema (@voxgig/sdkgen/model/sdkgen.aontu)
50
+ # defaults conflict too. The schema (@voxgig/sdkgen/model/sdkgen.aon)
50
51
  # already defaults `tag.active`, `registry.state`, `registry.active` and
51
52
  # `registry.package`, so a project's concrete value wins over the default and
52
53
  # repeating them here would only take that away.
@@ -25,7 +25,7 @@ main: kit: feature: &: target: go: deps: &: {
25
25
  # Publication: a go/vX.Y.Z GitHub tag only — the Go proxy resolves from tags,
26
26
  # so there is no package registry to upload to. Nothing is set here: every
27
27
  # value is defaulted by the schema, and a project that needs to change one
28
- # sets it in its own model (`model/sdk.aontu`), which `target add <t>` does
28
+ # sets it in its own model (`model/sdk.aon`), which `target add <t>` does
29
29
  # not overwrite.
30
30
 
31
31
 
@@ -29,12 +29,13 @@ main: kit: feature: &: target: java: deps: &: {
29
29
  #
30
30
  # `target add <t>` OVERWRITES this file, so a project must never set its
31
31
  # publication values here — voxgig-solardemo-sdk lost its pinned npm package
32
- # name exactly that way. Set them in the project's own model
33
- # (`model/sdk.aontu`), where they survive a resync.
32
+ # name exactly that way. Set them in the project's own overlay
33
+ # (`model/project.aon`), which create-sdkgen creates once and never
34
+ # overwrites — NOT `model/sdk.aon`, which it rewrites on every scaffold.
34
35
  #
35
36
  # For that to work this file must LEAVE THOSE KEYS UNSET: in aontu a concrete
36
37
  # value does not yield to another concrete value, it CONFLICTS, and two
37
- # defaults conflict too. The schema (@voxgig/sdkgen/model/sdkgen.aontu)
38
+ # defaults conflict too. The schema (@voxgig/sdkgen/model/sdkgen.aon)
38
39
  # already defaults `tag.active`, `registry.state`, `registry.active` and
39
40
  # `registry.package`, so a project's concrete value wins over the default and
40
41
  # repeating them here would only take that away.
@@ -28,12 +28,13 @@ main: kit: feature: &: target: js: deps: &: {
28
28
  #
29
29
  # `target add <t>` OVERWRITES this file, so a project must never set its
30
30
  # publication values here — voxgig-solardemo-sdk lost its pinned npm package
31
- # name exactly that way. Set them in the project's own model
32
- # (`model/sdk.aontu`), where they survive a resync.
31
+ # name exactly that way. Set them in the project's own overlay
32
+ # (`model/project.aon`), which create-sdkgen creates once and never
33
+ # overwrites — NOT `model/sdk.aon`, which it rewrites on every scaffold.
33
34
  #
34
35
  # For that to work this file must LEAVE THOSE KEYS UNSET: in aontu a concrete
35
36
  # value does not yield to another concrete value, it CONFLICTS, and two
36
- # defaults conflict too. The schema (@voxgig/sdkgen/model/sdkgen.aontu)
37
+ # defaults conflict too. The schema (@voxgig/sdkgen/model/sdkgen.aon)
37
38
  # already defaults `tag.active`, `registry.state`, `registry.active` and
38
39
  # `registry.package`, so a project's concrete value wins over the default and
39
40
  # repeating them here would only take that away.
@@ -29,12 +29,13 @@ main: kit: feature: &: target: kotlin: deps: &: {
29
29
  #
30
30
  # `target add <t>` OVERWRITES this file, so a project must never set its
31
31
  # publication values here — voxgig-solardemo-sdk lost its pinned npm package
32
- # name exactly that way. Set them in the project's own model
33
- # (`model/sdk.aontu`), where they survive a resync.
32
+ # name exactly that way. Set them in the project's own overlay
33
+ # (`model/project.aon`), which create-sdkgen creates once and never
34
+ # overwrites — NOT `model/sdk.aon`, which it rewrites on every scaffold.
34
35
  #
35
36
  # For that to work this file must LEAVE THOSE KEYS UNSET: in aontu a concrete
36
37
  # value does not yield to another concrete value, it CONFLICTS, and two
37
- # defaults conflict too. The schema (@voxgig/sdkgen/model/sdkgen.aontu)
38
+ # defaults conflict too. The schema (@voxgig/sdkgen/model/sdkgen.aon)
38
39
  # already defaults `tag.active`, `registry.state`, `registry.active` and
39
40
  # `registry.package`, so a project's concrete value wins over the default and
40
41
  # repeating them here would only take that away.
@@ -43,12 +43,13 @@ main: kit: feature: &: target: lean: deps: &: {
43
43
  #
44
44
  # `target add <t>` OVERWRITES this file, so a project must never set its
45
45
  # publication values here — voxgig-solardemo-sdk lost its pinned npm package
46
- # name exactly that way. Set them in the project's own model
47
- # (`model/sdk.aontu`), where they survive a resync.
46
+ # name exactly that way. Set them in the project's own overlay
47
+ # (`model/project.aon`), which create-sdkgen creates once and never
48
+ # overwrites — NOT `model/sdk.aon`, which it rewrites on every scaffold.
48
49
  #
49
50
  # For that to work this file must LEAVE THOSE KEYS UNSET: in aontu a concrete
50
51
  # value does not yield to another concrete value, it CONFLICTS, and two
51
- # defaults conflict too. The schema (@voxgig/sdkgen/model/sdkgen.aontu)
52
+ # defaults conflict too. The schema (@voxgig/sdkgen/model/sdkgen.aon)
52
53
  # already defaults `tag.active`, `registry.state`, `registry.active` and
53
54
  # `registry.package`, so a project's concrete value wins over the default and
54
55
  # repeating them here would only take that away.
@@ -28,12 +28,13 @@ main: kit: feature: &: target: lua: deps: &: {
28
28
  #
29
29
  # `target add <t>` OVERWRITES this file, so a project must never set its
30
30
  # publication values here — voxgig-solardemo-sdk lost its pinned npm package
31
- # name exactly that way. Set them in the project's own model
32
- # (`model/sdk.aontu`), where they survive a resync.
31
+ # name exactly that way. Set them in the project's own overlay
32
+ # (`model/project.aon`), which create-sdkgen creates once and never
33
+ # overwrites — NOT `model/sdk.aon`, which it rewrites on every scaffold.
33
34
  #
34
35
  # For that to work this file must LEAVE THOSE KEYS UNSET: in aontu a concrete
35
36
  # value does not yield to another concrete value, it CONFLICTS, and two
36
- # defaults conflict too. The schema (@voxgig/sdkgen/model/sdkgen.aontu)
37
+ # defaults conflict too. The schema (@voxgig/sdkgen/model/sdkgen.aon)
37
38
  # already defaults `tag.active`, `registry.state`, `registry.active` and
38
39
  # `registry.package`, so a project's concrete value wins over the default and
39
40
  # repeating them here would only take that away.
@@ -28,12 +28,13 @@ main: kit: feature: &: target: ocaml: deps: &: {
28
28
  #
29
29
  # `target add <t>` OVERWRITES this file, so a project must never set its
30
30
  # publication values here — voxgig-solardemo-sdk lost its pinned npm package
31
- # name exactly that way. Set them in the project's own model
32
- # (`model/sdk.aontu`), where they survive a resync.
31
+ # name exactly that way. Set them in the project's own overlay
32
+ # (`model/project.aon`), which create-sdkgen creates once and never
33
+ # overwrites — NOT `model/sdk.aon`, which it rewrites on every scaffold.
33
34
  #
34
35
  # For that to work this file must LEAVE THOSE KEYS UNSET: in aontu a concrete
35
36
  # value does not yield to another concrete value, it CONFLICTS, and two
36
- # defaults conflict too. The schema (@voxgig/sdkgen/model/sdkgen.aontu)
37
+ # defaults conflict too. The schema (@voxgig/sdkgen/model/sdkgen.aon)
37
38
  # already defaults `tag.active`, `registry.state`, `registry.active` and
38
39
  # `registry.package`, so a project's concrete value wins over the default and
39
40
  # repeating them here would only take that away.
@@ -29,12 +29,13 @@ main: kit: feature: &: target: perl: deps: &: {
29
29
  #
30
30
  # `target add <t>` OVERWRITES this file, so a project must never set its
31
31
  # publication values here — voxgig-solardemo-sdk lost its pinned npm package
32
- # name exactly that way. Set them in the project's own model
33
- # (`model/sdk.aontu`), where they survive a resync.
32
+ # name exactly that way. Set them in the project's own overlay
33
+ # (`model/project.aon`), which create-sdkgen creates once and never
34
+ # overwrites — NOT `model/sdk.aon`, which it rewrites on every scaffold.
34
35
  #
35
36
  # For that to work this file must LEAVE THOSE KEYS UNSET: in aontu a concrete
36
37
  # value does not yield to another concrete value, it CONFLICTS, and two
37
- # defaults conflict too. The schema (@voxgig/sdkgen/model/sdkgen.aontu)
38
+ # defaults conflict too. The schema (@voxgig/sdkgen/model/sdkgen.aon)
38
39
  # already defaults `tag.active`, `registry.state`, `registry.active` and
39
40
  # `registry.package`, so a project's concrete value wins over the default and
40
41
  # repeating them here would only take that away.
@@ -26,12 +26,13 @@ main: kit: feature: &: target: php: deps: &: {
26
26
  #
27
27
  # `target add <t>` OVERWRITES this file, so a project must never set its
28
28
  # publication values here — voxgig-solardemo-sdk lost its pinned npm package
29
- # name exactly that way. Set them in the project's own model
30
- # (`model/sdk.aontu`), where they survive a resync.
29
+ # name exactly that way. Set them in the project's own overlay
30
+ # (`model/project.aon`), which create-sdkgen creates once and never
31
+ # overwrites — NOT `model/sdk.aon`, which it rewrites on every scaffold.
31
32
  #
32
33
  # For that to work this file must LEAVE THOSE KEYS UNSET: in aontu a concrete
33
34
  # value does not yield to another concrete value, it CONFLICTS, and two
34
- # defaults conflict too. The schema (@voxgig/sdkgen/model/sdkgen.aontu)
35
+ # defaults conflict too. The schema (@voxgig/sdkgen/model/sdkgen.aon)
35
36
  # already defaults `tag.active`, `registry.state`, `registry.active` and
36
37
  # `registry.package`, so a project's concrete value wins over the default and
37
38
  # repeating them here would only take that away.
@@ -56,12 +56,13 @@ main: kit: feature: &: target: 'py-data': deps: &: {
56
56
  #
57
57
  # `target add <t>` OVERWRITES this file, so a project must never set its
58
58
  # publication values here — voxgig-solardemo-sdk lost its pinned npm package
59
- # name exactly that way. Set them in the project's own model
60
- # (`model/sdk.aontu`), where they survive a resync.
59
+ # name exactly that way. Set them in the project's own overlay
60
+ # (`model/project.aon`), which create-sdkgen creates once and never
61
+ # overwrites — NOT `model/sdk.aon`, which it rewrites on every scaffold.
61
62
  #
62
63
  # For that to work this file must LEAVE THOSE KEYS UNSET: in aontu a concrete
63
64
  # value does not yield to another concrete value, it CONFLICTS, and two
64
- # defaults conflict too. The schema (@voxgig/sdkgen/model/sdkgen.aontu)
65
+ # defaults conflict too. The schema (@voxgig/sdkgen/model/sdkgen.aon)
65
66
  # already defaults `tag.active`, `registry.state`, `registry.active` and
66
67
  # `registry.package`, so a project's concrete value wins over the default and
67
68
  # repeating them here would only take that away.
@@ -28,12 +28,13 @@ main: kit: feature: &: target: py: deps: &: {
28
28
  #
29
29
  # `target add <t>` OVERWRITES this file, so a project must never set its
30
30
  # publication values here — voxgig-solardemo-sdk lost its pinned npm package
31
- # name exactly that way. Set them in the project's own model
32
- # (`model/sdk.aontu`), where they survive a resync.
31
+ # name exactly that way. Set them in the project's own overlay
32
+ # (`model/project.aon`), which create-sdkgen creates once and never
33
+ # overwrites — NOT `model/sdk.aon`, which it rewrites on every scaffold.
33
34
  #
34
35
  # For that to work this file must LEAVE THOSE KEYS UNSET: in aontu a concrete
35
36
  # value does not yield to another concrete value, it CONFLICTS, and two
36
- # defaults conflict too. The schema (@voxgig/sdkgen/model/sdkgen.aontu)
37
+ # defaults conflict too. The schema (@voxgig/sdkgen/model/sdkgen.aon)
37
38
  # already defaults `tag.active`, `registry.state`, `registry.active` and
38
39
  # `registry.package`, so a project's concrete value wins over the default and
39
40
  # repeating them here would only take that away.
@@ -28,12 +28,13 @@ main: kit: feature: &: target: rb: deps: &: {
28
28
  #
29
29
  # `target add <t>` OVERWRITES this file, so a project must never set its
30
30
  # publication values here — voxgig-solardemo-sdk lost its pinned npm package
31
- # name exactly that way. Set them in the project's own model
32
- # (`model/sdk.aontu`), where they survive a resync.
31
+ # name exactly that way. Set them in the project's own overlay
32
+ # (`model/project.aon`), which create-sdkgen creates once and never
33
+ # overwrites — NOT `model/sdk.aon`, which it rewrites on every scaffold.
33
34
  #
34
35
  # For that to work this file must LEAVE THOSE KEYS UNSET: in aontu a concrete
35
36
  # value does not yield to another concrete value, it CONFLICTS, and two
36
- # defaults conflict too. The schema (@voxgig/sdkgen/model/sdkgen.aontu)
37
+ # defaults conflict too. The schema (@voxgig/sdkgen/model/sdkgen.aon)
37
38
  # already defaults `tag.active`, `registry.state`, `registry.active` and
38
39
  # `registry.package`, so a project's concrete value wins over the default and
39
40
  # repeating them here would only take that away.
@@ -29,12 +29,13 @@ main: kit: feature: &: target: rust: deps: &: {
29
29
  #
30
30
  # `target add <t>` OVERWRITES this file, so a project must never set its
31
31
  # publication values here — voxgig-solardemo-sdk lost its pinned npm package
32
- # name exactly that way. Set them in the project's own model
33
- # (`model/sdk.aontu`), where they survive a resync.
32
+ # name exactly that way. Set them in the project's own overlay
33
+ # (`model/project.aon`), which create-sdkgen creates once and never
34
+ # overwrites — NOT `model/sdk.aon`, which it rewrites on every scaffold.
34
35
  #
35
36
  # For that to work this file must LEAVE THOSE KEYS UNSET: in aontu a concrete
36
37
  # value does not yield to another concrete value, it CONFLICTS, and two
37
- # defaults conflict too. The schema (@voxgig/sdkgen/model/sdkgen.aontu)
38
+ # defaults conflict too. The schema (@voxgig/sdkgen/model/sdkgen.aon)
38
39
  # already defaults `tag.active`, `registry.state`, `registry.active` and
39
40
  # `registry.package`, so a project's concrete value wins over the default and
40
41
  # repeating them here would only take that away.
@@ -29,12 +29,13 @@ main: kit: feature: &: target: scala: deps: &: {
29
29
  #
30
30
  # `target add <t>` OVERWRITES this file, so a project must never set its
31
31
  # publication values here — voxgig-solardemo-sdk lost its pinned npm package
32
- # name exactly that way. Set them in the project's own model
33
- # (`model/sdk.aontu`), where they survive a resync.
32
+ # name exactly that way. Set them in the project's own overlay
33
+ # (`model/project.aon`), which create-sdkgen creates once and never
34
+ # overwrites — NOT `model/sdk.aon`, which it rewrites on every scaffold.
34
35
  #
35
36
  # For that to work this file must LEAVE THOSE KEYS UNSET: in aontu a concrete
36
37
  # value does not yield to another concrete value, it CONFLICTS, and two
37
- # defaults conflict too. The schema (@voxgig/sdkgen/model/sdkgen.aontu)
38
+ # defaults conflict too. The schema (@voxgig/sdkgen/model/sdkgen.aon)
38
39
  # already defaults `tag.active`, `registry.state`, `registry.active` and
39
40
  # `registry.package`, so a project's concrete value wins over the default and
40
41
  # repeating them here would only take that away.
@@ -98,12 +98,13 @@ main: kit: feature: &: target: 'seneca-provider': deps: &: {
98
98
  #
99
99
  # `target add <t>` OVERWRITES this file, so a project must never set its
100
100
  # publication values here — voxgig-solardemo-sdk lost its pinned npm package
101
- # name exactly that way. Set them in the project's own model
102
- # (`model/sdk.aontu`), where they survive a resync.
101
+ # name exactly that way. Set them in the project's own overlay
102
+ # (`model/project.aon`), which create-sdkgen creates once and never
103
+ # overwrites — NOT `model/sdk.aon`, which it rewrites on every scaffold.
103
104
  #
104
105
  # For that to work this file must LEAVE THOSE KEYS UNSET: in aontu a concrete
105
106
  # value does not yield to another concrete value, it CONFLICTS, and two
106
- # defaults conflict too. The schema (@voxgig/sdkgen/model/sdkgen.aontu)
107
+ # defaults conflict too. The schema (@voxgig/sdkgen/model/sdkgen.aon)
107
108
  # already defaults `tag.active`, `registry.state`, `registry.active` and
108
109
  # `registry.package`, so a project's concrete value wins over the default and
109
110
  # repeating them here would only take that away.
@@ -26,12 +26,13 @@ main: kit: feature: &: target: swift: deps: &: {
26
26
  #
27
27
  # `target add <t>` OVERWRITES this file, so a project must never set its
28
28
  # publication values here — voxgig-solardemo-sdk lost its pinned npm package
29
- # name exactly that way. Set them in the project's own model
30
- # (`model/sdk.aontu`), where they survive a resync.
29
+ # name exactly that way. Set them in the project's own overlay
30
+ # (`model/project.aon`), which create-sdkgen creates once and never
31
+ # overwrites — NOT `model/sdk.aon`, which it rewrites on every scaffold.
31
32
  #
32
33
  # For that to work this file must LEAVE THOSE KEYS UNSET: in aontu a concrete
33
34
  # value does not yield to another concrete value, it CONFLICTS, and two
34
- # defaults conflict too. The schema (@voxgig/sdkgen/model/sdkgen.aontu)
35
+ # defaults conflict too. The schema (@voxgig/sdkgen/model/sdkgen.aon)
35
36
  # already defaults `tag.active`, `registry.state`, `registry.active` and
36
37
  # `registry.package`, so a project's concrete value wins over the default and
37
38
  # repeating them here would only take that away.
@@ -30,12 +30,13 @@ main: kit: feature: &: target: ts: deps: &: {
30
30
  #
31
31
  # `target add <t>` OVERWRITES this file, so a project must never set its
32
32
  # publication values here — voxgig-solardemo-sdk lost its pinned npm package
33
- # name exactly that way. Set them in the project's own model
34
- # (`model/sdk.aontu`), where they survive a resync.
33
+ # name exactly that way. Set them in the project's own overlay
34
+ # (`model/project.aon`), which create-sdkgen creates once and never
35
+ # overwrites — NOT `model/sdk.aon`, which it rewrites on every scaffold.
35
36
  #
36
37
  # For that to work this file must LEAVE THOSE KEYS UNSET: in aontu a concrete
37
38
  # value does not yield to another concrete value, it CONFLICTS, and two
38
- # defaults conflict too. The schema (@voxgig/sdkgen/model/sdkgen.aontu)
39
+ # defaults conflict too. The schema (@voxgig/sdkgen/model/sdkgen.aon)
39
40
  # already defaults `tag.active`, `registry.state`, `registry.active` and
40
41
  # `registry.package`, so a project's concrete value wins over the default and
41
42
  # repeating them here would only take that away.
@@ -25,16 +25,17 @@ main: kit: feature: &: target: zig: deps: &: {
25
25
  # The `registry: { state:'pending', name:'none' }` placeholder (same as c/cpp)
26
26
  # routes deploy-zig to the root tag-push recipe. WITHOUT it, Deploy.ts falls
27
27
  # through to `make -C zig publish` — but zig's Makefile has no `publish` target,
28
- # so the deploy fails. Mirror c.aontu exactly.
28
+ # so the deploy fails. Mirror c.aon exactly.
29
29
  #
30
30
  # `target add <t>` OVERWRITES this file, so a project must never set its
31
31
  # publication values here — voxgig-solardemo-sdk lost its pinned npm package
32
- # name exactly that way. Set them in the project's own model
33
- # (`model/sdk.aontu`), where they survive a resync.
32
+ # name exactly that way. Set them in the project's own overlay
33
+ # (`model/project.aon`), which create-sdkgen creates once and never
34
+ # overwrites — NOT `model/sdk.aon`, which it rewrites on every scaffold.
34
35
  #
35
36
  # For that to work this file must LEAVE THOSE KEYS UNSET: in aontu a concrete
36
37
  # value does not yield to another concrete value, it CONFLICTS, and two
37
- # defaults conflict too. The schema (@voxgig/sdkgen/model/sdkgen.aontu)
38
+ # defaults conflict too. The schema (@voxgig/sdkgen/model/sdkgen.aon)
38
39
  # already defaults `tag.active`, `registry.state`, `registry.active` and
39
40
  # `registry.package`, so a project's concrete value wins over the default and
40
41
  # repeating them here would only take that away.
@@ -60,7 +60,7 @@ const Main = cmp(function Main(props: any) {
60
60
  const entityMap: any = getModelPath(model, `main.${KIT}.entity`)
61
61
  // Derive each entity's PascalCase `Name` here rather than relying on another
62
62
  // TARGET having run first. This target sets `phase.entity: { active: false }`
63
- // (see model/target/go-{cli,mcp}.aontu), so create-sdkgen's Root.ts never
63
+ // (see model/target/go-{cli,mcp}.aon), so create-sdkgen's Root.ts never
64
64
  // calls names() for it — the accessor emitted below used to read `Name` off
65
65
  // objects the `go` target happened to have named as a side effect, which
66
66
  // yields `client.undefined(nil)` whenever this target is generated without
@@ -60,7 +60,7 @@ const Main = cmp(function Main(props: any) {
60
60
  const entityMap: any = getModelPath(model, `main.${KIT}.entity`)
61
61
  // Derive each entity's PascalCase `Name` here rather than relying on another
62
62
  // TARGET having run first. This target sets `phase.entity: { active: false }`
63
- // (see model/target/go-{cli,mcp}.aontu), so create-sdkgen's Root.ts never
63
+ // (see model/target/go-{cli,mcp}.aon), so create-sdkgen's Root.ts never
64
64
  // calls names() for it — the accessor emitted below used to read `Name` off
65
65
  // objects the `go` target happened to have named as a side effect, which
66
66
  // yields `client.undefined(nil)` whenever this target is generated without
@@ -17,7 +17,7 @@ import {
17
17
  // The `py-data` target: a Python package for DATA ANALYSTS working in
18
18
  // notebooks (Colab, Jupyter), layered on the sibling `py` SDK generated into
19
19
  // the same repo. It is a consumer target in the go-cli / go-mcp mould — every
20
- // standard generation phase is switched off in model/target/py-data.aontu and
20
+ // standard generation phase is switched off in model/target/py-data.aon and
21
21
  // this component emits the whole package.
22
22
  //
23
23
  // The deliverable an analyst wants is not "a client", it is TABLES: one line
@@ -22,7 +22,7 @@ import { Gitignore } from './Gitignore_seneca-provider'
22
22
  // `ts` SDK.
23
23
  //
24
24
  // A consumer target in the go-cli / py-data mould — every standard phase is
25
- // off in model/target/seneca-provider.aontu and this component emits the
25
+ // off in model/target/seneca-provider.aon and this component emits the
26
26
  // whole package. It differs from those in one way that shapes everything
27
27
  // here: it generates into ITS OWN REPO (`output: path`), depends on the SDK
28
28
  // as a PUBLISHED npm package rather than by path, and therefore carries a