@forge/manifest 7.5.1-next.0 → 7.5.1-next.0-experimental-95c622a
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
|
@@ -17614,6 +17614,11 @@
|
|
|
17614
17614
|
"key"
|
|
17615
17615
|
],
|
|
17616
17616
|
"properties": {
|
|
17617
|
+
"icon": {
|
|
17618
|
+
"type": "string",
|
|
17619
|
+
"minLength": 1,
|
|
17620
|
+
"maxLength": 255
|
|
17621
|
+
},
|
|
17617
17622
|
"name": {
|
|
17618
17623
|
"type": "string",
|
|
17619
17624
|
"minLength": 1
|
package/out/schema/manifest.d.ts
CHANGED
|
@@ -8116,6 +8116,7 @@ export interface Modules {
|
|
|
8116
8116
|
];
|
|
8117
8117
|
'rovo:agent'?: [
|
|
8118
8118
|
{
|
|
8119
|
+
icon?: string;
|
|
8119
8120
|
name: string;
|
|
8120
8121
|
description?: string;
|
|
8121
8122
|
prompt: string;
|
|
@@ -8131,6 +8132,7 @@ export interface Modules {
|
|
|
8131
8132
|
key: ModuleKeySchema;
|
|
8132
8133
|
},
|
|
8133
8134
|
...{
|
|
8135
|
+
icon?: string;
|
|
8134
8136
|
name: string;
|
|
8135
8137
|
description?: string;
|
|
8136
8138
|
prompt: string;
|