@ericsanchezok/synergy-plugin 0.0.0-dev-202602051247 → 0.0.0-dev-202602090801

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/index.d.ts +2 -2
  2. package/package.json +7 -7
package/dist/index.d.ts CHANGED
@@ -1,4 +1,4 @@
1
- import type { Event, createSynergyClient, Project, Model, Provider, Permission, UserMessage, Message, Part, Auth, Config } from "@ericsanchezok/synergy-sdk";
1
+ import type { Event, createSynergyClient, Project, Model, Provider, PermissionRequest, UserMessage, Message, Part, Auth, Config } from "@ericsanchezok/synergy-sdk";
2
2
  import type { BunShell } from "./shell";
3
3
  import { type ToolDefinition } from "./tool";
4
4
  export * from "./tool";
@@ -143,7 +143,7 @@ export interface Hooks {
143
143
  topK: number;
144
144
  options: Record<string, any>;
145
145
  }) => Promise<void>;
146
- "permission.ask"?: (input: Permission, output: {
146
+ "permission.ask"?: (input: PermissionRequest, output: {
147
147
  status: "ask" | "deny" | "allow";
148
148
  }) => Promise<void>;
149
149
  "tool.execute.before"?: (input: {
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "$schema": "https://json.schemastore.org/package.json",
3
3
  "name": "@ericsanchezok/synergy-plugin",
4
- "version": "0.0.0-dev-202602051247",
4
+ "version": "0.0.0-dev-202602090801",
5
5
  "type": "module",
6
6
  "license": "MIT",
7
7
  "repository": {
@@ -30,13 +30,13 @@
30
30
  "dist"
31
31
  ],
32
32
  "dependencies": {
33
- "@ericsanchezok/synergy-sdk": "workspace:*",
34
- "zod": "catalog:"
33
+ "@ericsanchezok/synergy-sdk": "0.0.0-dev-202602090801",
34
+ "zod": "4.1.8"
35
35
  },
36
36
  "devDependencies": {
37
- "@tsconfig/node22": "catalog:",
38
- "@types/node": "catalog:",
39
- "typescript": "catalog:",
40
- "@typescript/native-preview": "catalog:"
37
+ "@tsconfig/node22": "22.0.2",
38
+ "@types/node": "22.13.9",
39
+ "typescript": "5.8.2",
40
+ "@typescript/native-preview": "7.0.0-dev.20251207.1"
41
41
  }
42
42
  }