@intentic/engine 1.176.2 → 1.209.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/README.md +2 -2
- package/package.json +6 -6
package/README.md
CHANGED
|
@@ -12,11 +12,11 @@ The stateless **reconcile engine**. It walks a `DesiredStateGraph` in dependency
|
|
|
12
12
|
|
|
13
13
|
## Key files
|
|
14
14
|
|
|
15
|
-
- [src/apply.ts](src/apply.ts) / [src/plan.ts](src/plan.ts) / [src/reconcile-loop.ts](src/reconcile-loop.ts) — the converge/dry-run/loop logic.
|
|
15
|
+
- [src/reconcile/apply.ts](src/reconcile/apply.ts) / [src/reconcile/plan.ts](src/reconcile/plan.ts) / [src/reconcile/reconcile-loop.ts](src/reconcile/reconcile-loop.ts) — the converge/dry-run/loop logic.
|
|
16
16
|
- [src/provider.ts](src/provider.ts) / [src/types.ts](src/types.ts) — the SPI and engine types (`Provider`, `DiffResult`, `EngineConfig`, `Step`, `Orphan`).
|
|
17
17
|
- [src/readiness.ts](src/readiness.ts) — `httpProbe` / `waitReady` (readiness gates).
|
|
18
18
|
- [src/resolve-inputs.ts](src/resolve-inputs.ts) — resolve refs/secrets into concrete provider inputs.
|
|
19
|
-
- [src/orphans.ts](src/orphans.ts) / [src/prune.ts](src/prune.ts) — drift cleanup; [src/providers
|
|
19
|
+
- [src/reconcile/orphans.ts](src/reconcile/orphans.ts) / [src/reconcile/prune.ts](src/reconcile/prune.ts) — drift cleanup; [src/providers](src/providers) — `createFakeProviders` (in-memory SPI for tests).
|
|
20
20
|
|
|
21
21
|
## How it fits
|
|
22
22
|
|
package/package.json
CHANGED
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@intentic/engine",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.209.0",
|
|
4
4
|
"description": "Stateless reconcile engine: plan/apply, the Provider SPI, and the reconcile loop.",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"type": "module",
|
|
7
7
|
"repository": {
|
|
8
8
|
"type": "git",
|
|
9
|
-
"url": "git+https://
|
|
10
|
-
"directory": "
|
|
9
|
+
"url": "git+https://github.com/intentic/intentic.git",
|
|
10
|
+
"directory": "_deploy/engine"
|
|
11
11
|
},
|
|
12
12
|
"files": [
|
|
13
13
|
"dist"
|
|
@@ -31,15 +31,15 @@
|
|
|
31
31
|
},
|
|
32
32
|
"dependencies": {
|
|
33
33
|
"tslib": "2.8.1",
|
|
34
|
-
"@intentic/graph": "1.
|
|
35
|
-
"@intentic/resources": "1.
|
|
34
|
+
"@intentic/graph": "1.209.0",
|
|
35
|
+
"@intentic/resources": "1.209.0"
|
|
36
36
|
},
|
|
37
37
|
"devDependencies": {
|
|
38
38
|
"@types/node": "24.13.2",
|
|
39
39
|
"@typescript/native-preview": "7.0.0-dev.20260707.2",
|
|
40
40
|
"vitest": "4.1.10",
|
|
41
41
|
"@intentic/tsconfig": "0.0.0",
|
|
42
|
-
"@intentic/sdk": "1.
|
|
42
|
+
"@intentic/sdk": "1.209.0"
|
|
43
43
|
},
|
|
44
44
|
"scripts": {
|
|
45
45
|
"build": "tsgo",
|