@exulu/backend 1.60.0 → 1.61.1

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/index.d.cts CHANGED
@@ -19,6 +19,7 @@ type User = {
19
19
  emailVerified?: string;
20
20
  type?: "api" | "user";
21
21
  anthropic_token?: string;
22
+ personal_system_prompt?: string;
22
23
  super_admin?: boolean;
23
24
  favourite_agents?: string[];
24
25
  scope_mode?: ApiKeyScopeMode;
@@ -211,7 +212,7 @@ declare class ExuluTool {
211
212
  default?: string | boolean | number;
212
213
  }[];
213
214
  needsApproval?: boolean;
214
- execute: (inputs: any) => Promise<{
215
+ execute: (inputs: any, options?: any) => Promise<{
215
216
  result?: string;
216
217
  job?: string;
217
218
  items?: Item[];
package/dist/index.d.ts CHANGED
@@ -19,6 +19,7 @@ type User = {
19
19
  emailVerified?: string;
20
20
  type?: "api" | "user";
21
21
  anthropic_token?: string;
22
+ personal_system_prompt?: string;
22
23
  super_admin?: boolean;
23
24
  favourite_agents?: string[];
24
25
  scope_mode?: ApiKeyScopeMode;
@@ -211,7 +212,7 @@ declare class ExuluTool {
211
212
  default?: string | boolean | number;
212
213
  }[];
213
214
  needsApproval?: boolean;
214
- execute: (inputs: any) => Promise<{
215
+ execute: (inputs: any, options?: any) => Promise<{
215
216
  result?: string;
216
217
  job?: string;
217
218
  items?: Item[];