@boboddy/sdk 0.1.34-alpha → 0.1.36-alpha
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/dist/definitions/steps/define-step.d.ts +9 -0
- package/dist/definitions/steps/index.js +3 -1
- package/dist/definitions/steps/step-definitions-client.d.ts +3 -0
- package/dist/generated/types.gen.d.ts +13 -13
- package/dist/index.js +3 -1
- package/dist/opencode-plugin.d.ts +14 -0
- package/dist/opencode-plugin.js +14302 -0
- package/dist/push/index.js +3 -1
- package/dist/step-execution-plane-client.d.ts +1 -0
- package/package.json +5 -1
package/dist/push/index.js
CHANGED
|
@@ -12027,7 +12027,8 @@ ${feature._promptAddition}` : feature._promptAddition;
|
|
|
12027
12027
|
availableWhenResultStatusIn: s.availableWhenResultStatusIn ?? null
|
|
12028
12028
|
}))
|
|
12029
12029
|
],
|
|
12030
|
-
opencodeMcpJson: config2.mcpServers ?? null
|
|
12030
|
+
opencodeMcpJson: config2.mcpServers ?? null,
|
|
12031
|
+
opencodePluginJson: config2.plugins ?? null
|
|
12031
12032
|
};
|
|
12032
12033
|
return spec;
|
|
12033
12034
|
}
|
|
@@ -13397,6 +13398,7 @@ var buildStepDefinitionsClient = (stepDefinitions) => {
|
|
|
13397
13398
|
upsertFromSpec: async (projectId, spec, options) => {
|
|
13398
13399
|
const body = {
|
|
13399
13400
|
...spec,
|
|
13401
|
+
prompt: spec.prompt ?? "",
|
|
13400
13402
|
projectId
|
|
13401
13403
|
};
|
|
13402
13404
|
const result = await stepDefinitions.upsertStepDefinition({
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"$schema": "https://json.schemastore.org/package.json",
|
|
3
3
|
"name": "@boboddy/sdk",
|
|
4
|
-
"version": "0.1.
|
|
4
|
+
"version": "0.1.36-alpha",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"exports": {
|
|
7
7
|
".": {
|
|
@@ -36,6 +36,10 @@
|
|
|
36
36
|
"import": "./dist/opencode-mcp.js",
|
|
37
37
|
"types": "./dist/opencode-mcp.d.ts"
|
|
38
38
|
},
|
|
39
|
+
"./opencode-plugin": {
|
|
40
|
+
"import": "./dist/opencode-plugin.js",
|
|
41
|
+
"types": "./dist/opencode-plugin.d.ts"
|
|
42
|
+
},
|
|
39
43
|
"./jsonc": {
|
|
40
44
|
"import": "./dist/jsonc.js",
|
|
41
45
|
"types": "./dist/jsonc.d.ts"
|