@forge/manifest 13.1.0-next.3 → 13.1.0-next.4
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 +6 -0
- package/out/schema/manifest-schema.json +4 -13
- package/out/schema/manifest.d.ts +2 -6
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -31610,22 +31610,13 @@
|
|
|
31610
31610
|
"items": {
|
|
31611
31611
|
"type": "object",
|
|
31612
31612
|
"required": [
|
|
31613
|
-
"
|
|
31613
|
+
"path",
|
|
31614
31614
|
"key"
|
|
31615
31615
|
],
|
|
31616
31616
|
"properties": {
|
|
31617
|
-
"
|
|
31618
|
-
"type": "
|
|
31619
|
-
"
|
|
31620
|
-
"required": [
|
|
31621
|
-
"dir"
|
|
31622
|
-
],
|
|
31623
|
-
"properties": {
|
|
31624
|
-
"dir": {
|
|
31625
|
-
"type": "string",
|
|
31626
|
-
"minLength": 1
|
|
31627
|
-
}
|
|
31628
|
-
}
|
|
31617
|
+
"path": {
|
|
31618
|
+
"type": "string",
|
|
31619
|
+
"pattern": "^resource:[^;]+;.+$"
|
|
31629
31620
|
},
|
|
31630
31621
|
"dependencies": {
|
|
31631
31622
|
"type": "object",
|
package/out/schema/manifest.d.ts
CHANGED
|
@@ -25948,9 +25948,7 @@ export interface Modules {
|
|
|
25948
25948
|
];
|
|
25949
25949
|
'rovo:skill'?: [
|
|
25950
25950
|
{
|
|
25951
|
-
|
|
25952
|
-
dir: string;
|
|
25953
|
-
};
|
|
25951
|
+
path: string;
|
|
25954
25952
|
dependencies?: {
|
|
25955
25953
|
tools?: string[];
|
|
25956
25954
|
[k: string]: unknown;
|
|
@@ -25959,9 +25957,7 @@ export interface Modules {
|
|
|
25959
25957
|
[k: string]: unknown;
|
|
25960
25958
|
},
|
|
25961
25959
|
...{
|
|
25962
|
-
|
|
25963
|
-
dir: string;
|
|
25964
|
-
};
|
|
25960
|
+
path: string;
|
|
25965
25961
|
dependencies?: {
|
|
25966
25962
|
tools?: string[];
|
|
25967
25963
|
[k: string]: unknown;
|