@dexto/core 1.6.27 → 1.7.0
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/agent/DextoAgent.d.ts +3 -3
- package/dist/agent/DextoAgent.d.ts.map +1 -1
- package/dist/agent/schemas.cjs +5 -5
- package/dist/agent/schemas.d.ts +69 -980
- package/dist/agent/schemas.d.ts.map +1 -1
- package/dist/agent/schemas.js +5 -5
- package/dist/approval/schemas.cjs +6 -6
- package/dist/approval/schemas.d.ts +316 -1292
- package/dist/approval/schemas.d.ts.map +1 -1
- package/dist/approval/schemas.js +6 -6
- package/dist/approval/session-approval-store.cjs +1 -1
- package/dist/approval/session-approval-store.d.ts +12 -30
- package/dist/approval/session-approval-store.d.ts.map +1 -1
- package/dist/approval/session-approval-store.js +1 -1
- package/dist/llm/providers/local/schemas.d.ts +102 -262
- package/dist/llm/providers/local/schemas.d.ts.map +1 -1
- package/dist/llm/registry/index.d.ts +5 -3
- package/dist/llm/registry/index.d.ts.map +1 -1
- package/dist/llm/resolver.cjs +0 -1
- package/dist/llm/resolver.d.ts.map +1 -1
- package/dist/llm/resolver.js +0 -1
- package/dist/llm/schemas.d.ts +95 -199
- package/dist/llm/schemas.d.ts.map +1 -1
- package/dist/logger/default-logger-factory.d.ts +28 -256
- package/dist/logger/default-logger-factory.d.ts.map +1 -1
- package/dist/logger/v2/schemas.d.ts +18 -120
- package/dist/logger/v2/schemas.d.ts.map +1 -1
- package/dist/mcp/schemas.cjs +4 -4
- package/dist/mcp/schemas.d.ts +77 -270
- package/dist/mcp/schemas.d.ts.map +1 -1
- package/dist/mcp/schemas.js +4 -4
- package/dist/memory/schemas.d.ts +37 -117
- package/dist/memory/schemas.d.ts.map +1 -1
- package/dist/prompts/schemas.d.ts +46 -190
- package/dist/prompts/schemas.d.ts.map +1 -1
- package/dist/resources/schemas.d.ts +14 -68
- package/dist/resources/schemas.d.ts.map +1 -1
- package/dist/runtime/host-runtime.d.ts +1 -5
- package/dist/runtime/host-runtime.d.ts.map +1 -1
- package/dist/session/schemas.d.ts +1 -7
- package/dist/session/schemas.d.ts.map +1 -1
- package/dist/systemPrompt/schemas.cjs +2 -10
- package/dist/systemPrompt/schemas.d.ts +53 -343
- package/dist/systemPrompt/schemas.d.ts.map +1 -1
- package/dist/systemPrompt/schemas.js +2 -10
- package/dist/telemetry/schemas.cjs +1 -1
- package/dist/telemetry/schemas.d.ts +9 -44
- package/dist/telemetry/schemas.d.ts.map +1 -1
- package/dist/telemetry/schemas.js +1 -1
- package/dist/tools/schemas.cjs +1 -1
- package/dist/tools/schemas.d.ts +19 -62
- package/dist/tools/schemas.d.ts.map +1 -1
- package/dist/tools/schemas.js +1 -1
- package/dist/tools/session-tool-preferences-store.d.ts +3 -9
- package/dist/tools/session-tool-preferences-store.d.ts.map +1 -1
- package/dist/utils/result.cjs +11 -8
- package/dist/utils/result.d.ts +6 -6
- package/dist/utils/result.d.ts.map +1 -1
- package/dist/utils/result.js +12 -9
- package/dist/utils/schema.cjs +6 -2
- package/dist/utils/schema.d.ts +2 -7
- package/dist/utils/schema.d.ts.map +1 -1
- package/dist/utils/schema.js +6 -2
- package/dist/utils/zod-schema-converter.cjs +66 -66
- package/dist/utils/zod-schema-converter.d.ts +3 -2
- package/dist/utils/zod-schema-converter.d.ts.map +1 -1
- package/dist/utils/zod-schema-converter.js +66 -66
- package/package.json +4 -5
package/dist/mcp/schemas.d.ts
CHANGED
|
@@ -20,302 +20,109 @@ export declare const DEFAULT_MCP_CONNECTION_MODE: McpConnectionMode;
|
|
|
20
20
|
export declare const StdioServerConfigSchema: z.ZodObject<{
|
|
21
21
|
type: z.ZodLiteral<"stdio">;
|
|
22
22
|
enabled: z.ZodDefault<z.ZodBoolean>;
|
|
23
|
-
command: z.
|
|
24
|
-
args: z.ZodDefault<z.ZodArray<z.
|
|
25
|
-
env: z.ZodDefault<z.ZodRecord<z.ZodString, z.
|
|
26
|
-
timeout: z.ZodDefault<z.
|
|
27
|
-
connectionMode: z.ZodDefault<z.ZodEnum<
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
command: string;
|
|
33
|
-
enabled: boolean;
|
|
34
|
-
env: Record<string, string>;
|
|
35
|
-
connectionMode: "strict" | "lenient";
|
|
36
|
-
}, {
|
|
37
|
-
type: "stdio";
|
|
38
|
-
command: string;
|
|
39
|
-
timeout?: number | undefined;
|
|
40
|
-
args?: string[] | undefined;
|
|
41
|
-
enabled?: boolean | undefined;
|
|
42
|
-
env?: Record<string, string> | undefined;
|
|
43
|
-
connectionMode?: "strict" | "lenient" | undefined;
|
|
44
|
-
}>;
|
|
23
|
+
command: z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>;
|
|
24
|
+
args: z.ZodDefault<z.ZodArray<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>>>;
|
|
25
|
+
env: z.ZodDefault<z.ZodRecord<z.ZodString, z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>>>;
|
|
26
|
+
timeout: z.ZodDefault<z.ZodCoercedNumber<unknown>>;
|
|
27
|
+
connectionMode: z.ZodDefault<z.ZodEnum<{
|
|
28
|
+
strict: "strict";
|
|
29
|
+
lenient: "lenient";
|
|
30
|
+
}>>;
|
|
31
|
+
}, z.core.$strict>;
|
|
45
32
|
export type StdioServerConfig = z.input<typeof StdioServerConfigSchema>;
|
|
46
33
|
export type ValidatedStdioServerConfig = z.output<typeof StdioServerConfigSchema>;
|
|
47
34
|
export declare const SseServerConfigSchema: z.ZodObject<{
|
|
48
35
|
type: z.ZodLiteral<"sse">;
|
|
49
36
|
enabled: z.ZodDefault<z.ZodBoolean>;
|
|
50
|
-
url: z.
|
|
51
|
-
headers: z.ZodDefault<z.ZodRecord<z.ZodString, z.
|
|
52
|
-
timeout: z.ZodDefault<z.
|
|
53
|
-
connectionMode: z.ZodDefault<z.ZodEnum<
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
enabled: boolean;
|
|
59
|
-
connectionMode: "strict" | "lenient";
|
|
60
|
-
headers: Record<string, string>;
|
|
61
|
-
}, {
|
|
62
|
-
type: "sse";
|
|
63
|
-
url: string;
|
|
64
|
-
timeout?: number | undefined;
|
|
65
|
-
enabled?: boolean | undefined;
|
|
66
|
-
connectionMode?: "strict" | "lenient" | undefined;
|
|
67
|
-
headers?: Record<string, string> | undefined;
|
|
68
|
-
}>;
|
|
37
|
+
url: z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>;
|
|
38
|
+
headers: z.ZodDefault<z.ZodRecord<z.ZodString, z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>>>;
|
|
39
|
+
timeout: z.ZodDefault<z.ZodCoercedNumber<unknown>>;
|
|
40
|
+
connectionMode: z.ZodDefault<z.ZodEnum<{
|
|
41
|
+
strict: "strict";
|
|
42
|
+
lenient: "lenient";
|
|
43
|
+
}>>;
|
|
44
|
+
}, z.core.$strict>;
|
|
69
45
|
export type SseServerConfig = z.input<typeof SseServerConfigSchema>;
|
|
70
46
|
export type ValidatedSseServerConfig = z.output<typeof SseServerConfigSchema>;
|
|
71
47
|
export declare const HttpServerConfigSchema: z.ZodObject<{
|
|
72
48
|
type: z.ZodLiteral<"http">;
|
|
73
49
|
enabled: z.ZodDefault<z.ZodBoolean>;
|
|
74
|
-
url: z.
|
|
75
|
-
headers: z.ZodDefault<z.ZodRecord<z.ZodString, z.
|
|
76
|
-
timeout: z.ZodDefault<z.
|
|
77
|
-
connectionMode: z.ZodDefault<z.ZodEnum<
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
enabled: boolean;
|
|
83
|
-
connectionMode: "strict" | "lenient";
|
|
84
|
-
headers: Record<string, string>;
|
|
85
|
-
}, {
|
|
86
|
-
type: "http";
|
|
87
|
-
url: string;
|
|
88
|
-
timeout?: number | undefined;
|
|
89
|
-
enabled?: boolean | undefined;
|
|
90
|
-
connectionMode?: "strict" | "lenient" | undefined;
|
|
91
|
-
headers?: Record<string, string> | undefined;
|
|
92
|
-
}>;
|
|
50
|
+
url: z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>;
|
|
51
|
+
headers: z.ZodDefault<z.ZodRecord<z.ZodString, z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>>>;
|
|
52
|
+
timeout: z.ZodDefault<z.ZodCoercedNumber<unknown>>;
|
|
53
|
+
connectionMode: z.ZodDefault<z.ZodEnum<{
|
|
54
|
+
strict: "strict";
|
|
55
|
+
lenient: "lenient";
|
|
56
|
+
}>>;
|
|
57
|
+
}, z.core.$strict>;
|
|
93
58
|
export type HttpServerConfig = z.input<typeof HttpServerConfigSchema>;
|
|
94
59
|
export type ValidatedHttpServerConfig = z.output<typeof HttpServerConfigSchema>;
|
|
95
|
-
export declare const McpServerConfigSchema: z.ZodBranded<z.
|
|
60
|
+
export declare const McpServerConfigSchema: z.core.$ZodBranded<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
96
61
|
type: z.ZodLiteral<"stdio">;
|
|
97
62
|
enabled: z.ZodDefault<z.ZodBoolean>;
|
|
98
|
-
command: z.
|
|
99
|
-
args: z.ZodDefault<z.ZodArray<z.
|
|
100
|
-
env: z.ZodDefault<z.ZodRecord<z.ZodString, z.
|
|
101
|
-
timeout: z.ZodDefault<z.
|
|
102
|
-
connectionMode: z.ZodDefault<z.ZodEnum<
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
command: string;
|
|
108
|
-
enabled: boolean;
|
|
109
|
-
env: Record<string, string>;
|
|
110
|
-
connectionMode: "strict" | "lenient";
|
|
111
|
-
}, {
|
|
112
|
-
type: "stdio";
|
|
113
|
-
command: string;
|
|
114
|
-
timeout?: number | undefined;
|
|
115
|
-
args?: string[] | undefined;
|
|
116
|
-
enabled?: boolean | undefined;
|
|
117
|
-
env?: Record<string, string> | undefined;
|
|
118
|
-
connectionMode?: "strict" | "lenient" | undefined;
|
|
119
|
-
}>, z.ZodObject<{
|
|
63
|
+
command: z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>;
|
|
64
|
+
args: z.ZodDefault<z.ZodArray<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>>>;
|
|
65
|
+
env: z.ZodDefault<z.ZodRecord<z.ZodString, z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>>>;
|
|
66
|
+
timeout: z.ZodDefault<z.ZodCoercedNumber<unknown>>;
|
|
67
|
+
connectionMode: z.ZodDefault<z.ZodEnum<{
|
|
68
|
+
strict: "strict";
|
|
69
|
+
lenient: "lenient";
|
|
70
|
+
}>>;
|
|
71
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
120
72
|
type: z.ZodLiteral<"sse">;
|
|
121
73
|
enabled: z.ZodDefault<z.ZodBoolean>;
|
|
122
|
-
url: z.
|
|
123
|
-
headers: z.ZodDefault<z.ZodRecord<z.ZodString, z.
|
|
124
|
-
timeout: z.ZodDefault<z.
|
|
125
|
-
connectionMode: z.ZodDefault<z.ZodEnum<
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
enabled: boolean;
|
|
131
|
-
connectionMode: "strict" | "lenient";
|
|
132
|
-
headers: Record<string, string>;
|
|
133
|
-
}, {
|
|
134
|
-
type: "sse";
|
|
135
|
-
url: string;
|
|
136
|
-
timeout?: number | undefined;
|
|
137
|
-
enabled?: boolean | undefined;
|
|
138
|
-
connectionMode?: "strict" | "lenient" | undefined;
|
|
139
|
-
headers?: Record<string, string> | undefined;
|
|
140
|
-
}>, z.ZodObject<{
|
|
74
|
+
url: z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>;
|
|
75
|
+
headers: z.ZodDefault<z.ZodRecord<z.ZodString, z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>>>;
|
|
76
|
+
timeout: z.ZodDefault<z.ZodCoercedNumber<unknown>>;
|
|
77
|
+
connectionMode: z.ZodDefault<z.ZodEnum<{
|
|
78
|
+
strict: "strict";
|
|
79
|
+
lenient: "lenient";
|
|
80
|
+
}>>;
|
|
81
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
141
82
|
type: z.ZodLiteral<"http">;
|
|
142
83
|
enabled: z.ZodDefault<z.ZodBoolean>;
|
|
143
|
-
url: z.
|
|
144
|
-
headers: z.ZodDefault<z.ZodRecord<z.ZodString, z.
|
|
145
|
-
timeout: z.ZodDefault<z.
|
|
146
|
-
connectionMode: z.ZodDefault<z.ZodEnum<
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
|
|
150
|
-
|
|
151
|
-
enabled: boolean;
|
|
152
|
-
connectionMode: "strict" | "lenient";
|
|
153
|
-
headers: Record<string, string>;
|
|
154
|
-
}, {
|
|
155
|
-
type: "http";
|
|
156
|
-
url: string;
|
|
157
|
-
timeout?: number | undefined;
|
|
158
|
-
enabled?: boolean | undefined;
|
|
159
|
-
connectionMode?: "strict" | "lenient" | undefined;
|
|
160
|
-
headers?: Record<string, string> | undefined;
|
|
161
|
-
}>]>, {
|
|
162
|
-
timeout: number;
|
|
163
|
-
type: "stdio";
|
|
164
|
-
args: string[];
|
|
165
|
-
command: string;
|
|
166
|
-
enabled: boolean;
|
|
167
|
-
env: Record<string, string>;
|
|
168
|
-
connectionMode: "strict" | "lenient";
|
|
169
|
-
} | {
|
|
170
|
-
timeout: number;
|
|
171
|
-
type: "sse";
|
|
172
|
-
url: string;
|
|
173
|
-
enabled: boolean;
|
|
174
|
-
connectionMode: "strict" | "lenient";
|
|
175
|
-
headers: Record<string, string>;
|
|
176
|
-
} | {
|
|
177
|
-
timeout: number;
|
|
178
|
-
type: "http";
|
|
179
|
-
url: string;
|
|
180
|
-
enabled: boolean;
|
|
181
|
-
connectionMode: "strict" | "lenient";
|
|
182
|
-
headers: Record<string, string>;
|
|
183
|
-
}, {
|
|
184
|
-
type: "stdio";
|
|
185
|
-
command: string;
|
|
186
|
-
timeout?: number | undefined;
|
|
187
|
-
args?: string[] | undefined;
|
|
188
|
-
enabled?: boolean | undefined;
|
|
189
|
-
env?: Record<string, string> | undefined;
|
|
190
|
-
connectionMode?: "strict" | "lenient" | undefined;
|
|
191
|
-
} | {
|
|
192
|
-
type: "sse";
|
|
193
|
-
url: string;
|
|
194
|
-
timeout?: number | undefined;
|
|
195
|
-
enabled?: boolean | undefined;
|
|
196
|
-
connectionMode?: "strict" | "lenient" | undefined;
|
|
197
|
-
headers?: Record<string, string> | undefined;
|
|
198
|
-
} | {
|
|
199
|
-
type: "http";
|
|
200
|
-
url: string;
|
|
201
|
-
timeout?: number | undefined;
|
|
202
|
-
enabled?: boolean | undefined;
|
|
203
|
-
connectionMode?: "strict" | "lenient" | undefined;
|
|
204
|
-
headers?: Record<string, string> | undefined;
|
|
205
|
-
}>, "ValidatedMcpServerConfig">;
|
|
84
|
+
url: z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>;
|
|
85
|
+
headers: z.ZodDefault<z.ZodRecord<z.ZodString, z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>>>;
|
|
86
|
+
timeout: z.ZodDefault<z.ZodCoercedNumber<unknown>>;
|
|
87
|
+
connectionMode: z.ZodDefault<z.ZodEnum<{
|
|
88
|
+
strict: "strict";
|
|
89
|
+
lenient: "lenient";
|
|
90
|
+
}>>;
|
|
91
|
+
}, z.core.$strict>], "type">, "ValidatedMcpServerConfig", "out">;
|
|
206
92
|
export type McpServerConfig = z.input<typeof McpServerConfigSchema>;
|
|
207
93
|
export type ValidatedMcpServerConfig = z.output<typeof McpServerConfigSchema>;
|
|
208
|
-
export declare const ServersConfigSchema: z.ZodBranded<z.ZodRecord<z.ZodString, z.ZodBranded<z.
|
|
94
|
+
export declare const ServersConfigSchema: z.core.$ZodBranded<z.ZodRecord<z.ZodString, z.core.$ZodBranded<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
209
95
|
type: z.ZodLiteral<"stdio">;
|
|
210
96
|
enabled: z.ZodDefault<z.ZodBoolean>;
|
|
211
|
-
command: z.
|
|
212
|
-
args: z.ZodDefault<z.ZodArray<z.
|
|
213
|
-
env: z.ZodDefault<z.ZodRecord<z.ZodString, z.
|
|
214
|
-
timeout: z.ZodDefault<z.
|
|
215
|
-
connectionMode: z.ZodDefault<z.ZodEnum<
|
|
216
|
-
|
|
217
|
-
|
|
218
|
-
|
|
219
|
-
|
|
220
|
-
command: string;
|
|
221
|
-
enabled: boolean;
|
|
222
|
-
env: Record<string, string>;
|
|
223
|
-
connectionMode: "strict" | "lenient";
|
|
224
|
-
}, {
|
|
225
|
-
type: "stdio";
|
|
226
|
-
command: string;
|
|
227
|
-
timeout?: number | undefined;
|
|
228
|
-
args?: string[] | undefined;
|
|
229
|
-
enabled?: boolean | undefined;
|
|
230
|
-
env?: Record<string, string> | undefined;
|
|
231
|
-
connectionMode?: "strict" | "lenient" | undefined;
|
|
232
|
-
}>, z.ZodObject<{
|
|
97
|
+
command: z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>;
|
|
98
|
+
args: z.ZodDefault<z.ZodArray<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>>>;
|
|
99
|
+
env: z.ZodDefault<z.ZodRecord<z.ZodString, z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>>>;
|
|
100
|
+
timeout: z.ZodDefault<z.ZodCoercedNumber<unknown>>;
|
|
101
|
+
connectionMode: z.ZodDefault<z.ZodEnum<{
|
|
102
|
+
strict: "strict";
|
|
103
|
+
lenient: "lenient";
|
|
104
|
+
}>>;
|
|
105
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
233
106
|
type: z.ZodLiteral<"sse">;
|
|
234
107
|
enabled: z.ZodDefault<z.ZodBoolean>;
|
|
235
|
-
url: z.
|
|
236
|
-
headers: z.ZodDefault<z.ZodRecord<z.ZodString, z.
|
|
237
|
-
timeout: z.ZodDefault<z.
|
|
238
|
-
connectionMode: z.ZodDefault<z.ZodEnum<
|
|
239
|
-
|
|
240
|
-
|
|
241
|
-
|
|
242
|
-
|
|
243
|
-
enabled: boolean;
|
|
244
|
-
connectionMode: "strict" | "lenient";
|
|
245
|
-
headers: Record<string, string>;
|
|
246
|
-
}, {
|
|
247
|
-
type: "sse";
|
|
248
|
-
url: string;
|
|
249
|
-
timeout?: number | undefined;
|
|
250
|
-
enabled?: boolean | undefined;
|
|
251
|
-
connectionMode?: "strict" | "lenient" | undefined;
|
|
252
|
-
headers?: Record<string, string> | undefined;
|
|
253
|
-
}>, z.ZodObject<{
|
|
108
|
+
url: z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>;
|
|
109
|
+
headers: z.ZodDefault<z.ZodRecord<z.ZodString, z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>>>;
|
|
110
|
+
timeout: z.ZodDefault<z.ZodCoercedNumber<unknown>>;
|
|
111
|
+
connectionMode: z.ZodDefault<z.ZodEnum<{
|
|
112
|
+
strict: "strict";
|
|
113
|
+
lenient: "lenient";
|
|
114
|
+
}>>;
|
|
115
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
254
116
|
type: z.ZodLiteral<"http">;
|
|
255
117
|
enabled: z.ZodDefault<z.ZodBoolean>;
|
|
256
|
-
url: z.
|
|
257
|
-
headers: z.ZodDefault<z.ZodRecord<z.ZodString, z.
|
|
258
|
-
timeout: z.ZodDefault<z.
|
|
259
|
-
connectionMode: z.ZodDefault<z.ZodEnum<
|
|
260
|
-
|
|
261
|
-
|
|
262
|
-
|
|
263
|
-
|
|
264
|
-
enabled: boolean;
|
|
265
|
-
connectionMode: "strict" | "lenient";
|
|
266
|
-
headers: Record<string, string>;
|
|
267
|
-
}, {
|
|
268
|
-
type: "http";
|
|
269
|
-
url: string;
|
|
270
|
-
timeout?: number | undefined;
|
|
271
|
-
enabled?: boolean | undefined;
|
|
272
|
-
connectionMode?: "strict" | "lenient" | undefined;
|
|
273
|
-
headers?: Record<string, string> | undefined;
|
|
274
|
-
}>]>, {
|
|
275
|
-
timeout: number;
|
|
276
|
-
type: "stdio";
|
|
277
|
-
args: string[];
|
|
278
|
-
command: string;
|
|
279
|
-
enabled: boolean;
|
|
280
|
-
env: Record<string, string>;
|
|
281
|
-
connectionMode: "strict" | "lenient";
|
|
282
|
-
} | {
|
|
283
|
-
timeout: number;
|
|
284
|
-
type: "sse";
|
|
285
|
-
url: string;
|
|
286
|
-
enabled: boolean;
|
|
287
|
-
connectionMode: "strict" | "lenient";
|
|
288
|
-
headers: Record<string, string>;
|
|
289
|
-
} | {
|
|
290
|
-
timeout: number;
|
|
291
|
-
type: "http";
|
|
292
|
-
url: string;
|
|
293
|
-
enabled: boolean;
|
|
294
|
-
connectionMode: "strict" | "lenient";
|
|
295
|
-
headers: Record<string, string>;
|
|
296
|
-
}, {
|
|
297
|
-
type: "stdio";
|
|
298
|
-
command: string;
|
|
299
|
-
timeout?: number | undefined;
|
|
300
|
-
args?: string[] | undefined;
|
|
301
|
-
enabled?: boolean | undefined;
|
|
302
|
-
env?: Record<string, string> | undefined;
|
|
303
|
-
connectionMode?: "strict" | "lenient" | undefined;
|
|
304
|
-
} | {
|
|
305
|
-
type: "sse";
|
|
306
|
-
url: string;
|
|
307
|
-
timeout?: number | undefined;
|
|
308
|
-
enabled?: boolean | undefined;
|
|
309
|
-
connectionMode?: "strict" | "lenient" | undefined;
|
|
310
|
-
headers?: Record<string, string> | undefined;
|
|
311
|
-
} | {
|
|
312
|
-
type: "http";
|
|
313
|
-
url: string;
|
|
314
|
-
timeout?: number | undefined;
|
|
315
|
-
enabled?: boolean | undefined;
|
|
316
|
-
connectionMode?: "strict" | "lenient" | undefined;
|
|
317
|
-
headers?: Record<string, string> | undefined;
|
|
318
|
-
}>, "ValidatedMcpServerConfig">>, "ValidatedServersConfig">;
|
|
118
|
+
url: z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>;
|
|
119
|
+
headers: z.ZodDefault<z.ZodRecord<z.ZodString, z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>>>;
|
|
120
|
+
timeout: z.ZodDefault<z.ZodCoercedNumber<unknown>>;
|
|
121
|
+
connectionMode: z.ZodDefault<z.ZodEnum<{
|
|
122
|
+
strict: "strict";
|
|
123
|
+
lenient: "lenient";
|
|
124
|
+
}>>;
|
|
125
|
+
}, z.core.$strict>], "type">, "ValidatedMcpServerConfig", "out">>, "ValidatedServersConfig", "out">;
|
|
319
126
|
export type ServersConfig = z.input<typeof ServersConfigSchema>;
|
|
320
127
|
export type ValidatedServersConfig = z.output<typeof ServersConfigSchema>;
|
|
321
128
|
//# sourceMappingURL=schemas.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"schemas.d.ts","sourceRoot":"","sources":["../../src/mcp/schemas.ts"],"names":[],"mappings":"AAGA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAExB,eAAO,MAAM,gBAAgB,mCAAoC,CAAC;AAClE,MAAM,MAAM,aAAa,GAAG,CAAC,OAAO,gBAAgB,CAAC,CAAC,MAAM,CAAC,CAAC;AAE9D,eAAO,MAAM,oBAAoB,gCAAiC,CAAC;AACnE,MAAM,MAAM,iBAAiB,GAAG,CAAC,OAAO,oBAAoB,CAAC,CAAC,MAAM,CAAC,CAAC;AAEtE,eAAO,MAAM,uBAAuB,kEAK1B,CAAC;AACX,MAAM,MAAM,mBAAmB,GAAG,CAAC,OAAO,uBAAuB,CAAC,CAAC,MAAM,CAAC,CAAC;AAE3E;;;GAGG;AACH,MAAM,WAAW,eAAe;IAC5B,IAAI,EAAE,MAAM,CAAC;IACb,IAAI,EAAE,aAAa,CAAC;IACpB,OAAO,EAAE,OAAO,CAAC;IACjB,MAAM,EAAE,mBAAmB,CAAC;IAC5B,KAAK,CAAC,EAAE,MAAM,CAAC;CAClB;AAED,eAAO,MAAM,2BAA2B,EAAE,iBAA6B,CAAC;AAIxE,eAAO,MAAM,uBAAuB
|
|
1
|
+
{"version":3,"file":"schemas.d.ts","sourceRoot":"","sources":["../../src/mcp/schemas.ts"],"names":[],"mappings":"AAGA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAExB,eAAO,MAAM,gBAAgB,mCAAoC,CAAC;AAClE,MAAM,MAAM,aAAa,GAAG,CAAC,OAAO,gBAAgB,CAAC,CAAC,MAAM,CAAC,CAAC;AAE9D,eAAO,MAAM,oBAAoB,gCAAiC,CAAC;AACnE,MAAM,MAAM,iBAAiB,GAAG,CAAC,OAAO,oBAAoB,CAAC,CAAC,MAAM,CAAC,CAAC;AAEtE,eAAO,MAAM,uBAAuB,kEAK1B,CAAC;AACX,MAAM,MAAM,mBAAmB,GAAG,CAAC,OAAO,uBAAuB,CAAC,CAAC,MAAM,CAAC,CAAC;AAE3E;;;GAGG;AACH,MAAM,WAAW,eAAe;IAC5B,IAAI,EAAE,MAAM,CAAC;IACb,IAAI,EAAE,aAAa,CAAC;IACpB,OAAO,EAAE,OAAO,CAAC;IACjB,MAAM,EAAE,mBAAmB,CAAC;IAC5B,KAAK,CAAC,EAAE,MAAM,CAAC;CAClB;AAED,eAAO,MAAM,2BAA2B,EAAE,iBAA6B,CAAC;AAIxE,eAAO,MAAM,uBAAuB;;;;;;;;;;;kBAgCvB,CAAC;AAEd,MAAM,MAAM,iBAAiB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,uBAAuB,CAAC,CAAC;AACxE,MAAM,MAAM,0BAA0B,GAAG,CAAC,CAAC,MAAM,CAAC,OAAO,uBAAuB,CAAC,CAAC;AAGlF,eAAO,MAAM,qBAAqB;;;;;;;;;;kBAYrB,CAAC;AAEd,MAAM,MAAM,eAAe,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,qBAAqB,CAAC,CAAC;AACpE,MAAM,MAAM,wBAAwB,GAAG,CAAC,CAAC,MAAM,CAAC,OAAO,qBAAqB,CAAC,CAAC;AAG9E,eAAO,MAAM,sBAAsB;;;;;;;;;;kBAYtB,CAAC;AAEd,MAAM,MAAM,gBAAgB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,sBAAsB,CAAC,CAAC;AACtE,MAAM,MAAM,yBAAyB,GAAG,CAAC,CAAC,MAAM,CAAC,OAAO,sBAAsB,CAAC,CAAC;AAGhF,eAAO,MAAM,qBAAqB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;gEASM,CAAC;AAEzC,MAAM,MAAM,eAAe,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,qBAAqB,CAAC,CAAC;AACpE,MAAM,MAAM,wBAAwB,GAAG,CAAC,CAAC,MAAM,CAAC,OAAO,qBAAqB,CAAC,CAAC;AAE9E,eAAO,MAAM,mBAAmB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;mGAGM,CAAC;AAEvC,MAAM,MAAM,aAAa,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,mBAAmB,CAAC,CAAC;AAChE,MAAM,MAAM,sBAAsB,GAAG,CAAC,CAAC,MAAM,CAAC,OAAO,mBAAmB,CAAC,CAAC"}
|
package/dist/mcp/schemas.js
CHANGED
|
@@ -30,7 +30,7 @@ const StdioServerConfigSchema = z.object({
|
|
|
30
30
|
}
|
|
31
31
|
}),
|
|
32
32
|
args: z.array(EnvExpandedString()).default([]).describe("Array of arguments for the command (e.g., ['script.js'])"),
|
|
33
|
-
env: z.record(EnvExpandedString()).default({}).describe("Optional environment variables for the server process"),
|
|
33
|
+
env: z.record(z.string(), EnvExpandedString()).default({}).describe("Optional environment variables for the server process"),
|
|
34
34
|
timeout: z.coerce.number().int().positive().default(3e4),
|
|
35
35
|
connectionMode: z.enum(MCP_CONNECTION_MODES).default(DEFAULT_MCP_CONNECTION_MODE)
|
|
36
36
|
}).strict();
|
|
@@ -38,7 +38,7 @@ const SseServerConfigSchema = z.object({
|
|
|
38
38
|
type: z.literal("sse"),
|
|
39
39
|
enabled: z.boolean().default(true).describe("Whether this server is enabled (disabled servers are not connected)"),
|
|
40
40
|
url: RequiredEnvURL(process.env).describe("URL for the SSE server endpoint"),
|
|
41
|
-
headers: z.record(EnvExpandedString()).default({}),
|
|
41
|
+
headers: z.record(z.string(), EnvExpandedString()).default({}),
|
|
42
42
|
timeout: z.coerce.number().int().positive().default(3e4),
|
|
43
43
|
connectionMode: z.enum(MCP_CONNECTION_MODES).default(DEFAULT_MCP_CONNECTION_MODE)
|
|
44
44
|
}).strict();
|
|
@@ -46,7 +46,7 @@ const HttpServerConfigSchema = z.object({
|
|
|
46
46
|
type: z.literal("http"),
|
|
47
47
|
enabled: z.boolean().default(true).describe("Whether this server is enabled (disabled servers are not connected)"),
|
|
48
48
|
url: RequiredEnvURL(process.env).describe("URL for the HTTP server"),
|
|
49
|
-
headers: z.record(EnvExpandedString()).default({}),
|
|
49
|
+
headers: z.record(z.string(), EnvExpandedString()).default({}),
|
|
50
50
|
timeout: z.coerce.number().int().positive().default(3e4),
|
|
51
51
|
connectionMode: z.enum(MCP_CONNECTION_MODES).default(DEFAULT_MCP_CONNECTION_MODE)
|
|
52
52
|
}).strict();
|
|
@@ -56,7 +56,7 @@ const McpServerConfigSchema = z.discriminatedUnion("type", [
|
|
|
56
56
|
HttpServerConfigSchema
|
|
57
57
|
]).superRefine((_data, _ctx) => {
|
|
58
58
|
}).brand();
|
|
59
|
-
const ServersConfigSchema = z.record(McpServerConfigSchema).describe("A dictionary of server configurations, keyed by server name").brand();
|
|
59
|
+
const ServersConfigSchema = z.record(z.string(), McpServerConfigSchema).describe("A dictionary of server configurations, keyed by server name").brand();
|
|
60
60
|
export {
|
|
61
61
|
DEFAULT_MCP_CONNECTION_MODE,
|
|
62
62
|
HttpServerConfigSchema,
|
package/dist/memory/schemas.d.ts
CHANGED
|
@@ -1,127 +1,61 @@
|
|
|
1
1
|
import { z } from 'zod';
|
|
2
|
-
export declare const MemorySourceSchema: z.ZodEnum<
|
|
2
|
+
export declare const MemorySourceSchema: z.ZodEnum<{
|
|
3
|
+
user: "user";
|
|
4
|
+
system: "system";
|
|
5
|
+
}>;
|
|
3
6
|
export declare const MemoryMetadataSchema: z.ZodObject<{
|
|
4
|
-
source: z.ZodOptional<z.ZodEnum<
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
pinned: z.ZodOptional<z.ZodBoolean>;
|
|
9
|
-
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
10
|
-
source: z.ZodOptional<z.ZodEnum<["user", "system"]>>;
|
|
7
|
+
source: z.ZodOptional<z.ZodEnum<{
|
|
8
|
+
user: "user";
|
|
9
|
+
system: "system";
|
|
10
|
+
}>>;
|
|
11
11
|
pinned: z.ZodOptional<z.ZodBoolean>;
|
|
12
|
-
}, z.
|
|
12
|
+
}, z.core.$loose>;
|
|
13
13
|
export declare const MemorySchema: z.ZodObject<{
|
|
14
14
|
id: z.ZodString;
|
|
15
15
|
content: z.ZodString;
|
|
16
16
|
createdAt: z.ZodNumber;
|
|
17
17
|
updatedAt: z.ZodNumber;
|
|
18
|
-
tags: z.ZodOptional<z.ZodArray<z.ZodString
|
|
18
|
+
tags: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
19
19
|
metadata: z.ZodOptional<z.ZodObject<{
|
|
20
|
-
source: z.ZodOptional<z.ZodEnum<
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
pinned: z.ZodOptional<z.ZodBoolean>;
|
|
25
|
-
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
26
|
-
source: z.ZodOptional<z.ZodEnum<["user", "system"]>>;
|
|
20
|
+
source: z.ZodOptional<z.ZodEnum<{
|
|
21
|
+
user: "user";
|
|
22
|
+
system: "system";
|
|
23
|
+
}>>;
|
|
27
24
|
pinned: z.ZodOptional<z.ZodBoolean>;
|
|
28
|
-
}, z.
|
|
29
|
-
},
|
|
30
|
-
content: string;
|
|
31
|
-
createdAt: number;
|
|
32
|
-
id: string;
|
|
33
|
-
updatedAt: number;
|
|
34
|
-
metadata?: z.objectOutputType<{
|
|
35
|
-
source: z.ZodOptional<z.ZodEnum<["user", "system"]>>;
|
|
36
|
-
pinned: z.ZodOptional<z.ZodBoolean>;
|
|
37
|
-
}, z.ZodTypeAny, "passthrough"> | undefined;
|
|
38
|
-
tags?: string[] | undefined;
|
|
39
|
-
}, {
|
|
40
|
-
content: string;
|
|
41
|
-
createdAt: number;
|
|
42
|
-
id: string;
|
|
43
|
-
updatedAt: number;
|
|
44
|
-
metadata?: z.objectInputType<{
|
|
45
|
-
source: z.ZodOptional<z.ZodEnum<["user", "system"]>>;
|
|
46
|
-
pinned: z.ZodOptional<z.ZodBoolean>;
|
|
47
|
-
}, z.ZodTypeAny, "passthrough"> | undefined;
|
|
48
|
-
tags?: string[] | undefined;
|
|
49
|
-
}>;
|
|
25
|
+
}, z.core.$loose>>;
|
|
26
|
+
}, z.core.$strict>;
|
|
50
27
|
export declare const CreateMemoryInputSchema: z.ZodObject<{
|
|
51
28
|
content: z.ZodString;
|
|
52
|
-
tags: z.ZodOptional<z.ZodArray<z.ZodString
|
|
29
|
+
tags: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
53
30
|
metadata: z.ZodOptional<z.ZodObject<{
|
|
54
|
-
source: z.ZodOptional<z.ZodEnum<
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
pinned: z.ZodOptional<z.ZodBoolean>;
|
|
59
|
-
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
60
|
-
source: z.ZodOptional<z.ZodEnum<["user", "system"]>>;
|
|
31
|
+
source: z.ZodOptional<z.ZodEnum<{
|
|
32
|
+
user: "user";
|
|
33
|
+
system: "system";
|
|
34
|
+
}>>;
|
|
61
35
|
pinned: z.ZodOptional<z.ZodBoolean>;
|
|
62
|
-
}, z.
|
|
63
|
-
},
|
|
64
|
-
content: string;
|
|
65
|
-
metadata?: z.objectOutputType<{
|
|
66
|
-
source: z.ZodOptional<z.ZodEnum<["user", "system"]>>;
|
|
67
|
-
pinned: z.ZodOptional<z.ZodBoolean>;
|
|
68
|
-
}, z.ZodTypeAny, "passthrough"> | undefined;
|
|
69
|
-
tags?: string[] | undefined;
|
|
70
|
-
}, {
|
|
71
|
-
content: string;
|
|
72
|
-
metadata?: z.objectInputType<{
|
|
73
|
-
source: z.ZodOptional<z.ZodEnum<["user", "system"]>>;
|
|
74
|
-
pinned: z.ZodOptional<z.ZodBoolean>;
|
|
75
|
-
}, z.ZodTypeAny, "passthrough"> | undefined;
|
|
76
|
-
tags?: string[] | undefined;
|
|
77
|
-
}>;
|
|
36
|
+
}, z.core.$loose>>;
|
|
37
|
+
}, z.core.$strict>;
|
|
78
38
|
export declare const UpdateMemoryInputSchema: z.ZodObject<{
|
|
79
39
|
content: z.ZodOptional<z.ZodString>;
|
|
80
|
-
tags: z.ZodOptional<z.ZodArray<z.ZodString
|
|
40
|
+
tags: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
81
41
|
metadata: z.ZodOptional<z.ZodObject<{
|
|
82
|
-
source: z.ZodOptional<z.ZodEnum<
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
pinned: z.ZodOptional<z.ZodBoolean>;
|
|
87
|
-
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
88
|
-
source: z.ZodOptional<z.ZodEnum<["user", "system"]>>;
|
|
42
|
+
source: z.ZodOptional<z.ZodEnum<{
|
|
43
|
+
user: "user";
|
|
44
|
+
system: "system";
|
|
45
|
+
}>>;
|
|
89
46
|
pinned: z.ZodOptional<z.ZodBoolean>;
|
|
90
|
-
}, z.
|
|
91
|
-
},
|
|
92
|
-
metadata?: z.objectOutputType<{
|
|
93
|
-
source: z.ZodOptional<z.ZodEnum<["user", "system"]>>;
|
|
94
|
-
pinned: z.ZodOptional<z.ZodBoolean>;
|
|
95
|
-
}, z.ZodTypeAny, "passthrough"> | undefined;
|
|
96
|
-
content?: string | undefined;
|
|
97
|
-
tags?: string[] | undefined;
|
|
98
|
-
}, {
|
|
99
|
-
metadata?: z.objectInputType<{
|
|
100
|
-
source: z.ZodOptional<z.ZodEnum<["user", "system"]>>;
|
|
101
|
-
pinned: z.ZodOptional<z.ZodBoolean>;
|
|
102
|
-
}, z.ZodTypeAny, "passthrough"> | undefined;
|
|
103
|
-
content?: string | undefined;
|
|
104
|
-
tags?: string[] | undefined;
|
|
105
|
-
}>;
|
|
47
|
+
}, z.core.$loose>>;
|
|
48
|
+
}, z.core.$strict>;
|
|
106
49
|
export declare const ListMemoriesOptionsSchema: z.ZodObject<{
|
|
107
|
-
tags: z.ZodOptional<z.ZodArray<z.ZodString
|
|
108
|
-
source: z.ZodOptional<z.ZodEnum<
|
|
50
|
+
tags: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
51
|
+
source: z.ZodOptional<z.ZodEnum<{
|
|
52
|
+
user: "user";
|
|
53
|
+
system: "system";
|
|
54
|
+
}>>;
|
|
109
55
|
pinned: z.ZodOptional<z.ZodBoolean>;
|
|
110
56
|
limit: z.ZodOptional<z.ZodNumber>;
|
|
111
57
|
offset: z.ZodOptional<z.ZodNumber>;
|
|
112
|
-
},
|
|
113
|
-
source?: "user" | "system" | undefined;
|
|
114
|
-
pinned?: boolean | undefined;
|
|
115
|
-
tags?: string[] | undefined;
|
|
116
|
-
limit?: number | undefined;
|
|
117
|
-
offset?: number | undefined;
|
|
118
|
-
}, {
|
|
119
|
-
source?: "user" | "system" | undefined;
|
|
120
|
-
pinned?: boolean | undefined;
|
|
121
|
-
tags?: string[] | undefined;
|
|
122
|
-
limit?: number | undefined;
|
|
123
|
-
offset?: number | undefined;
|
|
124
|
-
}>;
|
|
58
|
+
}, z.core.$strict>;
|
|
125
59
|
/**
|
|
126
60
|
* Configuration schema for memory inclusion in system prompts.
|
|
127
61
|
* This is a top-level agent config field that controls how memories
|
|
@@ -134,21 +68,7 @@ export declare const MemoriesConfigSchema: z.ZodObject<{
|
|
|
134
68
|
includeTags: z.ZodDefault<z.ZodBoolean>;
|
|
135
69
|
limit: z.ZodOptional<z.ZodNumber>;
|
|
136
70
|
pinnedOnly: z.ZodDefault<z.ZodBoolean>;
|
|
137
|
-
},
|
|
138
|
-
enabled: boolean;
|
|
139
|
-
priority: number;
|
|
140
|
-
includeTimestamps: boolean;
|
|
141
|
-
includeTags: boolean;
|
|
142
|
-
pinnedOnly: boolean;
|
|
143
|
-
limit?: number | undefined;
|
|
144
|
-
}, {
|
|
145
|
-
enabled?: boolean | undefined;
|
|
146
|
-
priority?: number | undefined;
|
|
147
|
-
limit?: number | undefined;
|
|
148
|
-
includeTimestamps?: boolean | undefined;
|
|
149
|
-
includeTags?: boolean | undefined;
|
|
150
|
-
pinnedOnly?: boolean | undefined;
|
|
151
|
-
}>;
|
|
71
|
+
}, z.core.$strict>;
|
|
152
72
|
export type ValidatedMemory = z.output<typeof MemorySchema>;
|
|
153
73
|
export type ValidatedCreateMemoryInput = z.output<typeof CreateMemoryInputSchema>;
|
|
154
74
|
export type ValidatedUpdateMemoryInput = z.output<typeof UpdateMemoryInputSchema>;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"schemas.d.ts","sourceRoot":"","sources":["../../src/memory/schemas.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAUxB,eAAO,MAAM,kBAAkB
|
|
1
|
+
{"version":3,"file":"schemas.d.ts","sourceRoot":"","sources":["../../src/memory/schemas.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAUxB,eAAO,MAAM,kBAAkB;;;EAA8D,CAAC;AAE9F,eAAO,MAAM,oBAAoB;;;;;;iBAMD,CAAC;AAEjC,eAAO,MAAM,YAAY;;;;;;;;;;;;;kBAqBwB,CAAC;AAElD,eAAO,MAAM,uBAAuB;;;;;;;;;;kBAkBY,CAAC;AAEjD,eAAO,MAAM,uBAAuB;;;;;;;;;;kBAqBkB,CAAC;AAEvD,eAAO,MAAM,yBAAyB;;;;;;;;;kBASO,CAAC;AAE9C;;;;GAIG;AACH,eAAO,MAAM,oBAAoB;;;;;;;kBA6BgC,CAAC;AAElE,MAAM,MAAM,eAAe,GAAG,CAAC,CAAC,MAAM,CAAC,OAAO,YAAY,CAAC,CAAC;AAC5D,MAAM,MAAM,0BAA0B,GAAG,CAAC,CAAC,MAAM,CAAC,OAAO,uBAAuB,CAAC,CAAC;AAClF,MAAM,MAAM,0BAA0B,GAAG,CAAC,CAAC,MAAM,CAAC,OAAO,uBAAuB,CAAC,CAAC;AAClF,MAAM,MAAM,4BAA4B,GAAG,CAAC,CAAC,MAAM,CAAC,OAAO,yBAAyB,CAAC,CAAC;AACtF,MAAM,MAAM,cAAc,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,oBAAoB,CAAC,CAAC;AAClE,MAAM,MAAM,uBAAuB,GAAG,CAAC,CAAC,MAAM,CAAC,OAAO,oBAAoB,CAAC,CAAC"}
|