@forge/manifest 13.3.1-next.3 → 13.3.1
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 +16 -0
- package/out/schema/manifest-schema.json +15 -0
- package/out/schema/manifest.d.ts +26 -0
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,21 @@
|
|
|
1
1
|
# @forge/manifest
|
|
2
2
|
|
|
3
|
+
## 13.3.1
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- 05f231c: Allow the `emitsReadyEvent` property on the `global:ui` module
|
|
8
|
+
- a38aef6: Update manifest definitions
|
|
9
|
+
- ccd5143: Update manifest definitions
|
|
10
|
+
- 6c1371a: Update manifest definitions
|
|
11
|
+
- 9389854: Update manifest definitions
|
|
12
|
+
|
|
13
|
+
## 13.3.1-next.4
|
|
14
|
+
|
|
15
|
+
### Patch Changes
|
|
16
|
+
|
|
17
|
+
- 9389854: Update manifest definitions
|
|
18
|
+
|
|
3
19
|
## 13.3.1-next.3
|
|
4
20
|
|
|
5
21
|
### Patch Changes
|
|
@@ -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
|
@@ -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
|
];
|