@forge/manifest 12.1.0 → 12.1.1-next.0-experimental-75a65ea
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 +15 -0
- package/out/schema/manifest-schema.json +12 -0
- package/out/schema/manifest.d.ts +12 -0
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,20 @@
|
|
|
1
1
|
# @forge/manifest
|
|
2
2
|
|
|
3
|
+
## 12.1.1-next.0-experimental-75a65ea
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- beddb18: Update manifest definitions
|
|
8
|
+
- 561036a: Update manifest definitions
|
|
9
|
+
- b248c8f: Update manifest definitions
|
|
10
|
+
|
|
11
|
+
## 12.1.1-next.0
|
|
12
|
+
|
|
13
|
+
### Patch Changes
|
|
14
|
+
|
|
15
|
+
- 561036a: Update manifest definitions
|
|
16
|
+
- b248c8f: Update manifest definitions
|
|
17
|
+
|
|
3
18
|
## 12.1.0
|
|
4
19
|
|
|
5
20
|
### Minor Changes
|
|
@@ -1900,6 +1900,18 @@
|
|
|
1900
1900
|
},
|
|
1901
1901
|
"description": "The LLM families to use."
|
|
1902
1902
|
},
|
|
1903
|
+
"modelDisplayNames": {
|
|
1904
|
+
"type": "array",
|
|
1905
|
+
"description": "Optional mapping of included models to corresponding display names.",
|
|
1906
|
+
"items": {
|
|
1907
|
+
"type": "object",
|
|
1908
|
+
"minProperties": 1,
|
|
1909
|
+
"maxProperties": 10,
|
|
1910
|
+
"additionalProperties": {
|
|
1911
|
+
"type": "string"
|
|
1912
|
+
}
|
|
1913
|
+
}
|
|
1914
|
+
},
|
|
1903
1915
|
"key": {
|
|
1904
1916
|
"$ref": "#/definitions/ModuleKeySchema"
|
|
1905
1917
|
}
|
package/out/schema/manifest.d.ts
CHANGED
|
@@ -12328,6 +12328,12 @@ export interface Modules {
|
|
|
12328
12328
|
* The LLM families to use.
|
|
12329
12329
|
*/
|
|
12330
12330
|
model: 'claude'[];
|
|
12331
|
+
/**
|
|
12332
|
+
* Optional mapping of included models to corresponding display names.
|
|
12333
|
+
*/
|
|
12334
|
+
modelDisplayNames?: {
|
|
12335
|
+
[k: string]: string;
|
|
12336
|
+
}[];
|
|
12331
12337
|
key: ModuleKeySchema;
|
|
12332
12338
|
},
|
|
12333
12339
|
...{
|
|
@@ -12335,6 +12341,12 @@ export interface Modules {
|
|
|
12335
12341
|
* The LLM families to use.
|
|
12336
12342
|
*/
|
|
12337
12343
|
model: 'claude'[];
|
|
12344
|
+
/**
|
|
12345
|
+
* Optional mapping of included models to corresponding display names.
|
|
12346
|
+
*/
|
|
12347
|
+
modelDisplayNames?: {
|
|
12348
|
+
[k: string]: string;
|
|
12349
|
+
}[];
|
|
12338
12350
|
key: ModuleKeySchema;
|
|
12339
12351
|
}[]
|
|
12340
12352
|
];
|