@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.
- package/dist/agentcore/trace-fetch.d.ts +5 -4
- package/dist/agentcore/trace-fetch.d.ts.map +1 -1
- package/dist/codegen/enum-overlay.d.ts +113 -0
- package/dist/codegen/enum-overlay.d.ts.map +1 -0
- package/dist/codegen/enum-overlay.json +1843 -0
- package/dist/codegen/generate.d.ts.map +1 -1
- package/dist/integrity.json +4 -4
- package/dist/lint/audit-catalog.d.ts.map +1 -1
- package/dist/lint/audit-lineage.d.ts +10 -0
- package/dist/lint/audit-lineage.d.ts.map +1 -0
- package/dist/manifest.json +1 -1
- package/dist/meta.json +1613 -0
- package/dist/okf/types/DbCluster.md +1 -1
- package/dist/okf/types/DbInstance.md +1 -1
- package/dist/okf/types/EC2Volume.md +1 -1
- package/dist/okf/types/Function.md +1 -1
- package/dist/okf/types/Instance.md +2 -2
- package/dist/okf/types/LoadBalancer.md +1 -1
- package/dist/okf/types/ScalableTarget.md +2 -2
- package/dist/okf/types/Subscription.md +1 -1
- package/dist/okf/types/Table.md +1 -1
- package/dist/okf/types/TargetGroup.md +2 -2
- package/dist/op/activities/aws-apply.d.ts.map +1 -1
- package/dist/op/activities/floci.d.ts +3 -2
- package/dist/op/activities/floci.d.ts.map +1 -1
- package/dist/op/builders.d.ts +4 -4
- package/dist/types/index.d.ts +1587 -18
- package/package.json +2 -2
- package/src/agentcore/trace-fetch.ts +5 -4
- package/src/codegen/docs.ts +3 -3
- package/src/codegen/enum-overlay.json +1843 -0
- package/src/codegen/enum-overlay.test.ts +298 -0
- package/src/codegen/enum-overlay.ts +245 -0
- package/src/codegen/generate.ts +40 -2
- package/src/deep-observe.test.ts +23 -15
- package/src/deep-topology.test.ts +7 -3
- package/src/generated/index.d.ts +1587 -18
- package/src/generated/lexicon-aws.json +1613 -0
- package/src/index.ts +3 -3
- package/src/lint/audit-catalog.ts +5 -1
- package/src/lint/audit-lineage.ts +159 -0
- package/src/op/activities/aws-apply.ts +1 -3
- package/src/op/activities/floci.ts +3 -2
- 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.
|
|
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.
|
|
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
|
-
*
|
|
10
|
-
*
|
|
11
|
-
* the same `AwsReadHttp` seam `src/api/read-client.ts`
|
|
12
|
-
* never touch the network and `endpoint` retargets the
|
|
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.
|
package/src/codegen/docs.ts
CHANGED
|
@@ -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
|
|
117
|
-
//
|
|
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
|
};
|