@frockbot/plugin-authoring 0.1.2 → 0.1.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/package.json +2 -2
- package/src/shared.ts +1 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@frockbot/plugin-authoring",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.4",
|
|
4
4
|
"private": false,
|
|
5
5
|
"type": "module",
|
|
6
6
|
"exports": {
|
|
@@ -21,7 +21,7 @@
|
|
|
21
21
|
"typecheck": "tsc --noEmit -p tsconfig.json"
|
|
22
22
|
},
|
|
23
23
|
"dependencies": {
|
|
24
|
-
"@frockbot/kernel-contracts": "0.1.
|
|
24
|
+
"@frockbot/kernel-contracts": "0.1.4",
|
|
25
25
|
"cordis": "4.0.0-rc.8"
|
|
26
26
|
},
|
|
27
27
|
"devDependencies": {
|
package/src/shared.ts
CHANGED
|
@@ -20,7 +20,7 @@ export interface AuthorPackageInputV1 {
|
|
|
20
20
|
* D6 addendum. The authored Package declares a model Contribution: an
|
|
21
21
|
* adapter that forwards to `CAPABILITIES.invokeModel`. It is a translation
|
|
22
22
|
* layer over a kernel-declared binding, never a network client, and it is
|
|
23
|
-
* callable only where an enabled model
|
|
23
|
+
* callable only where an enabled model capability matches.
|
|
24
24
|
*/
|
|
25
25
|
model?: { providerId: string; modelId: string };
|
|
26
26
|
}
|