@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 CHANGED
@@ -1,5 +1,11 @@
1
1
  # @forge/manifest
2
2
 
3
+ ## 13.1.0-next.4
4
+
5
+ ### Patch Changes
6
+
7
+ - 13e49d8: Update manifest definitions
8
+
3
9
  ## 13.1.0-next.3
4
10
 
5
11
  ### Minor Changes
@@ -31610,22 +31610,13 @@
31610
31610
  "items": {
31611
31611
  "type": "object",
31612
31612
  "required": [
31613
- "source",
31613
+ "path",
31614
31614
  "key"
31615
31615
  ],
31616
31616
  "properties": {
31617
- "source": {
31618
- "type": "object",
31619
- "additionalProperties": false,
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",
@@ -25948,9 +25948,7 @@ export interface Modules {
25948
25948
  ];
25949
25949
  'rovo:skill'?: [
25950
25950
  {
25951
- source: {
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
- source: {
25963
- dir: string;
25964
- };
25960
+ path: string;
25965
25961
  dependencies?: {
25966
25962
  tools?: string[];
25967
25963
  [k: string]: unknown;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@forge/manifest",
3
- "version": "13.1.0-next.3",
3
+ "version": "13.1.0-next.4",
4
4
  "description": "Definitions and validations of the Forge manifest",
5
5
  "main": "out/index.js",
6
6
  "scripts": {