@intentius/chant-lexicon-aws 0.57.0 → 0.59.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 (44) hide show
  1. package/dist/agentcore/trace-fetch.d.ts +5 -4
  2. package/dist/agentcore/trace-fetch.d.ts.map +1 -1
  3. package/dist/codegen/enum-overlay.d.ts +113 -0
  4. package/dist/codegen/enum-overlay.d.ts.map +1 -0
  5. package/dist/codegen/enum-overlay.json +1843 -0
  6. package/dist/codegen/generate.d.ts.map +1 -1
  7. package/dist/integrity.json +4 -4
  8. package/dist/lint/audit-catalog.d.ts.map +1 -1
  9. package/dist/lint/audit-lineage.d.ts +10 -0
  10. package/dist/lint/audit-lineage.d.ts.map +1 -0
  11. package/dist/manifest.json +1 -1
  12. package/dist/meta.json +1613 -0
  13. package/dist/okf/types/DbCluster.md +1 -1
  14. package/dist/okf/types/DbInstance.md +1 -1
  15. package/dist/okf/types/EC2Volume.md +1 -1
  16. package/dist/okf/types/Function.md +1 -1
  17. package/dist/okf/types/Instance.md +2 -2
  18. package/dist/okf/types/LoadBalancer.md +1 -1
  19. package/dist/okf/types/ScalableTarget.md +2 -2
  20. package/dist/okf/types/Subscription.md +1 -1
  21. package/dist/okf/types/Table.md +1 -1
  22. package/dist/okf/types/TargetGroup.md +2 -2
  23. package/dist/op/activities/aws-apply.d.ts.map +1 -1
  24. package/dist/op/activities/floci.d.ts +3 -2
  25. package/dist/op/activities/floci.d.ts.map +1 -1
  26. package/dist/op/builders.d.ts +4 -4
  27. package/dist/types/index.d.ts +1587 -18
  28. package/package.json +2 -2
  29. package/src/agentcore/trace-fetch.ts +5 -4
  30. package/src/codegen/docs.ts +3 -3
  31. package/src/codegen/enum-overlay.json +1843 -0
  32. package/src/codegen/enum-overlay.test.ts +298 -0
  33. package/src/codegen/enum-overlay.ts +245 -0
  34. package/src/codegen/generate.ts +40 -2
  35. package/src/deep-observe.test.ts +23 -15
  36. package/src/deep-topology.test.ts +7 -3
  37. package/src/generated/index.d.ts +1587 -18
  38. package/src/generated/lexicon-aws.json +1613 -0
  39. package/src/index.ts +3 -3
  40. package/src/lint/audit-catalog.ts +5 -1
  41. package/src/lint/audit-lineage.ts +159 -0
  42. package/src/op/activities/aws-apply.ts +1 -3
  43. package/src/op/activities/floci.ts +3 -2
  44. package/src/op/builders.ts +4 -4
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@intentius/chant-lexicon-aws",
3
- "version": "0.57.0",
3
+ "version": "0.59.0",
4
4
  "description": "AWS CloudFormation lexicon for chant — declarative IaC in TypeScript",
5
5
  "license": "Apache-2.0",
6
6
  "homepage": "https://intentius.io/chant",
@@ -80,7 +80,7 @@
80
80
  "typescript": "^5.9.3"
81
81
  },
82
82
  "peerDependencies": {
83
- "@intentius/chant": "^0.57.0",
83
+ "@intentius/chant": "^0.59.0",
84
84
  "typescript": "^5.9.3"
85
85
  }
86
86
  }
@@ -6,10 +6,11 @@
6
6
  * lexicon contributes `dogwoodReplay`: a plain exported async function taking
7
7
  * one args object, re-exported from `src/op/activities/index.ts`, resolved **by
8
8
  * name** by core's activity registry when a project lists the `aws` lexicon.
9
- * No Temporal import beneath it, so the local executor runs it unchanged and a
10
- * Temporal worker registers the same function. Transport is injectable through
11
- * the same `AwsReadHttp` seam `src/api/read-client.ts` already uses, so tests
12
- * never touch the network and `endpoint` retargets the whole thing.
9
+ * It imports no runtime of its own, so the local executor
10
+ * (`packages/core/src/op/local-executor.ts`) calls it as-is. Transport is
11
+ * injectable through the same `AwsReadHttp` seam `src/api/read-client.ts`
12
+ * already uses, so tests never touch the network and `endpoint` retargets the
13
+ * whole thing.
13
14
  *
14
15
  * The output is text. The cedar lexicon's `PolicyReplayOp` reads a trace from
15
16
  * `tracePath`, so `outPath` here is the handoff — and it is the *only* handoff.
@@ -113,9 +113,9 @@ export async function generateDocs(options?: { verbose?: boolean }): Promise<voi
113
113
  // `rules` is NOT suppressed: the hand-written `lint-rules` page in docs/pages/
114
114
  // explains 26 of the lexicon's 50 rules in depth, and the whole WAW032+
115
115
  // hardening pass had no entry there at all (#1312). The generated table is
116
- // the complete, always-current list, so both ship the overview/reference
117
- // pairing temporal uses. Duplicating 24 descriptions into the prose page
118
- // would just create a third copy to drift.
116
+ // the complete, always-current list, so both ship: a hand-written overview
117
+ // beside a generated reference. Duplicating 24 descriptions into the prose
118
+ // page would just create a third copy to drift.
119
119
  suppressPages: ["pseudo-parameters"],
120
120
  examplesDir: join(pkgDir, "examples"),
121
121
  };