@forge/manifest 13.3.1-next.2 → 13.3.1-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 +12 -0
- package/out/schema/manifest-schema.json +16 -1
- package/out/schema/manifest.d.ts +28 -2
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -2806,7 +2806,7 @@
|
|
|
2806
2806
|
"resource"
|
|
2807
2807
|
]
|
|
2808
2808
|
},
|
|
2809
|
-
"
|
|
2809
|
+
"aiContext": {
|
|
2810
2810
|
"type": "object",
|
|
2811
2811
|
"properties": {
|
|
2812
2812
|
"data": {
|
|
@@ -31795,6 +31795,14 @@
|
|
|
31795
31795
|
"key"
|
|
31796
31796
|
],
|
|
31797
31797
|
"properties": {
|
|
31798
|
+
"name": {
|
|
31799
|
+
"description": "Internal only: inserted by XLS based on frontmatter of the SKILL.md file",
|
|
31800
|
+
"type": "string"
|
|
31801
|
+
},
|
|
31802
|
+
"description": {
|
|
31803
|
+
"description": "Internal only: inserted by XLS based on frontmatter of the SKILL.md file",
|
|
31804
|
+
"type": "string"
|
|
31805
|
+
},
|
|
31798
31806
|
"source": {
|
|
31799
31807
|
"type": "object",
|
|
31800
31808
|
"additionalProperties": false,
|
|
@@ -31802,6 +31810,10 @@
|
|
|
31802
31810
|
"dir"
|
|
31803
31811
|
],
|
|
31804
31812
|
"properties": {
|
|
31813
|
+
"dirId": {
|
|
31814
|
+
"description": "Internal only: inserted by XLS. The fileId of the zipped skill directory stored in Media Service.",
|
|
31815
|
+
"type": "string"
|
|
31816
|
+
},
|
|
31805
31817
|
"dir": {
|
|
31806
31818
|
"type": "string",
|
|
31807
31819
|
"minLength": 1
|
|
@@ -32901,6 +32913,9 @@
|
|
|
32901
32913
|
"type": "string",
|
|
32902
32914
|
"default": "iframe"
|
|
32903
32915
|
},
|
|
32916
|
+
"emitsReadyEvent": {
|
|
32917
|
+
"type": "boolean"
|
|
32918
|
+
},
|
|
32904
32919
|
"key": {
|
|
32905
32920
|
"$ref": "#/definitions/ModuleKeySchema"
|
|
32906
32921
|
}
|
package/out/schema/manifest.d.ts
CHANGED
|
@@ -13153,7 +13153,7 @@ export interface Modules {
|
|
|
13153
13153
|
render?: 'default' | 'native';
|
|
13154
13154
|
[k: string]: unknown;
|
|
13155
13155
|
};
|
|
13156
|
-
|
|
13156
|
+
aiContext?: {
|
|
13157
13157
|
data:
|
|
13158
13158
|
| {
|
|
13159
13159
|
function: string;
|
|
@@ -13184,7 +13184,7 @@ export interface Modules {
|
|
|
13184
13184
|
render?: 'default' | 'native';
|
|
13185
13185
|
[k: string]: unknown;
|
|
13186
13186
|
};
|
|
13187
|
-
|
|
13187
|
+
aiContext?: {
|
|
13188
13188
|
data:
|
|
13189
13189
|
| {
|
|
13190
13190
|
function: string;
|
|
@@ -26326,7 +26326,19 @@ export interface Modules {
|
|
|
26326
26326
|
];
|
|
26327
26327
|
'rovo:skill'?: [
|
|
26328
26328
|
{
|
|
26329
|
+
/**
|
|
26330
|
+
* Internal only: inserted by XLS based on frontmatter of the SKILL.md file
|
|
26331
|
+
*/
|
|
26332
|
+
name?: string;
|
|
26333
|
+
/**
|
|
26334
|
+
* Internal only: inserted by XLS based on frontmatter of the SKILL.md file
|
|
26335
|
+
*/
|
|
26336
|
+
description?: string;
|
|
26329
26337
|
source: {
|
|
26338
|
+
/**
|
|
26339
|
+
* Internal only: inserted by XLS. The fileId of the zipped skill directory stored in Media Service.
|
|
26340
|
+
*/
|
|
26341
|
+
dirId?: string;
|
|
26330
26342
|
dir: string;
|
|
26331
26343
|
};
|
|
26332
26344
|
dependencies?: {
|
|
@@ -26338,7 +26350,19 @@ export interface Modules {
|
|
|
26338
26350
|
key: ModuleKeySchema;
|
|
26339
26351
|
},
|
|
26340
26352
|
...{
|
|
26353
|
+
/**
|
|
26354
|
+
* Internal only: inserted by XLS based on frontmatter of the SKILL.md file
|
|
26355
|
+
*/
|
|
26356
|
+
name?: string;
|
|
26357
|
+
/**
|
|
26358
|
+
* Internal only: inserted by XLS based on frontmatter of the SKILL.md file
|
|
26359
|
+
*/
|
|
26360
|
+
description?: string;
|
|
26341
26361
|
source: {
|
|
26362
|
+
/**
|
|
26363
|
+
* Internal only: inserted by XLS. The fileId of the zipped skill directory stored in Media Service.
|
|
26364
|
+
*/
|
|
26365
|
+
dirId?: string;
|
|
26342
26366
|
dir: string;
|
|
26343
26367
|
};
|
|
26344
26368
|
dependencies?: {
|
|
@@ -27453,6 +27477,7 @@ export interface Modules {
|
|
|
27453
27477
|
};
|
|
27454
27478
|
render: 'native';
|
|
27455
27479
|
renderRuntimeType?: 'webworker' | 'iframe';
|
|
27480
|
+
emitsReadyEvent?: boolean;
|
|
27456
27481
|
key: ModuleKeySchema;
|
|
27457
27482
|
},
|
|
27458
27483
|
...{
|
|
@@ -27475,6 +27500,7 @@ export interface Modules {
|
|
|
27475
27500
|
};
|
|
27476
27501
|
render: 'native';
|
|
27477
27502
|
renderRuntimeType?: 'webworker' | 'iframe';
|
|
27503
|
+
emitsReadyEvent?: boolean;
|
|
27478
27504
|
key: ModuleKeySchema;
|
|
27479
27505
|
}[]
|
|
27480
27506
|
];
|