@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.
@@ -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({
@@ -167,6 +167,7 @@ declare const buildStepExecutionPlaneClient: (stepExecutions: StepExecutions) =>
167
167
  enabled: boolean;
168
168
  };
169
169
  } | unknown;
170
+ opencodePluginJson: Array<string | Array<unknown>> | unknown;
170
171
  };
171
172
  agentPrompt: {
172
173
  sessionTitle: string;
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.34-alpha",
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"