@dexto/core 1.1.5 → 1.1.7

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.
@@ -11,14 +11,14 @@ declare const AgentRegistryEntrySchema: z.ZodObject<{
11
11
  main: z.ZodOptional<z.ZodString>;
12
12
  }, "strict", z.ZodTypeAny, {
13
13
  description: string;
14
- tags: string[];
15
14
  source: string;
15
+ tags: string[];
16
16
  author: string;
17
17
  main?: string | undefined;
18
18
  }, {
19
19
  description: string;
20
- tags: string[];
21
20
  source: string;
21
+ tags: string[];
22
22
  author: string;
23
23
  main?: string | undefined;
24
24
  }>;
@@ -36,14 +36,14 @@ declare const RegistrySchema: z.ZodObject<{
36
36
  main: z.ZodOptional<z.ZodString>;
37
37
  }, "strict", z.ZodTypeAny, {
38
38
  description: string;
39
- tags: string[];
40
39
  source: string;
40
+ tags: string[];
41
41
  author: string;
42
42
  main?: string | undefined;
43
43
  }, {
44
44
  description: string;
45
- tags: string[];
46
45
  source: string;
46
+ tags: string[];
47
47
  author: string;
48
48
  main?: string | undefined;
49
49
  }>>;
@@ -51,8 +51,8 @@ declare const RegistrySchema: z.ZodObject<{
51
51
  version: string;
52
52
  agents: Record<string, {
53
53
  description: string;
54
- tags: string[];
55
54
  source: string;
55
+ tags: string[];
56
56
  author: string;
57
57
  main?: string | undefined;
58
58
  }>;
@@ -60,8 +60,8 @@ declare const RegistrySchema: z.ZodObject<{
60
60
  version: string;
61
61
  agents: Record<string, {
62
62
  description: string;
63
- tags: string[];
64
63
  source: string;
64
+ tags: string[];
65
65
  author: string;
66
66
  main?: string | undefined;
67
67
  }>;
@@ -11,14 +11,14 @@ declare const AgentRegistryEntrySchema: z.ZodObject<{
11
11
  main: z.ZodOptional<z.ZodString>;
12
12
  }, "strict", z.ZodTypeAny, {
13
13
  description: string;
14
- tags: string[];
15
14
  source: string;
15
+ tags: string[];
16
16
  author: string;
17
17
  main?: string | undefined;
18
18
  }, {
19
19
  description: string;
20
- tags: string[];
21
20
  source: string;
21
+ tags: string[];
22
22
  author: string;
23
23
  main?: string | undefined;
24
24
  }>;
@@ -36,14 +36,14 @@ declare const RegistrySchema: z.ZodObject<{
36
36
  main: z.ZodOptional<z.ZodString>;
37
37
  }, "strict", z.ZodTypeAny, {
38
38
  description: string;
39
- tags: string[];
40
39
  source: string;
40
+ tags: string[];
41
41
  author: string;
42
42
  main?: string | undefined;
43
43
  }, {
44
44
  description: string;
45
- tags: string[];
46
45
  source: string;
46
+ tags: string[];
47
47
  author: string;
48
48
  main?: string | undefined;
49
49
  }>>;
@@ -51,8 +51,8 @@ declare const RegistrySchema: z.ZodObject<{
51
51
  version: string;
52
52
  agents: Record<string, {
53
53
  description: string;
54
- tags: string[];
55
54
  source: string;
55
+ tags: string[];
56
56
  author: string;
57
57
  main?: string | undefined;
58
58
  }>;
@@ -60,8 +60,8 @@ declare const RegistrySchema: z.ZodObject<{
60
60
  version: string;
61
61
  agents: Record<string, {
62
62
  description: string;
63
- tags: string[];
64
63
  source: string;
64
+ tags: string[];
65
65
  author: string;
66
66
  main?: string | undefined;
67
67
  }>;
@@ -5,21 +5,21 @@ declare const PreferenceLLMSchema: z.ZodEffects<z.ZodObject<{
5
5
  model: z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>;
6
6
  apiKey: z.ZodString;
7
7
  }, "strict", z.ZodTypeAny, {
8
- provider: "openai" | "openai-compatible" | "anthropic" | "google" | "groq" | "xai" | "cohere";
9
- model: string;
10
8
  apiKey: string;
11
- }, {
12
- provider: "openai" | "openai-compatible" | "anthropic" | "google" | "groq" | "xai" | "cohere";
13
9
  model: string;
14
- apiKey: string;
15
- }>, {
16
10
  provider: "openai" | "openai-compatible" | "anthropic" | "google" | "groq" | "xai" | "cohere";
17
- model: string;
18
- apiKey: string;
19
11
  }, {
12
+ apiKey: string;
13
+ model: string;
20
14
  provider: "openai" | "openai-compatible" | "anthropic" | "google" | "groq" | "xai" | "cohere";
15
+ }>, {
16
+ apiKey: string;
21
17
  model: string;
18
+ provider: "openai" | "openai-compatible" | "anthropic" | "google" | "groq" | "xai" | "cohere";
19
+ }, {
22
20
  apiKey: string;
21
+ model: string;
22
+ provider: "openai" | "openai-compatible" | "anthropic" | "google" | "groq" | "xai" | "cohere";
23
23
  }>;
24
24
  declare const PreferenceDefaultsSchema: z.ZodObject<{
25
25
  defaultAgent: z.ZodString;
@@ -41,21 +41,21 @@ declare const GlobalPreferencesSchema: z.ZodObject<{
41
41
  model: z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>;
42
42
  apiKey: z.ZodString;
43
43
  }, "strict", z.ZodTypeAny, {
44
- provider: "openai" | "openai-compatible" | "anthropic" | "google" | "groq" | "xai" | "cohere";
45
- model: string;
46
44
  apiKey: string;
47
- }, {
48
- provider: "openai" | "openai-compatible" | "anthropic" | "google" | "groq" | "xai" | "cohere";
49
45
  model: string;
50
- apiKey: string;
51
- }>, {
52
46
  provider: "openai" | "openai-compatible" | "anthropic" | "google" | "groq" | "xai" | "cohere";
53
- model: string;
54
- apiKey: string;
55
47
  }, {
48
+ apiKey: string;
49
+ model: string;
56
50
  provider: "openai" | "openai-compatible" | "anthropic" | "google" | "groq" | "xai" | "cohere";
51
+ }>, {
52
+ apiKey: string;
57
53
  model: string;
54
+ provider: "openai" | "openai-compatible" | "anthropic" | "google" | "groq" | "xai" | "cohere";
55
+ }, {
58
56
  apiKey: string;
57
+ model: string;
58
+ provider: "openai" | "openai-compatible" | "anthropic" | "google" | "groq" | "xai" | "cohere";
59
59
  }>;
60
60
  defaults: z.ZodObject<{
61
61
  defaultAgent: z.ZodString;
@@ -73,9 +73,9 @@ declare const GlobalPreferencesSchema: z.ZodObject<{
73
73
  }>>;
74
74
  }, "strict", z.ZodTypeAny, {
75
75
  llm: {
76
- provider: "openai" | "openai-compatible" | "anthropic" | "google" | "groq" | "xai" | "cohere";
77
- model: string;
78
76
  apiKey: string;
77
+ model: string;
78
+ provider: "openai" | "openai-compatible" | "anthropic" | "google" | "groq" | "xai" | "cohere";
79
79
  };
80
80
  defaults: {
81
81
  defaultAgent: string;
@@ -85,9 +85,9 @@ declare const GlobalPreferencesSchema: z.ZodObject<{
85
85
  };
86
86
  }, {
87
87
  llm: {
88
- provider: "openai" | "openai-compatible" | "anthropic" | "google" | "groq" | "xai" | "cohere";
89
- model: string;
90
88
  apiKey: string;
89
+ model: string;
90
+ provider: "openai" | "openai-compatible" | "anthropic" | "google" | "groq" | "xai" | "cohere";
91
91
  };
92
92
  defaults: {
93
93
  defaultAgent: string;
@@ -5,21 +5,21 @@ declare const PreferenceLLMSchema: z.ZodEffects<z.ZodObject<{
5
5
  model: z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>;
6
6
  apiKey: z.ZodString;
7
7
  }, "strict", z.ZodTypeAny, {
8
- provider: "openai" | "openai-compatible" | "anthropic" | "google" | "groq" | "xai" | "cohere";
9
- model: string;
10
8
  apiKey: string;
11
- }, {
12
- provider: "openai" | "openai-compatible" | "anthropic" | "google" | "groq" | "xai" | "cohere";
13
9
  model: string;
14
- apiKey: string;
15
- }>, {
16
10
  provider: "openai" | "openai-compatible" | "anthropic" | "google" | "groq" | "xai" | "cohere";
17
- model: string;
18
- apiKey: string;
19
11
  }, {
12
+ apiKey: string;
13
+ model: string;
20
14
  provider: "openai" | "openai-compatible" | "anthropic" | "google" | "groq" | "xai" | "cohere";
15
+ }>, {
16
+ apiKey: string;
21
17
  model: string;
18
+ provider: "openai" | "openai-compatible" | "anthropic" | "google" | "groq" | "xai" | "cohere";
19
+ }, {
22
20
  apiKey: string;
21
+ model: string;
22
+ provider: "openai" | "openai-compatible" | "anthropic" | "google" | "groq" | "xai" | "cohere";
23
23
  }>;
24
24
  declare const PreferenceDefaultsSchema: z.ZodObject<{
25
25
  defaultAgent: z.ZodString;
@@ -41,21 +41,21 @@ declare const GlobalPreferencesSchema: z.ZodObject<{
41
41
  model: z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>;
42
42
  apiKey: z.ZodString;
43
43
  }, "strict", z.ZodTypeAny, {
44
- provider: "openai" | "openai-compatible" | "anthropic" | "google" | "groq" | "xai" | "cohere";
45
- model: string;
46
44
  apiKey: string;
47
- }, {
48
- provider: "openai" | "openai-compatible" | "anthropic" | "google" | "groq" | "xai" | "cohere";
49
45
  model: string;
50
- apiKey: string;
51
- }>, {
52
46
  provider: "openai" | "openai-compatible" | "anthropic" | "google" | "groq" | "xai" | "cohere";
53
- model: string;
54
- apiKey: string;
55
47
  }, {
48
+ apiKey: string;
49
+ model: string;
56
50
  provider: "openai" | "openai-compatible" | "anthropic" | "google" | "groq" | "xai" | "cohere";
51
+ }>, {
52
+ apiKey: string;
57
53
  model: string;
54
+ provider: "openai" | "openai-compatible" | "anthropic" | "google" | "groq" | "xai" | "cohere";
55
+ }, {
58
56
  apiKey: string;
57
+ model: string;
58
+ provider: "openai" | "openai-compatible" | "anthropic" | "google" | "groq" | "xai" | "cohere";
59
59
  }>;
60
60
  defaults: z.ZodObject<{
61
61
  defaultAgent: z.ZodString;
@@ -73,9 +73,9 @@ declare const GlobalPreferencesSchema: z.ZodObject<{
73
73
  }>>;
74
74
  }, "strict", z.ZodTypeAny, {
75
75
  llm: {
76
- provider: "openai" | "openai-compatible" | "anthropic" | "google" | "groq" | "xai" | "cohere";
77
- model: string;
78
76
  apiKey: string;
77
+ model: string;
78
+ provider: "openai" | "openai-compatible" | "anthropic" | "google" | "groq" | "xai" | "cohere";
79
79
  };
80
80
  defaults: {
81
81
  defaultAgent: string;
@@ -85,9 +85,9 @@ declare const GlobalPreferencesSchema: z.ZodObject<{
85
85
  };
86
86
  }, {
87
87
  llm: {
88
- provider: "openai" | "openai-compatible" | "anthropic" | "google" | "groq" | "xai" | "cohere";
89
- model: string;
90
88
  apiKey: string;
89
+ model: string;
90
+ provider: "openai" | "openai-compatible" | "anthropic" | "google" | "groq" | "xai" | "cohere";
91
91
  };
92
92
  defaults: {
93
93
  defaultAgent: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@dexto/core",
3
- "version": "1.1.5",
3
+ "version": "1.1.7",
4
4
  "private": false,
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",