@pantheon.ai/mcp 0.1.7 → 0.1.8

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.
Files changed (2) hide show
  1. package/dist/cli.js +2 -2
  2. package/package.json +1 -1
package/dist/cli.js CHANGED
@@ -157,7 +157,7 @@ const snapSchema = z.object({
157
157
  snap_status: z.string(),
158
158
  snap_type: z.string(),
159
159
  started_at: zodJsonDate,
160
- finished_at: zodJsonDate,
160
+ finished_at: zodJsonDate.nullable(),
161
161
  exit_code: z.number().nullable(),
162
162
  error: z.string().nullable(),
163
163
  step_index: z.number(),
@@ -876,7 +876,7 @@ function getServerErrorMessage(error) {
876
876
 
877
877
  //#endregion
878
878
  //#region package.json
879
- var version = "0.1.7";
879
+ var version = "0.1.8";
880
880
 
881
881
  //#endregion
882
882
  //#region src/mcp/mcp.ts
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pantheon.ai/mcp",
3
- "version": "0.1.7",
3
+ "version": "0.1.8",
4
4
  "type": "module",
5
5
  "description": "",
6
6
  "bin": "dist/cli.js",