@forge/manifest 12.9.0-next.4 → 12.9.0-next.5-experimental-5c60439
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/CHANGELOG.md +24 -0
- package/out/schema/manifest-schema.json +1 -1
- package/out/schema/manifest.d.ts +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,29 @@
|
|
|
1
1
|
# @forge/manifest
|
|
2
2
|
|
|
3
|
+
## 12.9.0-next.5-experimental-5c60439
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- 8197e66: rename shards to targets in overrides
|
|
8
|
+
- 723fab8: Added first-class rovo:mcp support to the forge-manifest package
|
|
9
|
+
- 4493006: Update validation for global:ui
|
|
10
|
+
- enforce app.compatibility
|
|
11
|
+
- remove installationTarget check
|
|
12
|
+
- 9f3add6: Forge skill path validation
|
|
13
|
+
|
|
14
|
+
### Patch Changes
|
|
15
|
+
|
|
16
|
+
- ccdcfc3: Add `customerServiceManagement:crmImport` module type and corresponding CLI templates (UI Kit + Custom UI).
|
|
17
|
+
- 5beb8ad: Add multi-entry resource bundling support for worker runtime
|
|
18
|
+
- f1f11f0: Update manifest definitions
|
|
19
|
+
- b7b1f36: Update manifest definitions
|
|
20
|
+
|
|
21
|
+
## 12.9.0-next.5
|
|
22
|
+
|
|
23
|
+
### Minor Changes
|
|
24
|
+
|
|
25
|
+
- 8197e66: rename shards to targets in overrides
|
|
26
|
+
|
|
3
27
|
## 12.9.0-next.4
|
|
4
28
|
|
|
5
29
|
### Minor Changes
|
|
@@ -33406,7 +33406,7 @@
|
|
|
33406
33406
|
]
|
|
33407
33407
|
}
|
|
33408
33408
|
},
|
|
33409
|
-
"
|
|
33409
|
+
"targets": {
|
|
33410
33410
|
"type": "array",
|
|
33411
33411
|
"minItems": 1,
|
|
33412
33412
|
"items": {
|
package/out/schema/manifest.d.ts
CHANGED
|
@@ -828,7 +828,7 @@ export type OverriddenServices = {
|
|
|
828
828
|
export type ManifestOverrides = {
|
|
829
829
|
applyTo: {
|
|
830
830
|
environmentTypes?: ['DEVELOPMENT' | 'STAGING' | 'PRODUCTION', ...('DEVELOPMENT' | 'STAGING' | 'PRODUCTION')[]];
|
|
831
|
-
|
|
831
|
+
targets?: [string, ...string[]];
|
|
832
832
|
};
|
|
833
833
|
value: {
|
|
834
834
|
services?: OverriddenServices;
|