@manifesto-ai/sdk 1.1.0 → 1.2.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 +3 -11
- package/package.json +3 -3
package/README.md
CHANGED
|
@@ -81,21 +81,13 @@ SDK re-exports public contract types and errors (for example `AppConfig`, `AppSt
|
|
|
81
81
|
| Delegates to | `@manifesto-ai/runtime` | All orchestration via runtime pipeline |
|
|
82
82
|
| Uses | `@manifesto-ai/core` | Schema and expression types |
|
|
83
83
|
| Uses | `@manifesto-ai/world` | World protocol types |
|
|
84
|
-
| Legacy predecessor |
|
|
84
|
+
| Legacy predecessor | App facade package | Removed in R2 (see API retirement record) |
|
|
85
85
|
|
|
86
86
|
---
|
|
87
87
|
|
|
88
|
-
## Migration from
|
|
88
|
+
## Migration from Legacy App Facade
|
|
89
89
|
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
```typescript
|
|
93
|
-
// Before
|
|
94
|
-
import { createApp } from "@manifesto-ai/app";
|
|
95
|
-
|
|
96
|
-
// After
|
|
97
|
-
import { createApp } from "@manifesto-ai/sdk";
|
|
98
|
-
```
|
|
90
|
+
Legacy app-facade imports should be replaced with `@manifesto-ai/sdk`.
|
|
99
91
|
|
|
100
92
|
For automated rewrite guidance, see:
|
|
101
93
|
- [docs/guides/migrate-app-to-sdk.md](../../docs/guides/migrate-app-to-sdk.md)
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@manifesto-ai/sdk",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.2.0",
|
|
4
4
|
"description": "Manifesto SDK - Public developer API layer",
|
|
5
5
|
"author": "eggplantiny <eggplantiny@gmail.com>",
|
|
6
6
|
"license": "MIT",
|
|
@@ -36,8 +36,8 @@
|
|
|
36
36
|
],
|
|
37
37
|
"dependencies": {
|
|
38
38
|
"@manifesto-ai/core": "2.4.0",
|
|
39
|
-
"@manifesto-ai/
|
|
40
|
-
"@manifesto-ai/
|
|
39
|
+
"@manifesto-ai/runtime": "0.1.2",
|
|
40
|
+
"@manifesto-ai/world": "2.4.0"
|
|
41
41
|
},
|
|
42
42
|
"devDependencies": {
|
|
43
43
|
"typescript": "^5.9.3"
|